blob: 7084d2c2c1c996efac0c8cffa3426e961fa6a76b [file] [log] [blame]
The Android Open Source Project52d4c302009-03-03 19:29:09 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.term">
2 <application android:icon="@drawable/app_terminal"
3 android:label="@string/application_terminal">
4 <activity android:name="Term"
5 android:theme="@style/Theme"
6 android:launchMode="singleInstance"
7 android:configChanges="keyboard|keyboardHidden|orientation"
8 android:windowSoftInputMode="adjustResize|stateVisible">
9 <intent-filter>
10 <action android:name="android.intent.action.MAIN" />
11 <category android:name="android.intent.category.TEST" />
12 </intent-filter>
13 </activity>
14 <activity android:name="TermPreferences"/>
15 </application>
16</manifest>