Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created February 25, 2022 01:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skydoves/e5d543b4f5ef3fc2bbd71b3fe44daabc to your computer and use it in GitHub Desktop.
Save skydoves/e5d543b4f5ef3fc2bbd71b3fe44daabc to your computer and use it in GitHub Desktop.
shortcut_example_2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.getstream.example">
<application ... >
<activity android:name="Main">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
</activity>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment