It’s a pretty basic question. I was reading this tutorial about implementing IAP. There is a piece that says:
Google will require you to upload your .apk with the proper permissions installed before you can add products to their store portal (although you can upload an Alpha build in which you do not need to make the app live).
These are the required permissions for Android:
android = { usesPermissions = { “android.permission.INTERNET”, “com.android.vending.BILLING”, “com.android.vending.CHECK_LICENSE”, }, },
But thedocs for Google IAP v3 don’t mention anything about the “check_license” permission.
So my question is whether or not the check_license permission is necessary?