b929fd4683c09c934ecbb229b422abddaad8581e
[pub/Android/ownCloud.git] / oc_framework / sample_client / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.owncloud.android.oc_framework.sampleclient"
4 android:versionCode="1"
5 android:versionName="1.0">
6 <uses-sdk
7 android:minSdkVersion="8"
8 android:targetSdkVersion="19" />
9 <application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
10 <activity android:name="MainActivity"
11 android:label="@string/app_name"
12 android:screenOrientation="portrait"
13 android:configChanges="orientation|keyboardHidden"
14 >
15 <intent-filter>
16 <action android:name="android.intent.action.MAIN" />
17 <category android:name="android.intent.category.LAUNCHER" />
18 </intent-filter>
19 </activity>
20 </application>
21 </manifest>