blob: d0aa62c117e7ac984b8c9e9fe467d13ba95cfb8f [file] [log] [blame]
Jeongik Cha7cd7a592024-06-14 14:27:29 +09001<?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"
Jeongik Cha7cd7a592024-06-14 14:27:29 +090011 android:screenOrientation="landscape"
12 android:exported="true">
13 <intent-filter>
14 <action android:name="android.intent.action.MAIN" />
15 <category android:name="android.intent.category.LAUNCHER" />
16 </intent-filter>
17 </activity>
18 </application>
19
20</manifest>