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" |
| 3 | package="com.android.virtualization.ferrochrome" |
| 4 | android:sharedUserId="android.uid.system" > |
| 5 | |
| 6 | <uses-permission android:name="android.permission.INTERNET" /> |
| 7 | <application |
| 8 | android:label="Ferrochrome"> |
| 9 | <activity android:name=".FerrochromeActivity" |
| 10 | android:configChanges="orientation|screenSize|keyboard|keyboardHidden|navigation|uiMode" |
| 11 | android:theme="@style/MyTheme" |
| 12 | android:screenOrientation="landscape" |
| 13 | android:exported="true"> |
| 14 | <intent-filter> |
| 15 | <action android:name="android.intent.action.MAIN" /> |
| 16 | <category android:name="android.intent.category.LAUNCHER" /> |
| 17 | </intent-filter> |
| 18 | </activity> |
| 19 | </application> |
| 20 | |
| 21 | </manifest> |