HI, I have developed several apps with Corona SDK and uploads to Google Play.
Recently, an alert has appeared on the development console indicating that
" A change in the Google Play policy that governs the use of SMS and CALL_LOG permits will affect my application." Applications that do not comply will be removed from Google Play on January 9, 2019"
It is not clear to me why my application is affected by this policy.
My application has a “Share” button that makes use of the “Social Popup” plugin (CoronaProvider.native.popup.social) to share the link of the app on Google Play.
I use the “social” parameter --> native.showPopup(“social”, options)
Could this be the reason for the warning? What is the solution? I have to remove the “Social Popup” plugin from my app?
After doing some research on this, it seems to be a permission that’s granted as part of a permission group that’s included in Android SDK’s 15 and earlier. The minSdkVersion for Corona is 15. I believe that you can set the minimum higher in your build.settings. You can set the value accordingly:
Also, it’s possible that if you’re using any ad plugins, they could be injecting these permissions. I looked through the source for the Social plugin and don’t see anywhere that we are adding either of those permissions. That doesn’t mean that some deeper buried library isn’t responsible for it.
As mentioned, the message of the console appeared and disappeared twice, without having made any changes in the apk.
Currently the message is no longer there, so I have no way of checking if I upload a new version with setting the minimum SDK to a higher value if it is solved.
Now I just made the same query to the Google Play support team, and they reviewed the apks and they confirm that neither of my published APKs contain SMS or CALL_LOG permissions, therefore, it may be interpreted that the message they sent was by mistake.
After doing some research on this, it seems to be a permission that’s granted as part of a permission group that’s included in Android SDK’s 15 and earlier. The minSdkVersion for Corona is 15. I believe that you can set the minimum higher in your build.settings. You can set the value accordingly:
Also, it’s possible that if you’re using any ad plugins, they could be injecting these permissions. I looked through the source for the Social plugin and don’t see anywhere that we are adding either of those permissions. That doesn’t mean that some deeper buried library isn’t responsible for it.
As mentioned, the message of the console appeared and disappeared twice, without having made any changes in the apk.
Currently the message is no longer there, so I have no way of checking if I upload a new version with setting the minimum SDK to a higher value if it is solved.
Now I just made the same query to the Google Play support team, and they reviewed the apks and they confirm that neither of my published APKs contain SMS or CALL_LOG permissions, therefore, it may be interpreted that the message they sent was by mistake.