~ubuntuone-client-engineering/droidcouch/trunk

« back to all changes in this revision

Viewing changes to AndroidManifest.xml

  • Committer: Alejandro J. Cura
  • Date: 2011-03-04 14:08:40 UTC
  • Revision ID: git-v1:8c8baa522b6adb2b798ea333abe95fe5c2a1db19
UI for Ubuntu One login (launchpad bug #725290), modified retry code
to be async and use the login UI

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
    <application android:icon="@drawable/icon" android:label="@string/app_name">
7
7
        <activity android:name=".TestClient"
8
8
                  android:label="DroidCouch test client">
 
9
        </activity>
 
10
        <activity android:name=".ubuntuone.samples.SampleUbuntuOneNotesViewer"
 
11
                  android:label="Ubuntu One DroidCouch test client">
9
12
            <intent-filter>
10
13
                <action android:name="android.intent.action.MAIN" />
11
14
                <category android:name="android.intent.category.LAUNCHER" />
12
15
            </intent-filter>
13
16
        </activity>
 
17
        <activity android:name=".ubuntuone.LoginActivity"
 
18
                  android:label="@string/login_dialog_title"
 
19
                  android:theme="@android:style/Theme.Dialog">
 
20
        </activity>
14
21
    </application>
15
22
    <instrumentation
16
23
        android:name="android.test.InstrumentationTestRunner"
17
24
        android:label="DroidCouch Tests" android:targetPackage="se.mcs.android.droidcouch"/>
18
25
                
19
 
    <uses-sdk android:minSdkVersion="3" />
 
26
    <uses-sdk android:minSdkVersion="7" />
20
27
    <uses-permission android:name="android.permission.INTERNET"></uses-permission>
21
28
</manifest> 
 
 
b'\\ No newline at end of file'