Mercurial > cgi-bin > hgwebdir.cgi > FriendStream > ASProto
comparison 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 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:39857eb910c6 |
|---|---|
| 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" > | |
| 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 | |
| 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" /> | |
| 21 | |
| 22 <category android:name="android.intent.category.LAUNCHER" /> | |
| 23 </intent-filter> | |
| 24 </activity> | |
| 25 | |
| 26 <service | |
| 27 android:name=".MusicService" | |
| 28 android:enabled="true" | |
| 29 android:exported="true" > | |
| 30 </service> | |
| 31 </application> | |
| 32 | |
| 33 </manifest> |
