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)

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="define_SimpleSQLProvider"></string>
<string name="library_SimpleSQLProvider_author">Kurt Mbanje</string>
<string name="library_SimpleSQLProvider_authorWebsite">http://http://peirr.com/</string>
<string name="library_SimpleSQLProvider_libraryName">SimpleSQLProvider</string>
<string name="library_SimpleSQLProvider_libraryDescription">The Fastest Way to create a sql based ContentProvider in Android using annotations (No reflection)</string>
<string name="library_SimpleSQLProvider_libraryVersion">1.0.7</string>
<string name="library_SimpleSQLProvider_libraryWebsite">https://github.com/ckurtm/simple-sql-provider/</string>
<!-- Possible values right now: apache_2_0, mit, bsd_2, bsd_3 -->
<string name="library_SimpleSQLProvider_licenseId">apache_2_0</string>
<!-- you still can define the license within your library definition, but it is recommend to use the id -->
<!-- possible fields for a custom license: *_licenseVersion, *_licenseLink, *_licenseContent -->
<string name="library_SimpleSQLProvider_isOpenSource">true</string>
<string name="library_SimpleSQLProvider_repositoryLink">@string/library_SimpleSQLProvider_libraryWebsite</string>
</resources>