gh-pages / com.nextfaze.devfun.core / DevFunInitializerProvider

DevFunInitializerProvider

class DevFunInitializerProvider : ContentProvider (source)

Used to automatically initialize DevFun without user input.

If you want to manually initialize DevFun, remove the node using standard Android manifest merger syntax:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          xmlns:tools="http://schemas.android.com/tools">

    <application>
        <!-- This will stop the provider node from being included -->
        <provider android:name="com.nextfaze.devfun.core.DevFunInitializerProvider"
                  android:authorities="*"
                  tools:ignore="ExportedContentProvider"
                  tools:node="remove"/>
    </application>
</manifest>

See Also

DevFun.initialize

Constructors

Name Summary
<init> DevFunInitializerProvider()
Used to automatically initialize DevFun without user input.

Functions

Name Summary
delete fun delete(uri: Uri, selection: String?, selectionArgs: Array<out String>?): Int
NOP
getType fun getType(uri: Uri): String
NOP
insert fun insert(uri: Uri, values: ContentValues): Uri
NOP
onCreate fun onCreate(): Boolean
query fun query(uri: Uri, projection: Array<out String>?, selection: String?, selectionArgs: Array<out String>?, sortOrder: String?): Cursor?
NOP
update fun update(uri: Uri, values: ContentValues, selection: String?, selectionArgs: Array<out String>?): Int
NOP