react-native-make
react-native-make copied to clipboard
Android - running set-icon removes the application tag
react-native set-icon --platform android --path ./assets/app-icon-android-transparent.png
thes start application tag from AndroidManifest disappears
anyone?
Hello, I will be looking into the issue, could you please give me an example the generated manifest versus the expected manifest?
I got the same issue. It removes start 
Using "@bam.tech/react-native-make": "^3.0.0"
Any suggestions, please?
@rares-lupascu the problem with me was that my AndroidManifest.xml file wasn't formatted in a way that react-native set-icon can handle. Every property of the
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:launchMode="singleTop"
android:allowBackup="false"
android:theme="@style/AppTheme">
Otherwise the tag gets removed for some reason.