Jeongik Cha | 146bd25 | 2024-08-13 17:44:00 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
Mu-Le Lee | 15052b7 | 2024-11-11 09:41:09 +0000 | [diff] [blame] | 2 | <!-- Copyright 2024 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
Jeongik Cha | 146bd25 | 2024-08-13 17:44:00 +0900 | [diff] [blame] | 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Mu-Le Lee | 0b53a60 | 2024-10-10 21:01:03 +0800 | [diff] [blame] | 18 | xmlns:tools="http://schemas.android.com/tools" |
| 19 | package="com.android.virtualization.terminal"> |
Jeongik Cha | 146bd25 | 2024-08-13 17:44:00 +0900 | [diff] [blame] | 20 | |
Jaewan Kim | c0ff521 | 2024-10-25 13:08:29 +0900 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
Jaewan Kim | b3ff5e2 | 2024-10-14 16:28:50 +0900 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" /> |
Jeongik Cha | 4a8ee3a | 2024-09-20 18:06:29 +0900 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.MANAGE_VIRTUAL_MACHINE" /> |
| 24 | <uses-permission android:name="android.permission.USE_CUSTOM_VIRTUAL_MACHINE" /> |
Jeongik Cha | 146bd25 | 2024-08-13 17:44:00 +0900 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.INTERNET" /> |
Jeongik Cha | 4a8ee3a | 2024-09-20 18:06:29 +0900 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> |
| 27 | <uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE"/> |
Mu-Le Lee | a3bd6c4 | 2024-10-17 23:36:43 +0800 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> |
Jeongik Cha | 146bd25 | 2024-08-13 17:44:00 +0900 | [diff] [blame] | 29 | |
Jeongik Cha | 4a8ee3a | 2024-09-20 18:06:29 +0900 | [diff] [blame] | 30 | <uses-feature android:name="android.software.virtualization_framework" android:required="true" /> |
Mu-Le Lee | 0b53a60 | 2024-10-10 21:01:03 +0800 | [diff] [blame] | 31 | |
Jeongik Cha | 146bd25 | 2024-08-13 17:44:00 +0900 | [diff] [blame] | 32 | <application |
Jaewan Kim | e2f66d3 | 2024-10-07 17:16:30 +0900 | [diff] [blame] | 33 | android:label="@string/app_name" |
Jiyong Park | 50df8dc | 2024-09-03 12:49:09 +0900 | [diff] [blame] | 34 | android:icon="@mipmap/ic_launcher" |
Mu-Le Lee | 0b53a60 | 2024-10-10 21:01:03 +0800 | [diff] [blame] | 35 | android:theme="@style/Theme.Material3.DayNight.NoActionBar" |
Jaewan Kim | e2f66d3 | 2024-10-07 17:16:30 +0900 | [diff] [blame] | 36 | android:usesCleartextTraffic="true" |
Jaewan Kim | b0b7615 | 2024-11-19 14:01:50 +0900 | [diff] [blame] | 37 | android:supportsRtl="true" |
Jaewan Kim | e2f66d3 | 2024-10-07 17:16:30 +0900 | [diff] [blame] | 38 | android:enabled="false"> |
Jeongik Cha | 146bd25 | 2024-08-13 17:44:00 +0900 | [diff] [blame] | 39 | <activity android:name=".MainActivity" |
Jeongik Cha | ebf4c35 | 2024-08-30 17:08:56 +0900 | [diff] [blame] | 40 | android:configChanges="orientation|screenSize|keyboard|keyboardHidden|navigation|uiMode|screenLayout|smallestScreenSize" |
Jeongik Cha | ef989e2 | 2024-08-30 13:25:43 +0900 | [diff] [blame] | 41 | android:exported="true"> |
| 42 | <intent-filter> |
Jaewan Kim | e2f66d3 | 2024-10-07 17:16:30 +0900 | [diff] [blame] | 43 | <action android:name="android.intent.action.MAIN" /> |
Jeongik Cha | ef989e2 | 2024-08-30 13:25:43 +0900 | [diff] [blame] | 44 | <action android:name="android.virtualization.VM_TERMINAL" /> |
Jaewan Kim | e2f66d3 | 2024-10-07 17:16:30 +0900 | [diff] [blame] | 45 | <category android:name="android.intent.category.LAUNCHER" /> |
Jeongik Cha | ef989e2 | 2024-08-30 13:25:43 +0900 | [diff] [blame] | 46 | <category android:name="android.intent.category.DEFAULT" /> |
| 47 | </intent-filter> |
| 48 | </activity> |
Jaewan Kim | 49c8259 | 2024-11-20 13:58:30 +0900 | [diff] [blame] | 49 | <activity android:name=".SettingsActivity" /> |
| 50 | <activity android:name=".SettingsDiskResizeActivity" /> |
| 51 | <activity android:name=".SettingsPortForwardingActivity" /> |
| 52 | <activity android:name=".SettingsRecoveryActivity" /> |
| 53 | <activity android:name=".ErrorActivity" /> |
Mu-Le Lee | 0b53a60 | 2024-10-10 21:01:03 +0800 | [diff] [blame] | 54 | <property |
| 55 | android:name="android.window.PROPERTY_ACTIVITY_EMBEDDING_SPLITS_ENABLED" |
| 56 | android:value="true" /> |
| 57 | <provider |
| 58 | android:name="androidx.startup.InitializationProvider" |
| 59 | android:authorities="${applicationId}.androidx-startup" |
| 60 | android:exported="false" |
| 61 | tools:node="merge"> |
| 62 | <meta-data |
| 63 | android:name="${applicationId}.SplitInitializer" |
| 64 | android:value="androidx.startup" /> |
| 65 | </provider> |
Jaewan Kim | b3ff5e2 | 2024-10-14 16:28:50 +0900 | [diff] [blame] | 66 | <activity android:name=".InstallerActivity" |
| 67 | android:exported="false"> |
| 68 | <intent-filter> |
| 69 | <action android:name="android.intent.action.MAIN" /> |
| 70 | </intent-filter> |
| 71 | </activity> |
Jaewan Kim | b6bcab8 | 2024-10-22 00:59:12 +0900 | [diff] [blame] | 72 | <service android:name=".InstallerService" |
| 73 | android:foregroundServiceType="specialUse" |
| 74 | android:value="Prepares Linux image" |
| 75 | android:exported="false" |
| 76 | android:stopWithTask="true" /> |
Jeongik Cha | 4a8ee3a | 2024-09-20 18:06:29 +0900 | [diff] [blame] | 77 | |
| 78 | <service |
| 79 | android:name="com.android.virtualization.vmlauncher.VmLauncherService" |
Jeongik Cha | 4a8ee3a | 2024-09-20 18:06:29 +0900 | [diff] [blame] | 80 | android:exported="false" |
Jeongik Cha | e0848f2 | 2024-11-08 05:10:14 +0000 | [diff] [blame] | 81 | android:foregroundServiceType="specialUse" |
| 82 | android:stopWithTask="true" > |
Jeongik Cha | 4a8ee3a | 2024-09-20 18:06:29 +0900 | [diff] [blame] | 83 | <property |
| 84 | android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE" |
| 85 | android:value="Run VM instances" /> |
| 86 | <intent-filter> |
| 87 | <action android:name="android.virtualization.START_VM_LAUNCHER_SERVICE" /> |
| 88 | <category android:name="android.intent.category.DEFAULT" /> |
| 89 | </intent-filter> |
| 90 | </service> |
Jeongik Cha | 146bd25 | 2024-08-13 17:44:00 +0900 | [diff] [blame] | 91 | </application> |
| 92 | |
| 93 | </manifest> |