~robinj/android-omgubuntu/trunk

« back to all changes in this revision

Viewing changes to bin/AndroidManifest.xml

  • Committer: Robin Jacobs
  • Date: 2012-09-07 18:03:30 UTC
  • Revision ID: broederjacobs@gmail.com-20120907180330-b6vk75ks5t0odu4f
Initial Launchpad release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 
2
    package="com.robinj.omgubuntu"
 
3
    android:versionCode="1"
 
4
    android:versionName="1.0" >
 
5
        
 
6
        <uses-permission android:name="android.permission.INTERNET" />
 
7
        
 
8
    <uses-sdk
 
9
        android:minSdkVersion="8"
 
10
        android:targetSdkVersion="15" />
 
11
 
 
12
    <application
 
13
        android:icon="@drawable/ic_launcher"
 
14
        android:label="@string/app_name"
 
15
        android:theme="@style/AppTheme" >
 
16
        <activity
 
17
            android:name=".MainActivity"
 
18
            android:label="@string/title_activity_main" >
 
19
            <intent-filter>
 
20
                <action android:name="android.intent.action.MAIN" />
 
21
 
 
22
                <category android:name="android.intent.category.LAUNCHER" />
 
23
            </intent-filter>
 
24
        </activity>
 
25
    </application>
 
26
 
 
27
</manifest>
 
 
b'\\ No newline at end of file'