Files
android_development/apps/Term/AndroidManifest.xml
The Android Open Source Project 52d4c30ca5 auto import from //depot/cupcake/@135843
2009-03-03 19:29:09 -08:00

17 lines
800 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.term">
<application android:icon="@drawable/app_terminal"
android:label="@string/application_terminal">
<activity android:name="Term"
android:theme="@style/Theme"
android:launchMode="singleInstance"
android:configChanges="keyboard|keyboardHidden|orientation"
android:windowSoftInputMode="adjustResize|stateVisible">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.TEST" />
</intent-filter>
</activity>
<activity android:name="TermPreferences"/>
</application>
</manifest>