/accessibilityPreferences/AndroidManifest.xml
http://eyes-free.googlecode.com/ · XML · 27 lines · 24 code · 3 blank · 0 comment · 0 complexity · 70d64ed91c1c4306bf86178d5b4519f3 MD5 · raw file
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.marvin.preferences"
- android:versionCode="1"
- android:versionName="1.0">
-
- <uses-permission android:name="com.google.android.marvin.talkback.PERMISSION_SEND_INTENT_BROADCAST_COMMANDS_TO_TALKBACK" />
-
- <application android:icon="@drawable/icon" android:label="@string/app_name">
- <activity android:name=".AccessibilityServicesListActivity"
- 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=".ResetTalkBackActivity"
- android:label="@string/reset_talkback_activity_name">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
- <uses-sdk android:minSdkVersion="4" />
- </manifest>