Mercurial > cgi-bin > hgwebdir.cgi > FriendStream > ASProto
view 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 |
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.musicplayer" >
5 <application
6 android:allowBackup="true"
7 android:icon="@mipmap/ic_launcher"
8 android:label="@string/app_name"
9 android:theme="@style/AppTheme" >
10 <activity
11 android:name=".MainActivity"
12 android:configChanges="orientation|keyboardHidden|screenSize"
13 android:label="@string/app_name"
14 android:theme="@style/FullscreenTheme" >
15 <intent-filter>
16 <action android:name="android.intent.action.MAIN" />
18 <category android:name="android.intent.category.LAUNCHER" />
19 </intent-filter>
20 </activity>
21 </application>
23 </manifest>
