Rev 1012 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 764 | chris | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
||
| 3 | package="com.gebauz.PonPonBlocksFree" |
||
| 1045 | chris | 4 | android:versionCode="3" |
| 5 | android:versionName="1.0.2" > |
||
| 764 | chris | 6 | |
| 7 | <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="15" /> |
||
| 767 | chris | 8 | <uses-permission android:name="android.permission.INTERNET"/> |
| 9 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
||
| 10 | |||
| 764 | chris | 11 | <application |
| 12 | android:icon="@drawable/ic_launcher" |
||
| 13 | android:label="@string/app_name" > |
||
| 14 | <activity |
||
| 15 | android:name=".MainActivity" |
||
| 16 | android:label="@string/app_name" |
||
| 17 | android:screenOrientation="portrait" |
||
| 18 | android:configChanges="keyboard|keyboardHidden|orientation|screenSize"> |
||
| 19 | <intent-filter> |
||
| 20 | <action android:name="android.intent.action.MAIN" /> |
||
| 21 | <category android:name="android.intent.category.LAUNCHER" /> |
||
| 22 | </intent-filter> |
||
| 23 | </activity> |
||
| 767 | chris | 24 | <activity android:name="com.google.ads.AdActivity" |
| 25 | android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/> |
||
| 26 | |||
| 764 | chris | 27 | </application> |
| 28 | |||
| 29 | </manifest> |