mirror of
https://github.com/sifacaii/VlcJellyfin
synced 2025-06-03 00:58:06 -04:00
48 lines
1.7 KiB
XML
48 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="org.sifacai.vlcjellyfin">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@drawable/touchicon144"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@drawable/touchicon144"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/jellyfin"
|
|
tools:targetApi="31">
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".DetailActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".CollectionActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".VlcPlayerActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.AppCompat.NoActionBar"/>
|
|
|
|
<meta-data
|
|
android:name="design_width_in_dp"
|
|
android:value="1280" />
|
|
<meta-data
|
|
android:name="design_height_in_dp"
|
|
android:value="720" />
|
|
</application>
|
|
|
|
</manifest> |