Reputation: 1051
Our app update got rejected by Google because we had REQUEST_INSTALL_PACKAGES in the Manifest. We removed it, uploaded a new version and it still got rejected. We then added
<uses-permission
android:name="android.permission.REQUEST_INSTALL_PACKAGES"
tools:node="remove"/>
as suggested here on SO, but to no avail. We continue to get rejected. There is no REQUEST_INSTALL_PACKAGES in our Manfiest and not in the Merged Manifest either. What are we missing?
Upvotes: 3
Views: 2363
Reputation: 51
SOLVED:
Remove the permission from your manifest and in-app functionality. Double check that your app is compliant with all other Developer Program Policies. Sign in to Play Console and submit the update to your app. Alternatively, you may also choose to deactivate these versions to avoid additional enforcements that could occur. You may follow the given steps to deactivate the non-compliant app bundles or APKS:
Upvotes: 1
Reputation: 562
You might have a version uploaded in alpha/beta/internal channel. Try to update that too.
Upvotes: 2