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