safauludogan
safauludogan

Reputation: 61

Flutter REQUEST_INSTALL_PACKAGES permission problem

When I want to update an application, I get this warning from google play. I have attached my AndroidManifest.xml file and my pubspec.yaml file. Play console mail

I researched this error and found out that the open_file library uses this permission automatically. Even though I deleted this library, I still get this warning in the play console when I send an update. enter image description here

My AndroidManifest file

Upvotes: 3

Views: 3281

Answers (2)

safauludogan
safauludogan

Reputation: 61

I solved this problem by updating the channels in closed test.

Upvotes: 1

Ali Murat
Ali Murat

Reputation: 161

If you have a pubsec.yaml file containing the open_file package, you may receive such a reject message from the Google Play Store.

You can use the open_file_safe package instead.

https://pub.dev/packages/open_file_safe

Upvotes: 4

Related Questions