-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
69 lines (55 loc) · 2.33 KB
/
AndroidManifest.xml
File metadata and controls
69 lines (55 loc) · 2.33 KB
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="wmuc_radio">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<application
android:launchMode="singleInstance"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:screenOrientation = "portrait">
<receiver android:name="wmuc_radio.MainActivity$MusicIntentReceiver">
<intent-filter>
<action android:name="android.media.AUDIO_BECOMING_NOISY" />
</intent-filter>
</receiver>
<activity
android:name="wmuc_radio.Splash"
android:label="@string/app_name"
android:theme="@style/Theme.Transparent">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity android:name="wmuc_radio.MainActivity"
android:screenOrientation="portrait"
android:launchMode="singleInstance"
/>
<activity
android:name="wmuc_radio.menu"
android:label="@string/title_activity_menu"
android:theme="@style/AppTheme.NoActionBar">
</activity>
<activity
android:screenOrientation="portrait"
android:name="wmuc_radio.settings"
android:label="@string/title_activity_settings" />
<activity
android:screenOrientation="portrait"
android:name="wmuc_radio.Schedule"
android:label="@string/title_activity_schedule"
android:parentActivityName="wmuc_radio.MainActivity"
/>
<!--
ATTENTION: This was auto-generated to add Google play services to your project for
App Indexing. See https://g.co/AppIndexing/AndroidStudio for more information.
-->
<service android:name="wmuc_radio.StreamingService"/>
</application>
</manifest>