petr4ppc Well-Known Member Licensed User Longtime User Feb 15, 2020 #1 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
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 Feb 15, 2020 #2 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: Feb 25, 2020 Upvote 0
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")
petr4ppc Well-Known Member Licensed User Longtime User Feb 17, 2020 #3 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
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
petr4ppc Well-Known Member Licensed User Longtime User Feb 25, 2020 #4 Dear JohnC, you had true, your advice helped me, everything is OK with your solution, Thank you, Best regards p4ppc Upvote 0
Dear JohnC, you had true, your advice helped me, everything is OK with your solution, Thank you, Best regards p4ppc