Reputation: 1
Android Mobile App removed from Google Playstore because of Call Log or SMS permissions
I have tried to remove the permission from Manifest but its break the app as the app requires these permission.
What should I do to make sure my application still able to run. Alternative to the Call Log or SMS permissions on Android studio
Upvotes: 0
Views: 390
Reputation: 549
The permission restrictions were added for added privacy security to the user.
find a quick read on the affected permissions here
However, there are alternative implementations available for the use cases which needs these dangerous permissions.
Find the use case in your project where these permissions are needed and replace with the alternative implementations.
Upvotes: 1