Jeongik Cha | 7cd7a59 | 2024-06-14 14:27:29 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Jeongik Cha | 6734b0d | 2024-07-17 16:03:21 +0900 | [diff] [blame] | 3 | package="com.android.virtualization.ferrochrome" > |
Jeongik Cha | 7cd7a59 | 2024-06-14 14:27:29 +0900 | [diff] [blame] | 4 | |
| 5 | <uses-permission android:name="android.permission.INTERNET" /> |
Jeongik Cha | 6734b0d | 2024-07-17 16:03:21 +0900 | [diff] [blame] | 6 | <uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" /> |
| 7 | <uses-permission android:name="android.permission.KILL_ALL_BACKGROUND_PROCESSES" /> |
| 8 | <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" /> |
| 9 | <queries> |
| 10 | <intent> |
| 11 | <action android:name="android.virtualization.VM_LAUNCHER" /> |
| 12 | </intent> |
| 13 | </queries> |
Jeongik Cha | 7cd7a59 | 2024-06-14 14:27:29 +0900 | [diff] [blame] | 14 | <application |
| 15 | android:label="Ferrochrome"> |
| 16 | <activity android:name=".FerrochromeActivity" |
| 17 | android:configChanges="orientation|screenSize|keyboard|keyboardHidden|navigation|uiMode" |
Jeongik Cha | 7cd7a59 | 2024-06-14 14:27:29 +0900 | [diff] [blame] | 18 | android:screenOrientation="landscape" |
Jiyong Park | 2041a34 | 2024-07-17 18:13:32 +0900 | [diff] [blame] | 19 | android:resizeableActivity="false" |
Jeongik Cha | 7cd7a59 | 2024-06-14 14:27:29 +0900 | [diff] [blame] | 20 | android:exported="true"> |
| 21 | <intent-filter> |
| 22 | <action android:name="android.intent.action.MAIN" /> |
| 23 | <category android:name="android.intent.category.LAUNCHER" /> |
| 24 | </intent-filter> |
| 25 | </activity> |
| 26 | </application> |
| 27 | |
| 28 | </manifest> |