/documentation/ClockBackTutorial/ClockBack0/AndroidManifest.xml

http://eyes-free.googlecode.com/ · XML · 22 lines · 14 code · 5 blank · 3 comment · 0 complexity · 17ac5599a62a65e6a5a73145bd4d0416 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.google.android.marvin.clockback"
  4. android:versionCode="1"
  5. android:versionName="1.0.0">
  6. <application android:label="@string/clockback_setup_title">
  7. <!-- We declare our service here -->
  8. <service android:name=".ClockBackService">
  9. <!-- This intent filter is a clue for the system that this is an accessibility service -->
  10. <intent-filter>
  11. <action android:name="android.accessibilityservice.AccessibilityService" />
  12. </intent-filter>
  13. </service>
  14. </application>
  15. <!-- Accessibility API appeared in SDK version 4 (Android 1.6) -->
  16. <uses-sdk android:minSdkVersion="4" />
  17. </manifest>