InitializationProvider

A provider used for initializing the Nutrient framework. The license is passed in manifest through the metadata with corresponding key nutrient_license_key.

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
open fun delete(@NonNull uri: Uri, @Nullable selection: String, @Nullable selectionArgs: Array<String>): Int
This provider does not support delete operations.
Link copied to clipboard
open fun getType(@NonNull uri: Uri): String
This provider does not support MIME type retrieval.
Link copied to clipboard
open fun insert(@NonNull uri: Uri, @Nullable values: ContentValues): Uri
This provider does not support insert operations.
Link copied to clipboard
open fun onCreate(): Boolean
Called when the provider is being started.
Link copied to clipboard
open fun query(@NonNull uri: Uri, @Nullable projection: Array<String>, @Nullable selection: String, @Nullable selectionArgs: Array<String>, @Nullable sortOrder: String): Cursor
This provider does not support query operations.
Link copied to clipboard
open fun update(@NonNull uri: Uri, @Nullable values: ContentValues, @Nullable selection: String, @Nullable selectionArgs: Array<String>): Int
This provider does not support update operations.