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