2020-03-16 15:41:57 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-03 16:40:54 +00:00
|
|
|
<manifest
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-04-09 17:31:13 +00:00
|
|
|
package="com.vanced.manager">
|
|
|
|
|
2020-04-15 13:35:15 +00:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
2020-04-19 17:21:40 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2020-03-16 15:41:57 +00:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2020-04-03 16:40:54 +00:00
|
|
|
android:fullBackupContent="true"
|
2020-03-16 15:41:57 +00:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2020-04-16 15:24:12 +00:00
|
|
|
android:supportsRtl="true">
|
2020-03-16 15:41:57 +00:00
|
|
|
<activity
|
2020-04-09 17:31:13 +00:00
|
|
|
android:name=".ui.core.SplashScreenActivity"
|
2020-04-03 16:40:54 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/SplashTheme">
|
2020-03-16 15:41:57 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2020-04-03 16:40:54 +00:00
|
|
|
|
2020-03-16 15:41:57 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2020-04-03 16:40:54 +00:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".ui.MainActivity"
|
2020-04-09 17:31:13 +00:00
|
|
|
android:label="@string/app_name" />
|
2020-04-03 16:40:54 +00:00
|
|
|
|
2020-03-16 15:41:57 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="preloaded_fonts"
|
|
|
|
android:resource="@array/preloaded_fonts" />
|
2020-04-03 16:40:54 +00:00
|
|
|
|
2020-03-16 15:41:57 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|