Google Play 管理中心自动添加一个权限
Google Play Console automatic add a permission
我已经提交了我的应用程序的新版本,但是这次 google 说:
New permissions added
Users who use the APK with version 18 code may need to accept the android.permission.READ_PHONE_STATE permission, which may make it impossible to upgrade to this version of the app.
但我从未在我的 APK 中使用过此权限
我只用这个
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
这是 Google API https://developers.google.com/android/guides/releases
中的错误
我已经提交了我的应用程序的新版本,但是这次 google 说:
New permissions added
Users who use the APK with version 18 code may need to accept the android.permission.READ_PHONE_STATE permission, which may make it impossible to upgrade to this version of the app.
但我从未在我的 APK 中使用过此权限
我只用这个
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
这是 Google API https://developers.google.com/android/guides/releases
中的错误