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