1<?xml version="1.0" encoding="utf-8"?> 2<shortcuts xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools"> 4 <shortcut 5 android:enabled="true" 6 android:icon="@drawable/ic_shortcut_animation_viewer" 7 android:shortcutDisabledMessage="@string/shortcut_disabled" 8 android:shortcutId="animationViewer" 9 android:shortcutLongLabel="@string/shortcut_animation_viewer" 10 android:shortcutShortLabel="@string/shortcut_animation_viewer_short" 11 tools:targetApi="n_mr1"> 12 <intent 13 android:action="com.airbnb.lottie.samples.shortcut.VIEWER" 14 android:targetClass="com.airbnb.lottie.samples.MainActivity" 15 android:targetPackage="com.airbnb.lottie"/> 16 </shortcut> 17 18 <shortcut 19 android:enabled="true" 20 android:icon="@drawable/ic_shortcut_animated_typography" 21 android:shortcutDisabledMessage="@string/shortcut_disabled" 22 android:shortcutId="animatedTypography" 23 android:shortcutLongLabel="@string/shortcut_animated_typography" 24 android:shortcutShortLabel="@string/shortcut_animated_typography_short" 25 tools:targetApi="n_mr1"> 26 <intent 27 android:action="com.airbnb.lottie.samples.shortcut.TYPOGRAPHY" 28 android:targetClass="com.airbnb.lottie.samples.MainActivity" 29 android:targetPackage="com.airbnb.lottie"/> 30 </shortcut> 31 32 <shortcut 33 android:enabled="true" 34 android:icon="@drawable/ic_shortcut_animated_app_tutorial" 35 android:shortcutDisabledMessage="@string/shortcut_disabled" 36 android:shortcutId="animatedAppTutorial" 37 android:shortcutLongLabel="@string/shortcut_animated_app_tutorial" 38 android:shortcutShortLabel="@string/shortcut_animated_app_tutorial_short" 39 tools:targetApi="n_mr1"> 40 <intent 41 android:action="com.airbnb.lottie.samples.shortcut.TUTORIAL" 42 android:targetClass="com.airbnb.lottie.samples.MainActivity" 43 android:targetPackage="com.airbnb.lottie"/> 44 </shortcut> 45 46 <shortcut 47 android:enabled="true" 48 android:icon="@drawable/ic_shortcut_full_screen_animation" 49 android:shortcutDisabledMessage="@string/shortcut_disabled" 50 android:shortcutId="fullScreenAnimation" 51 android:shortcutLongLabel="@string/shortcut_full_screen_animation" 52 android:shortcutShortLabel="@string/shortcut_full_screen_animation_short" 53 tools:targetApi="n_mr1"> 54 <intent 55 android:action="com.airbnb.lottie.samples.shortcut.FULLSCREEN" 56 android:targetClass="com.airbnb.lottie.samples.MainActivity" 57 android:targetPackage="com.airbnb.lottie"/> 58 </shortcut> 59 60</shortcuts>