-
Notifications
You must be signed in to change notification settings - Fork 6
/
AndroidManifest.xml
executable file
·147 lines (144 loc) · 7.5 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.chrislehmann.squeezedroid"
android:versionCode="10"
android:versionName="1.0.0-SNAPSHOT">
<application android:icon="@drawable/icon" android:label="@string/app_name" android:name=".activity.SqueezeDroidApplication" android:debuggable="true">
<activity android:name=".activity.MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.Status" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.PlayListActivity"
android:label="Current Playlist"
android:theme="@android:style/Theme.NoTitleBar"
>
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.PlayList" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.BrowseRootActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:label="Browse">
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.Browse" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".activity.BrowseArtistsActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:label="Browse Artists">
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.BrowseArtist" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="squeeze" />
</intent-filter>
</activity>
<activity android:name=".activity.BrowseSongsActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:label="Browse Songs">
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.BrowseSong" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="squeeze" />
</intent-filter>
</activity>
<activity android:name=".activity.BrowseAlbumsActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:label="Browse Album">
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.BrowseAlbum" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="squeeze" />
</intent-filter>
</activity>
<activity android:name=".activity.BrowseFoldersActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:label="Browse Music Folder">
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.BrowseFolder" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="squeeze" />
</intent-filter>
</activity>
<activity android:name=".activity.ListApplicationsActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:label="List Applications">
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.ListApplications" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.ListRadioStationsActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:label="List Radio Stations">
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.ListRadio" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.BrowseApplicationActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:label="Browse Applications">
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.BrowseApplication" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.BrowseGenresActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:label="Browse Genres">
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.BrowseGenre" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="squeeze" />
</intent-filter>
</activity>
<activity android:name=".activity.EditPrefrencesActivity" android:label="Edit Preferences" >
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.EditPreferences" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.ConnectToServerActivity" android:label="Connecting To Server" >
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.ConnectToServer" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.ChoosePlayerActivity" android:label="Choose A Player" >
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.ChoosePlayer" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.SearchActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:label="Search" >
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.Search" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".activity.ListPlaylistsActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:label="Playlists" >
<intent-filter>
<action android:name="net.chrislehmann.squeezedroid.action.ListPlaylists" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<service android:enabled="true" android:name=".service.DownloadService" />
</application>
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="9" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>