Files
jellyfin-audio-player/android/app/src/main/AndroidManifest.xml

26 lines
1.0 KiB
XML
Raw Normal View History

2023-04-30 23:36:32 +02:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2020-06-16 17:51:51 +02:00
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:networkSecurityConfig="@xml/react_native_config"
2020-06-16 17:51:51 +02:00
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
2022-05-04 18:28:00 +02:00
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
2020-06-16 17:51:51 +02:00
android:launchMode="singleTask"
2022-05-04 18:28:00 +02:00
android:windowSoftInputMode="adjustResize"
android:exported="true">
2020-06-16 17:51:51 +02:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
2022-05-04 18:28:00 +02:00
</manifest>