2021-12-09 18:01:40 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="xyz.btcland.libretube">
|
2021-12-12 17:38:23 +05:30
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2021-12-16 03:54:40 +05:30
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2021-12-12 17:38:23 +05:30
|
|
|
|
2021-12-09 18:01:40 +05:30
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2022-01-28 22:40:32 +05:30
|
|
|
android:icon="@mipmap/ic_libretube"
|
2021-12-09 18:01:40 +05:30
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2021-12-14 21:45:53 +05:30
|
|
|
android:theme="@style/Theme.LibreTube"
|
|
|
|
android:name=".myApp"
|
2021-12-16 03:54:40 +05:30
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2021-12-14 21:45:53 +05:30
|
|
|
>
|
2021-12-12 17:38:23 +05:30
|
|
|
<activity
|
|
|
|
android:name=".Player"
|
|
|
|
android:exported="false"
|
2021-12-14 21:45:53 +05:30
|
|
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2021-12-12 17:38:23 +05:30
|
|
|
/>
|
2021-12-09 18:01:40 +05:30
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
2021-12-14 21:45:53 +05:30
|
|
|
android:exported="true"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
>
|
2021-12-09 18:01:40 +05:30
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|