Android - cannot find where extra permissions are coming from.

Hi

the final Apk of my app contains 5 permissions;

  • android.permission.ACCESS_NETWORK_STATE
  • android.permission.INTERNET
  • android.permission.READ_EXTERNAL_STORAGE
  • android.permission.WRITE_EXTERNAL_STORAGE
  • com.android.vending.BILLING

In my build setting i have only 2. I know Vungle will add:

  • android.permission.WRITE_EXTERNAL_STORAGE
  • android.permission.ACCESS_NETWORK_STATE
  • android.permission.INTERNET

But the final apk contains:

  • android.permission.READ_EXTERNAL_STORAGE

Does someone know where it may come from?

 

Here is my build.settings

 

Thks

- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight settings = { plugins = { -- key is the name passed to Lua's 'require()' ["CoronaProvider.ads.vungle"] = { -- required publisherId = "com.vungle", }, ["CoronaProvider.analytics.flurry"] = { -- required publisherId = "com.coronalabs", }, ["CoronaProvider.gameNetwork.google"] = { -- required publisherId = "com.coronalabs", supportedPlatforms = { android = true } }, ["plugin.google.play.services"] = { publisherId = "com.coronalabs" }, -- key is the name passed to Lua's 'require()' ["plugin.google.iap.v3"] = { -- required publisherId = "com.coronalabs", }, -- key is the name passed to Lua's 'require()' ["CoronaProvider.native.popup.social"] = { -- required publisherId = "com.coronalabs", }, --[[["facebook"] = { publisherId = "com.coronalabs", --supportedPlatforms = { iphone=true, ["iphone-sim"]=true }, },]] }, orientation = { default = "portrait", supported = { "portrait","portraitUpsideDown"} --supported = { "portrait","portraitUpsideDown","portrait","portraitUpsideDown" } }, android = { versionCode = "6", usesPermissions = { "android.permission.INTERNET", "com.android.vending.BILLING" }, googlePlayGamesAppId = "", -- Your Google Play Games App Id }, }

WRITE implies READ, added automatically/implicitly (and as per google docs)

Oh thanks! I did not see that.

[edit]

And now that i think about it it makes so much sense that i am ashamed of myself :slight_smile:

I focus too much of trying to find what to answers to reviews on google store. i lost the point.

Thanks again.

WRITE implies READ, added automatically/implicitly (and as per google docs)

Oh thanks! I did not see that.

[edit]

And now that i think about it it makes so much sense that i am ashamed of myself :slight_smile:

I focus too much of trying to find what to answers to reviews on google store. i lost the point.

Thanks again.