added sql library to aboutlibs

This commit is contained in:
danijoo
2016-01-08 20:23:20 +01:00
parent a23a198f2f
commit c3387a0364
3 changed files with 16 additions and 2 deletions

View File

@@ -30,7 +30,6 @@ public class NotificationListLoaderCallbacks implements LoaderManager.LoaderCall
@Override
public Loader<Cursor> onCreateLoader(int id, Bundle args) {
// TODO apply filters
Timber.d("Loader created.");
String titleFilter = args.containsKey(Logged_notificationTable.FIELD_TITLE) ? args.getString(Logged_notificationTable.FIELD_TITLE) : "";
String messageFilter = args.containsKey(Logged_notificationTable.FIELD_MESSAGE) ? args.getString(Logged_notificationTable.FIELD_MESSAGE) : "";

View File

@@ -36,7 +36,6 @@ public class PreferenceActivity extends AppCompatActivity implements PreferenceF
@Override
public void showAboutScreen() {
// TODO add other libraries
LibsSupportFragment aboutFrag = new LibsBuilder()
.withAboutAppName(getString(R.string.app_name))
.withAboutIconShown(true)