Android Question Publishing APP on Google Play - warning - I am working with SMS

petr4ppc

Well-Known Member
Licensed User
Longtime User
Dear friends,

which code I must delete from my app if Google play wrote me that I am ussing PERMISSION_RECEIVE_SMS?

I have deleted
- SMS permission from Manifest
- I have deleted all code as
B4X:
rper.CheckAndRequest(rper.PERMISSION_RECEIVE_SMS)
wait for Activity_PermissionResult(permission As String, result As Boolean)

but I get still warning in developer console that my APP is working with SMS

I have in code not commented for example this:
B4X:
If startingIntent.Action = "android.provider.Telephony.SMS_RECEIVED"
but this is in service which is not started...can be this the reason?

Thank you very much
p4ppc
 

JohnC

Expert
Licensed User
Longtime User
Trying adding a RemovePermission to your apps manifest (set the permission name to the exact permission name google is complaining about)
B4X:
RemovePermission("rper.PERMISSION_RECEIVE_SMS")
 
Last edited:
Upvote 0

petr4ppc

Well-Known Member
Licensed User
Longtime User
Dear JohnC, thank you for advice,

I will write the result for all of us - the app is waiting for checking from GooglePlay...Its third day now..

Thank you very much
Best regards
p4ppc
 
Upvote 0
Top