I can not remove READ_PHONE_STATE

0

This permission is not in my AndroidManifest even so when I upload to the play store appears this message of the image, and my app does not use this kind of data, pfv help me!

    
asked by anonymous 25.03.2018 / 19:12

1 answer

1

After a search I was able to find a solution that is quite simple. I'm going to post here someone's house for the same problem.

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="seu pacote">

<uses-permission android:name="android.permission.READ_PHONE_STATE" tools:node="remove" />

add this to the manifest.

    
27.03.2018 / 23:36