AndroidManifest.xml options
Last updated
Last updated
If you have an Android app (including Mobile Flutter or React Native), then the following AndroidManifest.xml
options are available.
To enable debug logging in the Appfigurate library early on, add the APLLogging
meta-data to the AndroidManifest.xml
file. The APLLogging
key is optional.
AndroidManifest.xml
example
The default value of APLLogging
is false. You should not need to enable this to true unless you are having trouble integrating the library. It is best practice not to ship an app with this key set to true.
You can also call function to achieve the same result in code.
The <application android:label="..."/>
will be used to populate the name of the app in Appfigurate.
The <manifest android:versionName="..."/>
will be used to populate the version number of the app in Appfigurate. The versionName
attribute is automatically populated by the Android Studio/IntelliJ build system.
The <application android:icon="..."/>
will be used to populate the icon of the app in Appfigurate.