Android apps (with or without Flutter)
Android app's don't have any methods to call during startup. There are however two mandatory elements you need to add into your app's AndroidManifest.xml inside the application
:
Add <meta-data android:name="APLConfigurationSubclass" android:value="className"/>
into AndroidManifest.xml. You can specify either a fully qualified class name, or a partial package followed by a class name.
Add a provider
with your unique android:authorities
value. This value is the URL scheme that you enter in ≡ ‣ <your app name here> ‣ URL scheme
. The android:name
must be "nz.co.electricbolt.appfiguratelibrary.CommandContentProvider"
. The android:exported
value must be true
.
AndroidManifest.xml example
Now jump to Mobile Flutter apps.
Last updated