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