/documentation/ClockBackTutorial/ClockBack2/AndroidManifest.xml
http://eyes-free.googlecode.com/ · XML · 22 lines · 14 code · 5 blank · 3 comment · 0 complexity · 17ac5599a62a65e6a5a73145bd4d0416 MD5 · raw file
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.google.android.marvin.clockback"
- android:versionCode="1"
- android:versionName="1.0.0">
- <application android:label="@string/clockback_setup_title">
- <!-- We declare our service here -->
- <service android:name=".ClockBackService">
- <!-- This intent filter is a clue for the system that this is an accessibility service -->
- <intent-filter>
- <action android:name="android.accessibilityservice.AccessibilityService" />
- </intent-filter>
- </service>
- </application>
- <!-- Accessibility API appeared in SDK version 4 (Android 1.6) -->
- <uses-sdk android:minSdkVersion="4" />
- </manifest>