Rev 1004 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1004 | chris | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
||
| 3 | package="com.gebauz.burutaru" |
||
| 4 | android:versionCode="1" |
||
| 5 | android:versionName="1.0" > |
||
| 6 | |||
| 7 | <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="15" /> |
||
| 8 | |||
| 1108 | chris | 9 | <uses-permission android:name="android.permission.INTERNET"/> |
| 10 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
||
| 11 | |||
| 1004 | chris | 12 | <application |
| 13 | android:icon="@drawable/ic_launcher" |
||
| 1108 | chris | 14 | android:label="@string/app_name" |
| 15 | android:allowBackup="true"> |
||
| 16 | |||
| 17 | <meta-data android:name="com.google.android.gms.version" |
||
| 18 | android:value="@integer/google_play_services_version"/> |
||
| 19 | |||
| 1004 | chris | 20 | <activity |
| 21 | android:name=".MainActivity" |
||
| 22 | android:label="@string/app_name" |
||
| 23 | android:screenOrientation="landscape" |
||
| 24 | android:configChanges="keyboard|keyboardHidden|orientation|screenSize"> |
||
| 25 | <intent-filter> |
||
| 26 | <action android:name="android.intent.action.MAIN" /> |
||
| 27 | <category android:name="android.intent.category.LAUNCHER" /> |
||
| 28 | </intent-filter> |
||
| 29 | </activity> |
||
| 1108 | chris | 30 | |
| 31 | <activity android:name="com.google.android.gms.ads.AdActivity" |
||
| 32 | android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/> |
||
| 1004 | chris | 33 | </application> |
| 34 | |||
| 1108 | chris | 35 | </manifest> |
| 36 |