From Android 11 there is a change in App visibility. In my application, I need to navigate to mail apps and navigation apps.
The below code needs to be added in manifest
<manifest package="com.example.game">
<queries>
<intent>
<action android:name="android.intent.action.SEND" />
<data android:mimeType="image/jpeg" />
</intent>
</queries>
...
</manifest>
According to the documentation the above example allows your app to see installed apps that support JPEG image sharing:
https://developer.android.com/training/basics/intents/package-visibility#intent-signature
Could anyone please help what "action" and "data" I need to use for navigation app (google navigation,uber) and mail apps(like outllok,gmail)?
Thanks in advance!