Skip to content

Instantly share code, notes, and snippets.

@nagendrababu143
Created September 26, 2018 09:37
Show Gist options
  • Save nagendrababu143/0d2db92749d5cb7172cc6f2fa125ac55 to your computer and use it in GitHub Desktop.
Save nagendrababu143/0d2db92749d5cb7172cc6f2fa125ac55 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.android.gms.samples.vision.ocrreader"
android:installLocation="auto" >
<uses-feature android:name="android.hardware.camera" />
<uses-permission android:name="android.permission.CAMERA" />
<application
android:allowBackup="true"
android:fullBackupContent="false"
android:hardwareAccelerated="true"
android:icon="@drawable/pronix"
android:label="ReaderApp"
android:supportsRtl = "true"
android:theme="@style/Theme.AppCompat" >
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.gms.vision.DEPENDENCIES"
android:value="ocr" />
<activity android:name="com.google.android.gms.samples.vision.ocrreader.OcrCaptureActivity"
android:label="Read Text">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment