/KeyboardTutor/AndroidManifest.xml
http://eyes-free.googlecode.com/ · XML · 22 lines · 20 code · 2 blank · 0 comment · 0 complexity · e624ddb04f0ffb359225a853b766126b MD5 · raw file
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.googlecode.eyesfree.keyboardtutor"
- android:versionCode="1"
- android:versionName="1.0">
- <application
- android:icon="@drawable/ic_launcher_keyboard_tutor"
- android:label="@string/app_name">
- <activity android:name=".KeyboardTutor"
- android:label="@string/app_name">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <activity android:name=".AboutActivity"
- android:label="@string/about_menu"/>
- </application>
- <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="4" />
- </manifest>