aboutsummaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
blob: cb0be5896f32425d46a4344b54af9d77f22aa6d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="jackpal.androidterm"
      android:versionName="1.0.48"
      android:versionCode="49"
      android:installLocation="auto">
    <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="11" />
    <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <permission android:name="jackpal.androidterm.permission.RUN_SCRIPT"
                android:label="@string/perm_run_script"
                android:description="@string/permdesc_run_script"
                android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
                android:protectionLevel="dangerous" />
    <permission android:name="jackpal.androidterm.permission.APPEND_TO_PATH"
                android:label="@string/perm_append_to_path"
                android:description="@string/permdesc_append_to_path"
                android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
                android:protectionLevel="dangerous" />
    <permission android:name="jackpal.androidterm.permission.PREPEND_TO_PATH"
                android:label="@string/perm_prepend_to_path"
                android:description="@string/permdesc_prepend_to_path"
                android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
                android:protectionLevel="dangerous" />
    <application android:icon="@drawable/ic_launcher"
                android:label="@string/application_terminal">
        <activity android:name="Term"
                android:theme="@style/Theme"
                android:launchMode="singleTask"
                android:configChanges="keyboard|keyboardHidden|orientation"
                android:windowSoftInputMode="adjustResize|stateAlwaysVisible">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity-alias android:name="TermInternal"
                android:targetActivity="Term"
                android:exported="false">
            <intent-filter>
                <action android:name="jackpal.androidterm.private.OPEN_NEW_WINDOW" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <intent-filter>
                <action android:name="jackpal.androidterm.private.SWITCH_WINDOW" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity-alias>
        <activity android:name="RemoteInterface"
                android:excludeFromRecents="true">
            <intent-filter>
                <action android:name="jackpal.androidterm.OPEN_NEW_WINDOW" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity-alias android:name="RunScript"
                android:targetActivity="RemoteInterface"
                android:permission="jackpal.androidterm.permission.RUN_SCRIPT">
            <intent-filter>
                <action android:name="jackpal.androidterm.RUN_SCRIPT" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity-alias>
        <activity android:name="TermPreferences"
                android:label="@string/preferences" />
        <activity android:name="WindowList"
                android:label="@string/window_list" />
        <service android:name="TermService" />
    </application>
</manifest>