1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="se.msc.android.droidcouch"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".TestClient"
android:label="DroidCouch test client">
</activity>
<activity android:name=".ubuntuone.samples.SampleUbuntuOneNotesViewer"
android:label="Ubuntu One DroidCouch test client">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".ubuntuone.LoginActivity"
android:label="@string/login_dialog_title"
android:theme="@android:style/Theme.Dialog">
</activity>
</application>
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:label="DroidCouch Tests" android:targetPackage="se.mcs.android.droidcouch"/>
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifest>
|