Mercurial > cgi-bin > hgwebdir.cgi > FriendStream > ASProto
view 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 |
line source
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.example.friendstream.friendstream" >
5 <!--allows music to play in the background, after Activity view switched out -->
6 <uses-permission android:name="android.permission.WAKE_LOCK" />
8 <!--Generated by Android Studio -->
9 <application
10 android:allowBackup="true"
11 android:icon="@mipmap/ic_launcher"
12 android:label="@string/app_name"
13 android:theme="@style/AppTheme" >
14 <activity
15 android:name=".PickingSongs"
16 android:configChanges="orientation|keyboardHidden|screenSize"
17 android:label="@string/app_name"
18 android:theme="@style/FullscreenTheme" >
19 <intent-filter>
20 <action android:name="android.intent.action.MAIN" />
22 <category android:name="android.intent.category.LAUNCHER" />
23 </intent-filter>
24 </activity>
26 <service
27 android:name=".MusicService"
28 android:enabled="true"
29 android:exported="true" >
30 </service>
31 </application>
33 </manifest>
