79628969

Date: 2025-05-19 14:46:12
Score: 0.5
Natty:
Report link

Adding the following lines to my AndroidManifest.xml file inside the <activity> tag solved it. It's suggested in Android Documentation. You can checkout the documentation here https://developer.android.com/guide/components/intents-common#Email.

<intent-filter>
        <action android:name="android.intent.action.SENDTO" />
        <data android:scheme="mailto" />
        <category android:name="android.intent.category.DEFAULT" />
</intent-filter>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Abinash Dash