36 lines
1.5 KiB
XML
36 lines
1.5 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme"
|
|
android:usesCleartextTraffic="${usesCleartextTraffic}">
|
|
<activity
|
|
android:name=".ComposeVisualAuditActivity"
|
|
android:theme="@style/ComposeAppTheme"
|
|
android:exported="true" />
|
|
<activity
|
|
android:name=".ComposePilotActivity"
|
|
android:theme="@style/ComposeAppTheme"
|
|
android:windowSoftInputMode="adjustResize"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:scheme="${deepLinkScheme}" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:windowSoftInputMode="adjustResize"
|
|
android:exported="false" />
|
|
</application>
|
|
</manifest>
|