Requesting Permissions

One of our apps is up for a feature with Google Play, but we are hung up on a permissions issue.  Our app uses Appodeal and Google Analytics, which together add the following permissions to our app:

• ACCESS_FINE_LOCATION
• ACCESS_COARSE_LOCATION
• READ_EXTERNAL_STORAGE
• WRITE_EXTERNAL_STORAGE

However the app never request the user to allow these. Apparently Google is expecting the app to request access to these permissions from the user, but it never does so. How do we do that? Why would these plug-ins add these permissions, but never request to use them?

FYI, this is our android section of build.settings:

android =

    {

largeHeap = true,

versionCode = “31”,

versionName = “3.1”,

        usesPermissions =

        {

            “com.android.vending.BILLING”,

        },

    },

Please look at the Camera sample app. It has examples of how to request permissions. Starting with Android 6 (I think) you have to request permissions in the app. That sample shows how to.

Rob

Please look at the Camera sample app. It has examples of how to request permissions. Starting with Android 6 (I think) you have to request permissions in the app. That sample shows how to.

Rob