mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-10-31 17:02:38 +00:00
42 lines
1.5 KiB
XML
42 lines
1.5 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="com.Frontesque.youtube">
|
||
|
|
||
|
<application
|
||
|
android:allowBackup="true"
|
||
|
android:icon="@mipmap/ic_launcher"
|
||
|
android:label="@string/app_name"
|
||
|
android:roundIcon="@mipmap/ic_launcher_round"
|
||
|
android:supportsRtl="true"
|
||
|
android:theme="@style/AppTheme">
|
||
|
|
||
|
<activity
|
||
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
|
||
|
android:name="com.Frontesque.youtube.MainActivity"
|
||
|
android:label="@string/title_activity_main"
|
||
|
android:theme="@style/AppTheme.NoActionBarLaunch"
|
||
|
android:launchMode="singleTask">
|
||
|
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.MAIN" />
|
||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
</intent-filter>
|
||
|
|
||
|
</activity>
|
||
|
|
||
|
<provider
|
||
|
android:name="androidx.core.content.FileProvider"
|
||
|
android:authorities="${applicationId}.fileprovider"
|
||
|
android:exported="false"
|
||
|
android:grantUriPermissions="true">
|
||
|
<meta-data
|
||
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
||
|
android:resource="@xml/file_paths"></meta-data>
|
||
|
</provider>
|
||
|
</application>
|
||
|
|
||
|
<!-- Permissions -->
|
||
|
|
||
|
<uses-permission android:name="android.permission.INTERNET" />
|
||
|
</manifest>
|