Google Play Permissions Issue [closed]

-1

I sent a new apk to the Google Play Store to upgrade to another app, however, on the console, in the required permissions section I see that the android.permission.RECEIVE_SMS permission is required in this release and that old users do not may update but re-install. However, this permission is not in the manifest.

Does anyone know what might be releasing this permission?

In manifest I have the following permissions:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="*******.fileprovider.READ" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.VIBRATE" />
    
asked by anonymous 27.10.2018 / 19:43

1 answer

1

The problem is a library that I'm using in my application and has this permission. To see this, in Android Studio, I selected the manifest file and then clicked on the Merged Manifest tab, so I could see what I was adding this permission. In the manifest of my application I added the following line:

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

    
27.10.2018 / 21:50