2021-02-11 17:39:55 +01:00
|
|
|
<manifest
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.xc3fff0e.xmanager">
|
2022-01-17 14:30:38 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED" />
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
2022-03-11 12:36:24 +01:00
|
|
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
|
|
|
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
|
2022-01-17 14:30:38 +01:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
|
|
|
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
|
2021-02-11 17:39:55 +01:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2022-03-16 16:04:39 +01:00
|
|
|
android:requestLegacyExternalStorage="true"
|
2022-04-24 16:40:02 +02:00
|
|
|
android:icon="@drawable/app_icon"
|
2022-01-17 14:30:38 +01:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:name=".SketchApplication"
|
|
|
|
android:requestLegacyExternalStorage="true"
|
2021-09-17 11:57:36 +02:00
|
|
|
android:usesCleartextTraffic="true"
|
2022-03-25 16:20:44 +01:00
|
|
|
android:theme="@style/Theme_Origins"
|
2022-01-17 14:30:38 +01:00
|
|
|
android:preserveLegacyExternalStorage="true">
|
2021-02-11 17:39:55 +01:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
2022-03-16 16:04:39 +01:00
|
|
|
android:exported="true"
|
2021-09-17 11:57:36 +02:00
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|smallestScreenSize|screenLayout"
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:supportsPictureInPicture="true"
|
2021-02-11 17:39:55 +01:00
|
|
|
android:screenOrientation="portrait"
|
2022-01-17 14:30:38 +01:00
|
|
|
android:windowSoftInputMode="stateHidden" />
|
2021-02-11 17:39:55 +01:00
|
|
|
<activity
|
|
|
|
android:name=".SplashActivity"
|
2022-03-16 16:04:39 +01:00
|
|
|
android:exported="true"
|
2021-09-17 11:57:36 +02:00
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|smallestScreenSize|screenLayout"
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:supportsPictureInPicture="true"
|
2021-02-11 17:39:55 +01:00
|
|
|
android:screenOrientation="portrait"
|
2022-01-17 14:30:38 +01:00
|
|
|
android:windowSoftInputMode="stateHidden">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".DebugActivity"
|
2022-03-16 16:04:39 +01:00
|
|
|
android:exported="true"
|
2022-01-17 14:30:38 +01:00
|
|
|
android:screenOrientation="portrait" />
|
2022-04-05 16:04:50 +02:00
|
|
|
<activity
|
|
|
|
android:name="com.google.android.gms.ads.AdActivity"
|
|
|
|
android:exported="true"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
|
|
|
|
android:theme="@android:style/Theme.Translucent" />
|
2021-02-11 17:39:55 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.gms.version"
|
2022-01-17 14:30:38 +01:00
|
|
|
android:value="@integer/google_play_services_version" />
|
2021-09-17 11:57:36 +02:00
|
|
|
<service
|
|
|
|
android:name="com.google.firebase.messaging.FirebaseMessagingService"
|
|
|
|
android:exported="false">
|
2022-01-17 14:30:38 +01:00
|
|
|
<intent-filter android:priority="-500">
|
|
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
2021-09-17 11:57:36 +02:00
|
|
|
</intent-filter>
|
2021-02-11 17:39:55 +01:00
|
|
|
</service>
|
2021-09-17 11:57:36 +02:00
|
|
|
<receiver
|
|
|
|
android:name="com.google.firebase.iid.FirebaseInstanceIdReceiver"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="com.google.android.c2dm.permission.SEND">
|
|
|
|
<intent-filter>
|
2022-01-17 14:30:38 +01:00
|
|
|
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
|
2021-09-17 11:57:36 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2021-02-11 17:39:55 +01:00
|
|
|
<uses-library
|
|
|
|
android:name="org.apache.http.legacy"
|
2022-01-17 14:30:38 +01:00
|
|
|
android:required="false" />
|
2022-04-05 16:04:50 +02:00
|
|
|
<provider
|
|
|
|
android:authorities="com.xc3fff0e.xmanager.provider"
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/provider_paths"/>
|
|
|
|
</provider>
|
|
|
|
<activity
|
|
|
|
android:name="com.unity3d.services.ads.adunit.AdUnitActivity"
|
|
|
|
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
|
|
android:hardwareAccelerated="true" />
|
|
|
|
<activity
|
|
|
|
android:name="com.unity3d.services.ads.adunit.AdUnitTransparentActivity"
|
|
|
|
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"
|
|
|
|
android:hardwareAccelerated="true" />
|
|
|
|
<activity
|
|
|
|
android:name="com.unity3d.services.ads.adunit.AdUnitTransparentSoftwareActivity"
|
|
|
|
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"
|
|
|
|
android:hardwareAccelerated="false" />
|
|
|
|
<activity
|
|
|
|
android:name="com.unity3d.services.ads.adunit.AdUnitSoftwareActivity"
|
|
|
|
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
|
|
android:hardwareAccelerated="false" />
|
2021-02-11 17:39:55 +01:00
|
|
|
</application>
|
|
|
|
</manifest>
|