OSDN Git Service

googlehosts-2017-11-22
[syncr/master.git] / SyncerClient / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3     package="org.upsuper.playlistsyncer.client"
4     android:versionCode="1"
5     android:versionName="1.0" >
6
7     <uses-sdk
8         android:minSdkVersion="16"
9         android:targetSdkVersion="19" />
10
11     <uses-permission android:name="android.permission.INTERNET" />
12     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
13
14     <application
15         android:allowBackup="true"
16         android:icon="@drawable/playlist_syncer_icon"
17         android:label="@string/app_name"
18         android:theme="@style/AppTheme" >
19         <activity
20             android:name="org.upsuper.playlistsyncer.client.SelectActivity"
21             android:label="@string/app_name" >
22             <intent-filter>
23                 <action android:name="android.intent.action.MAIN" />
24
25                 <category android:name="android.intent.category.LAUNCHER" />
26             </intent-filter>
27         </activity>
28         <activity
29             android:name="org.upsuper.playlistsyncer.client.SyncActivity"
30             android:label="@string/app_name" >
31         </activity>
32     </application>
33
34 </manifest>