Subversion Repositories AndroidProjects

Rev

Rev 1679 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1679 chris 1
<?xml version="1.0" encoding="utf-8"?>
2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
    package="com.gebauz.petnpurr.android"
4
    android:versionCode="1"
5
    android:versionName="1.0" >
6
 
7
    <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19" />
8
 
9
    <application
10
        android:allowBackup="true"
11
        android:icon="@drawable/ic_launcher"
12
        android:label="@string/app_name"
13
        android:theme="@style/GdxTheme" >
1687 chris 14
 
15
        <meta-data android:name="com.google.android.gms.version"
16
           android:value="@integer/google_play_services_version"/>
17
 
18
 
1679 chris 19
        <activity
20
            android:name="com.gebauz.petnpurr.android.AndroidLauncher"
21
            android:label="@string/app_name" 
22
            android:screenOrientation="landscape"
23
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
24
            <intent-filter>
25
                <action android:name="android.intent.action.MAIN" />
26
                <category android:name="android.intent.category.LAUNCHER" />
27
            </intent-filter>
28
        </activity>
29
    </application>
30
 
31
</manifest>