mirror of
https://github.com/xoureldeen/Vectras-VM-Android.git
synced 2026-07-09 17:28:54 +00:00
209 lines
No EOL
9.4 KiB
XML
209 lines
No EOL
9.4 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="com.vectras.vm">
|
|
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
|
|
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
|
|
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
|
|
<uses-permission
|
|
android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
|
|
tools:ignore="ScopedStorage" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission
|
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
tools:ignore="ScopedStorage" />
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
|
<uses-permission
|
|
android:name="android.permission.QUERY_ALL_PACKAGES"
|
|
tools:ignore="QueryAllPackagesPermission" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" tools:ignore="ProtectedPermissions" />
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.touchscreen"
|
|
android:required="false" />
|
|
<uses-feature
|
|
android:name="android.hardware.microphone"
|
|
android:required="false" />
|
|
|
|
<application
|
|
android:name=".VectrasApp"
|
|
android:allowBackup="true"
|
|
android:banner="@mipmap/tv_banner"
|
|
android:hardwareAccelerated="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:largeHeap="true"
|
|
android:requestLegacyExternalStorage="true"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme">
|
|
<activity
|
|
android:name=".CqcmActivity"
|
|
android:exported="true" />
|
|
<activity
|
|
android:name=".EditActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".SplashActivity"
|
|
android:exported="true"
|
|
android:hardwareAccelerated="false">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true"
|
|
android:hardwareAccelerated="true"
|
|
android:launchMode="singleTask" />
|
|
<activity
|
|
android:name=".SetupQemuActivity"
|
|
android:exported="true"
|
|
android:hardwareAccelerated="true"
|
|
android:launchMode="singleTask"
|
|
tools:ignore="DiscouragedApi" /> <!-- stupid android issue -->
|
|
<activity
|
|
android:name=".RomsManagerActivity"
|
|
android:exported="true"
|
|
android:hardwareAccelerated="true"
|
|
android:label="Roms" />
|
|
<activity
|
|
android:name=".AboutActivity"
|
|
android:exported="true"
|
|
android:hardwareAccelerated="true"
|
|
android:label="About App" />
|
|
<activity
|
|
android:name=".StoreActivity"
|
|
android:exported="true"
|
|
android:hardwareAccelerated="true"
|
|
android:label="Apps & Games" />
|
|
<activity
|
|
android:name=".StoreItemActivity"
|
|
android:exported="true"
|
|
android:hardwareAccelerated="true"
|
|
android:label="Download" />
|
|
<activity
|
|
android:name=".ImagePrvActivity"
|
|
android:exported="true"
|
|
android:hardwareAccelerated="true" />
|
|
<activity
|
|
android:name=".PostActivity"
|
|
android:exported="true"
|
|
android:hardwareAccelerated="true" />
|
|
<activity
|
|
android:name=".VectrasApp$CrashActivity"
|
|
android:exported="true"
|
|
android:hardwareAccelerated="true"
|
|
android:label="App Crash" />
|
|
<activity
|
|
android:name="com.vectras.qemu.MainVNCActivity"
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|screenLayout|fontScale|uiMode|orientation|screenSize|smallestScreenSize"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="landscape"
|
|
android:theme="@style/Theme.FullScreen"
|
|
android:windowSoftInputMode="adjustPan" />
|
|
<activity
|
|
android:name="com.vectras.qemu.MainSettingsManager"
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|screenLayout|fontScale|uiMode|orientation|screenSize|smallestScreenSize"
|
|
android:label="Settings"
|
|
android:theme="@style/AppTheme" />
|
|
<activity
|
|
android:name=".CustomRomActivity"
|
|
android:theme="@style/AppTheme" />
|
|
<activity
|
|
android:name=".DataExplorerActivity"
|
|
android:label="Data Explorer"
|
|
android:theme="@style/AppTheme" />
|
|
<activity
|
|
android:name=".SetArchActivity"
|
|
android:label="Set Qemu Version"
|
|
android:theme="@style/AppTheme" />
|
|
|
|
<service
|
|
android:name=".MainService"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name="com.termux.app.TermuxActivity"
|
|
android:label="@string/application_name"
|
|
android:configChanges="orientation|screenSize|smallestScreenSize|density|screenLayout|uiMode|keyboard|keyboardHidden|navigation"
|
|
android:launchMode="singleTask"
|
|
android:resizeableActivity="true"
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysVisible"/>
|
|
<service
|
|
android:name="com.termux.app.TermuxService"
|
|
android:exported="false" />
|
|
<service
|
|
android:name="com.termux.app.RunCommandService"
|
|
android:exported="true"
|
|
android:stopWithTask="true">
|
|
</service>
|
|
|
|
<!--Termux-X11-->
|
|
<activity
|
|
android:name="com.vectras.vm.x11.X11Activity"
|
|
android:taskAffinity="com.vectras.vm.x11.X11Activity"
|
|
android:supportsPictureInPicture="true"
|
|
android:configChanges="fontScale|orientation|screenSize|keyboard|keyboardHidden|layoutDirection|locale|mcc|mnc|navigation|screenLayout|touchscreen|uiMode|smallestScreenSize|density"
|
|
android:resizeableActivity="true"
|
|
android:windowSoftInputMode="stateHidden"
|
|
android:exported="true"
|
|
android:screenOrientation="sensorLandscape"/>
|
|
<activity
|
|
android:theme="@style/Theme.AppCompat.DayNight"
|
|
android:excludeFromRecents="true"
|
|
android:name="com.vectras.vm.x11.LoriePreferences"
|
|
android:taskAffinity="com.vectras.vm.x11.LoriePreferences"
|
|
android:supportsPictureInPicture="false"
|
|
android:resizeableActivity="true"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
<meta-data android:name="com.samsung.android.multidisplay.keep_process_alive" android:value="false"/>
|
|
<meta-data android:name="android.allow_multiple_resumed_activities" android:value="true" />
|
|
|
|
<service android:name="com.vectras.vm.x11.utils.KeyInterceptor"
|
|
android:exported="true"
|
|
android:label="Termux:X11 KeyInterceptor"
|
|
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
|
|
<intent-filter>
|
|
<action android:name="android.accessibilityservice.AccessibilityService" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.accessibilityservice"
|
|
android:resource="@xml/accessibility_service_config" />
|
|
</service>
|
|
|
|
<receiver android:name="com.vectras.vm.x11.LoriePreferences$Receiver" android:exported="true" tools:ignore="ExportedReceiver" android:enabled="true">
|
|
<intent-filter>
|
|
<action android:name="com.vectras.vm.x11.CHANGE_PREFERENCE" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<!--
|
|
This (or rather, value 2.1 or higher) is needed to make the Samsung Galaxy S8 mark the
|
|
app with "This app is optimized to run in full screen."
|
|
-->
|
|
<meta-data
|
|
android:name="android.max_aspect"
|
|
android:value="10.0" />
|
|
<meta-data
|
|
android:name="com.google.android.gms.ads.APPLICATION_ID"
|
|
android:value="ca-app-pub-3568137780412047~1296857222" />
|
|
</application>
|
|
|
|
</manifest> |