Multiple application android:name tags in Unity android manifest

506 Views Asked by At

I want to use Branch.io and Soomla plugin in an Unity project and both plugins need to modify android:name in Unity android manifest:

... 
<application android:icon="@drawable/app_icon" 
     android:label="@string/app_name" android:debuggable="true" 
     android:name="com.soomla.SoomlaApp" 
     android:name="io.branch.unity.BranchUnityApp">
...

I know we can't put multiple android:name in application tag, Is there any way to handle it?

1

There are 1 best solutions below

1
Amruta Deshmukh On BEST ANSWER

In order to use Branch plugin with other plugins which also modifies the application class, you can follow the documentation mentioned here.