Skyost / RateMyApp

This plugin allows to kindly ask users to rate your app if custom conditions are met (eg. install time, number of launches, etc...).
https://pub.dev/packages/rate_my_app
MIT License
277 stars 114 forks source link

Is READ_EXTERNAL_STORAGE permission required for rating? #148

Open barchinvictor opened 3 months ago

barchinvictor commented 3 months ago

Describe the bug Apps about loans are rejected if they have READ_EXTERNAL_STORAGE permission. Is it possible to remove this permission from the package?

To Reproduce Flutter app with rate_my_app package.

Screenshots be1ae70a-2409-4004-a255-2a7c55129784

Smartphone (please complete the following information):

Skyost commented 3 months ago

We only need WRITE_EXTERNAL_STORAGE (https://github.com/Skyost/RateMyApp/blob/master/android/src/main/AndroidManifest.xml#L8), but it shouldn't be a problem for Google review if you have correctly completed the "App content" section.

barchinvictor commented 3 months ago

@Skyost Thanks for the answer. But in the manifest the WRITE_EXTERNAL_STORAGE permission is removed, not added? Isn't it? And READ_EXTERNAL_STORAGE is added by the package on the contrary.