/documentation/ClockBackTutorial/ClockBack3/AndroidManifest.xml
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 7 <application android:label="@string/clockback_setup_title"> 8 9 <!-- We declare our service here --> 10 <service android:name=".ClockBackService"> 11 <!-- This intent filter is a clue for the system that this is an accessibility service --> 12 <intent-filter> 13 <action android:name="android.accessibilityservice.AccessibilityService" /> 14 </intent-filter> 15 </service> 16 17 </application> 18 19 <!-- Accessibility API appeared in SDK version 4 (Android 1.6) --> 20 <uses-sdk android:minSdkVersion="4" /> 21 22</manifest>