0

Android app getting rejected even after I've removed the Storage permission MANAGE_EXTERNAL_STORAGE.

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

<uses-permission
    android:name="android.permission.WRITE_EXTERNAL_STORAGE"
    tools:ignore="ScopedStorage" />
<uses-permission android:name="android.permission.INTERNET" />

<application
    android:allowBackup="true"
    android:hardwareAccelerated="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:largeHeap="true"
    android:preserveLegacyExternalStorage="true"
    android:requestLegacyExternalStorage="true"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    android:usesCleartextTraffic="true"
    tools:targetApi="r">
.
.
.
</application>

Please suggest me, what I'm doing wrong.

Rupesh Rathore
  • 319
  • 1
  • 9
  • Go through https://stackoverflow.com/questions/68139593/app-update-constantly-rejected-by-playstore-for-manage-external-storage-permissi – Sandesh Khutal Jul 27 '22 at 06:32
  • @SandeshKhutalSaheb Yes, I've checked this post and removed code related to MANAGE_EXTERNAL_STORAGE. Even that Play Store give me "Issue found: Access to device storage not required" and "Please update your app so that the feature uses a privacy friendly alternative and remove All Files Access (MANAGE_EXTERNAL_STORAGE) permission.". – Rupesh Rathore Jul 27 '22 at 06:48

0 Answers0