Public entry point to manually initialize ML Kit.
| static void |
Initializes ML Kit with the given context.
It is only necessary to call this method if you disable the content provider
declared in the manifest(e.g. when you want to use ML Kit feature in Application).
Under normal circumstances the content provider will automatically initialize ML Kit at
application startup.
How to disable ML Kit initialization content provider:
<provider
android:name="com.google.mlkit.common.internal.MlKitInitProvider"
android:authorities="${applicationId}.mlkitinitprovider"
tools:node="remove" />
| context | a Context
used to initialize ML Kit. This does not have to be the application context
itself. |
|---|