SuddenH4X / awesome-app-rating

An Android library providing a dialog, which asks the user to rate the app or give feedback. You can also use the library to show the Google in-app review easily under certain conditions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Failed to send email when targeting Android 11

ay1man4 opened this issue · comments

Hello,

Thank you for your awesome library!

I found that sending email feedback always fail due to Android 11 restriction illustrated in below link:

Package visibility in Android 11

To resolve this issue, we have to add query to mainfaist file like this:

<queries>
        <!-- Sending Emails   -->
        <intent>
            <action android:name="android.intent.action.SENDTO" />
            <data android:scheme="mailto" />
        </intent>
</queries>

Thank you

Hi @ay1man4,

thank you for opening this issue. I will fix it with the next release which is planned for the end of this week 🙂