-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathAndroidManifest.xml
executable file
·105 lines (105 loc) · 4.03 KB
/
AndroidManifest.xml
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.botbrew.basil"
android:versionCode="24"
android:versionName="0.0.1.24">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application
android:name="BotBrewApp"
android:icon="@drawable/ic_launcher"
android:logo="@drawable/ic_home"
android:label="@string/app_name"
android:theme="@style/Theme.Sherlock"
android:uiOptions="splitActionBarWhenNarrow">
<activity
android:name=".Main"
android:label="@string/app_name"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="file" android:host="*" />
<data android:pathPattern=".*\\.deb" />
<data android:pathPattern=".*\\..*\\.deb" />
<data android:pathPattern=".*\\..*\\..*\\.deb" />
<data android:pathPattern=".*\\..*\\..*\\..*\\.deb" />
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.deb" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="file" android:host="*" android:mimeType="*/*" />
<data android:pathPattern=".*\\.deb" />
<data android:pathPattern=".*\\..*\\.deb" />
<data android:pathPattern=".*\\..*\\..*\\.deb" />
<data android:pathPattern=".*\\..*\\..*\\..*\\.deb" />
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.deb" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
<activity
android:name=".BootstrapActivity"
android:label="@string/app_name_bootstrap"
android:launchMode="singleTop"
android:configChanges="orientation|screenSize" />
<activity
android:name=".PackageManagerActivity"
android:label="Package Manager"
android:launchMode="singleTop"
android:windowSoftInputMode="adjustResize"
android:configChanges="orientation|screenSize" />
<activity
android:name=".SupervisorActivity"
android:label="Supervisor"
android:launchMode="singleTop"
android:configChanges="orientation|screenSize" />
<activity
android:name=".WebActivity"
android:theme="@android:style/Theme.NoTitleBar" />
<activity
android:name=".ControlActivity"
android:label="Control" />
<activity
android:name=".ExplorerActivity"
android:label="Explorer" />
<activity
android:name=".TerminalActivity"
android:label="Run Command" />
<service
android:name=".SupervisorService"
android:enabled="true" />
<provider
android:name=".PackageCacheProvider"
android:authorities="com.botbrew.basil.data.packagecacheprovider"
android:exported="false" />
<meta-data
android:name="android.app.default_searchable"
android:value=".Main" />
<!-- Boot broadcast. -->
<receiver android:name=".BootBroadcastReceiver">
<intent-filter>
<action android:name ="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<!-- ACRA error reports. -->
<activity android:name="org.acra.CrashReportDialog"
android:theme="@style/Theme.Sherlock.Dialog"
android:launchMode="singleInstance"
android:excludeFromRecents="true"
android:finishOnTaskLaunch="true" />
</application>
</manifest>