Skip to main content

Android Manifest Changes

Android Manifest Changes

You might face some manifestMergerIssue after gradle sync/building of your application. This is caused because some of the attributes in the Application tag of your application manifest file may be available in Nuclei SDK application's tag also. To resolve this issue, your application manifest should replace the attributes which are also defined by Nuclei SDK (Ex: theme, icon, supportsRtl etc) under the application tag as shown in the below example.

<application
...
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:theme="@style/SampleSdkTheme"
tools:replace="android:theme,allowBackup,icon,label">

After completing all the steps, you can build your application to make sure everything works as expected.