• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<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>
17