Should I be worried if the AndroidManifest-main.xml doesn’t contain what regular AndroidManifest.xml contains?
For example, permissions are in AndroidManifest.xml but not in the main.
Should I be worried if the AndroidManifest-main.xml doesn’t contain what regular AndroidManifest.xml contains?
For example, permissions are in AndroidManifest.xml but not in the main.
They should be merged together when making the final manifest. You can inspect the final manifest in the built apk using Android Studio. Analyze your build with the APK Analyzer | Android Studio | Android Developers
Yeap. Analyzed the apk, it is merged. Thank you.