Created
September 26, 2018 09:38
-
-
Save nagendrababu143/1a7f5d8e7718a4a4db1876a5b8c76246 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'com.android.application' | |
android { | |
compileSdkVersion 27 | |
buildToolsVersion '27.0.3' | |
defaultConfig { | |
applicationId "com.google.android.gms.samples.vision.ocrreader" | |
minSdkVersion 21 | |
targetSdkVersion 27 | |
versionCode 1 | |
versionName "1.0" | |
} | |
buildTypes { | |
release { | |
minifyEnabled false | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
} | |
} | |
} | |
dependencies { | |
implementation fileTree(dir: 'libs', include: ['*.jar']) | |
implementation 'com.android.support:support-v4:27.1.1' | |
implementation 'com.android.support:design:27.1.1' | |
implementation 'com.google.android.gms:play-services-vision:15.0.0' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment