/ocr/ocrservice/AndroidManifest.xml

http://eyes-free.googlecode.com/ · XML · 122 lines · 107 code · 1 blank · 14 comment · 0 complexity · f28fdd54f5c40f27c7eff3f85701d8f2 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright (C) 2009 Google Inc.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. -->
  13. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  14. package="com.googlecode.eyesfree.ocr"
  15. android:versionCode="4"
  16. android:versionName="0.6.1"
  17. android:installLocation="auto">
  18. <application android:icon="@drawable/service_icon">
  19. <service android:name=".service.OcrService"
  20. android:enabled="true">
  21. <intent-filter>
  22. <action android:name="com.googlecode.eyesfree.ocr.intent.SERVICE" />
  23. <category android:name="android.intent.category.DEFAULT" />
  24. </intent-filter>
  25. </service>
  26. <activity android:name=".intent.PrefsActivity"
  27. android:icon="@drawable/service_icon"
  28. android:label="@string/app_name">
  29. <intent-filter>
  30. <action android:name="android.intent.action.MAIN" />
  31. <category android:name="android.intent.category.LAUNCHER" />
  32. </intent-filter>
  33. <intent-filter>
  34. <action android:name="android.intent.action.MAIN" />
  35. <category android:name="android.intent.category.PREFERENCE" />
  36. </intent-filter>
  37. </activity>
  38. <activity android:name=".intent.LanguagesActivity"
  39. android:configChanges="orientation|keyboardHidden"
  40. android:label="@string/languages_title">
  41. <intent-filter>
  42. <action android:name="com.googlecode.eyesfree.ocr.intent.LANGUAGES" />
  43. <category android:name="android.intent.category.DEFAULT" />
  44. </intent-filter>
  45. </activity>
  46. <activity android:name=".intent.DetectActivity"
  47. android:label="@string/capture_title"
  48. android:configChanges="orientation|keyboardHidden"
  49. android:screenOrientation="landscape"
  50. android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
  51. <intent-filter>
  52. <action android:name="com.googlecode.eyesfree.ocr.intent.DETECT" />
  53. <category android:name="android.intent.category.DEFAULT" />
  54. </intent-filter>
  55. </activity>
  56. <activity android:name=".intent.RecognizeActivity"
  57. android:label="@string/recognize_title"
  58. android:configChanges="orientation|keyboardHidden"
  59. android:screenOrientation="landscape"
  60. android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
  61. <intent-filter>
  62. <action android:name="com.googlecode.eyesfree.ocr.intent.RECOGNIZE" />
  63. <category android:name="android.intent.category.DEFAULT" />
  64. </intent-filter>
  65. </activity>
  66. <activity android:name=".intent.UnveilRecognizeActivity"
  67. android:label="@string/recognize_title"
  68. android:configChanges="orientation|keyboardHidden"
  69. android:screenOrientation="landscape"
  70. android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
  71. <intent-filter>
  72. <action android:name="com.googlecode.eyesfree.ocr.intent.UNVEIL_RECOGNIZE" />
  73. <category android:name="android.intent.category.DEFAULT" />
  74. </intent-filter>
  75. </activity>
  76. <activity android:name=".intent.MixedRecognizeActivity"
  77. android:label="@string/recognize_title"
  78. android:configChanges="orientation|keyboardHidden"
  79. android:screenOrientation="landscape"
  80. android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
  81. <intent-filter>
  82. <action android:name="com.googlecode.eyesfree.ocr.intent.MIXED_RECOGNIZE" />
  83. <category android:name="android.intent.category.DEFAULT" />
  84. </intent-filter>
  85. </activity>
  86. <activity android:name=".intent.OpticalFlowActivity"
  87. android:label="@string/realtime_title"
  88. android:configChanges="orientation|keyboardHidden"
  89. android:screenOrientation="landscape"
  90. android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
  91. <intent-filter>
  92. <action android:name="com.googlecode.eyesfree.ocr.intent.OPTICAL_FLOW" />
  93. <category android:name="android.intent.category.DEFAULT" />
  94. </intent-filter>
  95. <intent-filter>
  96. <action android:name="android.intent.action.MAIN" />
  97. <category android:name="android.intent.category.LAUNCHER" />
  98. </intent-filter>
  99. </activity>
  100. <activity android:name=".intent.TestActivity"
  101. android:label="@string/test_title"
  102. android:configChanges="orientation|keyboardHidden"
  103. android:screenOrientation="landscape" />
  104. <activity android:name=".intent.CheckOcrData"
  105. android:label="@string/app_name"
  106. android:theme="@android:style/Theme.Translucent.NoTitleBar">
  107. <intent-filter>
  108. <action android:name="com.googlecode.eyesfree.ocr.intent.CHECK_OCR_DATA" />
  109. <category android:name="android.intent.category.DEFAULT" />
  110. </intent-filter>
  111. </activity>
  112. </application>
  113. <uses-sdk android:minSdkVersion="8" />
  114. <uses-permission android:name="android.permission.CAMERA"/>
  115. <uses-permission android:name="android.permission.INTERNET" />
  116. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  117. <uses-permission android:name="android.permission.VIBRATE"/>
  118. </manifest>