Reputation: 1596
I am working on gmail mail API with custom UI.It's working with some of gmail id but with some it's not working.when I search this issue then find that my email-id dosn't have Gmail Read Email permission.
My question is that how to open permission dialog in android app.
Upvotes: 4
Views: 1272
Reputation: 74
Check your permissions in Android manifest file.
<uses-permission android:name="com.google.android.gm.permission.WRITE_GMAIL" />
<uses-permission android:name="com.google.android.gm.permission.AUTO_SEND" />
Upvotes: 4