So, my previous apps had separate codebases for the iOS, Google Play, and Amazon versions.
My new has a shared codebase, and I am confused as to how to limit the build.settings permissions to only one or the other.
Here is the code I am concerned about:
usesPermissions = { "android.permission.INTERNET", "android.permission.VIBRATE", "android.permission.WRITE\_EXTERNAL\_STORAGE", "com.android.vending.CHECK\_LICENSE", "com.android.vending.BILLING" },
The two com.android.vending lines are only for Google Play and should not be there for Amazon. Without actually editing the file when I go to build, how do I associate those only with Google Play?
Or is that not possible, and I will need to comment those out when doing the Amazon build?