Uses current flavor app id
Currently the plugin pulls the `PACKAGE_NAME`, early on in the build process. After working with Android product flavors where I am building different APKs with different applicationIds (com.test.app.alpha, com.test.app.beta, com.test.app) the permission still sticks with the core package name. These permission requests then conflict with each other when having multiple APKs on the same device, and can even stop the app from being downloaded from the Play Store if the user has an another app on the device with the same permissions. By using `{applicationId}` it will grab the current App's application ID later on so the current ID is used instead.
parent
9f686ddd
Please register or sign in to comment