forked from Keripo/Beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
126 lines (126 loc) · 4.11 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.beatsportable.beats"
android:versionCode="21"
android:versionName="@string/App_version"
android:installLocation="auto">
<uses-sdk
android:minSdkVersion="5"
android:targetSdkVersion="19"
/>
<uses-permission android:name="android.permission.INTERNET"/> <!-- Localytics -->
<uses-permission android:name="android.permission.VIBRATE"/> <!-- Game -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <!-- Updates -->
<application
android:enabled="true"
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@drawable/icon"
android:label="@string/App_name"
android:description="@string/App_description">
<activity
android:name=".MenuHome">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ToolsDownloader"
android:configChanges="orientation|keyboardHidden|screenSize">
<!--
Most websites report .smzip files as of MIME type application/octet-stream
so the only real way to handle them would be to directly download the files
within Beats, then proceed to installing them.
-->
<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="http"
android:host="*"
android:pathPattern=".*\\.smzip"
/>
</intent-filter>
</activity>
<activity
android:name=".ToolsUnzipperActivity"
android:configChanges="orientation|keyboardHidden|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:mimeType="application/zip"
/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:mimeType="application/octet-stream"
/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:mimeType="application/download"
/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:mimeType="*/*"
android:scheme="file"
android:host="*"
android:pathPattern=".*\\.smzip"
/>
<data
android:mimeType="*/*"
android:scheme="file"
android:host="*"
android:pathPattern=".*\\.zip"
/>
<data
android:mimeType="*/*"
android:scheme="file"
android:host="*"
android:pathPattern=".*\\.osz"
/>
<data
android:mimeType="*/*"
android:scheme="file"
android:host="*"
android:pathPattern=".*\\.bin"
/>
</intent-filter>
</activity>
<activity
android:name=".MenuCredits">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<action android:name=".MenuCredits" />
</intent-filter>
</activity>
<activity
android:name=".MenuFileChooser"
android:configChanges="orientation|keyboardHidden|screenSize"/>
<activity android:name=".MenuSettings"/>
<activity
android:name=".GUIGame"
android:theme="@style/Theme.NoBackground"
android:configChanges="orientation|keyboardHidden|screenSize"
/>
</application>
</manifest>