/KeyboardTutor/AndroidManifest.xml

http://eyes-free.googlecode.com/ · XML · 22 lines · 20 code · 2 blank · 0 comment · 0 complexity · e624ddb04f0ffb359225a853b766126b MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.googlecode.eyesfree.keyboardtutor"
  4. android:versionCode="1"
  5. android:versionName="1.0">
  6. <application
  7. android:icon="@drawable/ic_launcher_keyboard_tutor"
  8. android:label="@string/app_name">
  9. <activity android:name=".KeyboardTutor"
  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=".AboutActivity"
  17. android:label="@string/about_menu"/>
  18. </application>
  19. <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="4" />
  20. </manifest>