• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="com.airbnb.lottie.sample.compose">
4
5    <uses-permission android:name="android.permission.INTERNET" />
6
7    <application
8        android:allowBackup="true"
9        android:name=".LottieComposeApplication"
10        android:icon="@mipmap/ic_launcher"
11        android:label="@string/app_name"
12        android:roundIcon="@mipmap/ic_launcher_round"
13        android:supportsRtl="true"
14        android:theme="@style/Theme.LottieCompose">
15
16        <profileable android:shell="true"/>
17
18        <activity
19            android:name=".ComposeActivity"
20            android:label="@string/app_name"
21            android:theme="@style/Theme.LottieCompose.NoActionBar">
22            <intent-filter>
23                <action android:name="android.intent.action.MAIN" />
24
25                <category android:name="android.intent.category.LAUNCHER" />
26            </intent-filter>
27        </activity>
28    </application>
29
30</manifest>
31