-
Notifications
You must be signed in to change notification settings - Fork 258
/
AndroidManifest.xml
168 lines (164 loc) · 7.37 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2009 Teleca Poland Sp. z o.o. <[email protected]>
Licensed under the Apache License, Version 2.0 (the "License"); you
may not use this file except in compliance with the License. You may
obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 Unless required by
applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for
the specific language governing permissions and limitations under the
License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.teleca.jamendo" android:installLocation="auto" android:versionName="1.0.5 [BETA]" android:versionCode="37">
<application android:icon="@drawable/icon" android:label="@string/app_name" android:name="JamendoApplication">
<activity android:name=".activity.HomeActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name=".activity.AlbumActivity"
android:label="@string/album">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.PlayerActivity"
android:label="@string/player_name" android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.SearchActivity"
android:label="@string/search">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.SettingsActivity"
android:label="@string/search">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.ArtistActivity"
android:label="@string/artist">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.PlaylistActivity"
android:label="@string/playlist">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.BrowsePlaylistActivity"
android:label="@string/playlist">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.RadioActivity"
android:label="@string/playlist">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.DownloadActivity"
android:label="@string/playlist">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.StarredAlbumsActivity"
android:label="@string/playlist">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<service android:name=".service.PlayerService"></service>
<service android:name=".service.DownloadService"></service>
<activity android:name=".activity.IntentDistributorActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</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" />
<!-- This is messy i know, I could not figure out pathPattern -->
<!-- Track filter -->
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/track/" />
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/en/track/" />
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/pl/track/" />
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/fr/track/" />
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/de/track/" />
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/es/track/" />
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/ru/track/" />
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/it/track/" />
<!-- Album filter -->
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/album/" />
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/en/album/" />
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/pl/album/" />
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/fr/album/" />
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/de/album/" />
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/es/album/" />
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/ru/album/" />
<data android:scheme="http" android:host="www.jamendo.com"
android:pathPrefix="/it/album/" />
</intent-filter>
</activity>
<activity android:name=".activity.EqualizerActivity"
android:label="@string/equalizer">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.SplashscreenActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"></action>
<category android:name="android.intent.category.LAUNCHER"></category>
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission>
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="10"></uses-sdk>
<uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-permission android:name="android.permission.WAKE_LOCK"></uses-permission>
<uses-permission android:name="android.permission.RECORD_AUDIO"></uses-permission>
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"></uses-permission>
</manifest>