annotate app/src/main/AndroidManifest.xml @ 1:bae640f518e4

Adding auto generated project files, plus Activity code
author kshalle
date Mon, 20 Apr 2015 17:11:10 +0300
parents
children 3485a304a057
rev   line source
kshalle@1 1 <?xml version="1.0" encoding="utf-8"?>
kshalle@1 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
kshalle@1 3 package="com.example.friendstream.friendstream" >
kshalle@1 4
kshalle@1 5 <!--allows music to play in the background, after Activity view switched out -->
kshalle@1 6 <uses-permission android:name="android.permission.WAKE_LOCK" />
kshalle@1 7
kshalle@1 8 <!--Generated by Android Studio -->
kshalle@1 9 <application
kshalle@1 10 android:allowBackup="true"
kshalle@1 11 android:icon="@mipmap/ic_launcher"
kshalle@1 12 android:label="@string/app_name"
kshalle@1 13 android:theme="@style/AppTheme" >
kshalle@1 14 <activity
kshalle@1 15 android:name=".PickingSongs"
kshalle@1 16 android:configChanges="orientation|keyboardHidden|screenSize"
kshalle@1 17 android:label="@string/app_name"
kshalle@1 18 android:theme="@style/FullscreenTheme" >
kshalle@1 19 <intent-filter>
kshalle@1 20 <action android:name="android.intent.action.MAIN" />
kshalle@1 21
kshalle@1 22 <category android:name="android.intent.category.LAUNCHER" />
kshalle@1 23 </intent-filter>
kshalle@1 24 </activity>
kshalle@1 25
kshalle@1 26 <service
kshalle@1 27 android:name=".MusicService"
kshalle@1 28 android:enabled="true"
kshalle@1 29 android:exported="true" >
kshalle@1 30 </service>
kshalle@1 31 </application>
kshalle@1 32
kshalle@1 33 </manifest>