comparison app/src/main/AndroidManifest.xml @ 2:3485a304a057

adding new branch with the original tutorial code -- later merge to main and mod
author kshalle
date Thu, 23 Apr 2015 10:53:54 -0700
parents bae640f518e4
children
comparison
equal deleted inserted replaced
0:39857eb910c6 1:128d6ff8be19
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.example.friendstream.friendstream" > 3 package="com.example.musicplayer" >
4 4
5 <!--allows music to play in the background, after Activity view switched out -->
6 <uses-permission android:name="android.permission.WAKE_LOCK" />
7
8 <!--Generated by Android Studio -->
9 <application 5 <application
10 android:allowBackup="true" 6 android:allowBackup="true"
11 android:icon="@mipmap/ic_launcher" 7 android:icon="@mipmap/ic_launcher"
12 android:label="@string/app_name" 8 android:label="@string/app_name"
13 android:theme="@style/AppTheme" > 9 android:theme="@style/AppTheme" >
14 <activity 10 <activity
15 android:name=".PickingSongs" 11 android:name=".MainActivity"
16 android:configChanges="orientation|keyboardHidden|screenSize" 12 android:configChanges="orientation|keyboardHidden|screenSize"
17 android:label="@string/app_name" 13 android:label="@string/app_name"
18 android:theme="@style/FullscreenTheme" > 14 android:theme="@style/FullscreenTheme" >
19 <intent-filter> 15 <intent-filter>
20 <action android:name="android.intent.action.MAIN" /> 16 <action android:name="android.intent.action.MAIN" />
21 17
22 <category android:name="android.intent.category.LAUNCHER" /> 18 <category android:name="android.intent.category.LAUNCHER" />
23 </intent-filter> 19 </intent-filter>
24 </activity> 20 </activity>
25
26 <service
27 android:name=".MusicService"
28 android:enabled="true"
29 android:exported="true" >
30 </service>
31 </application> 21 </application>
32 22
33 </manifest> 23 </manifest>