Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.96 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 25
  5.     buildToolsVersion '27.0.3'
  6.  
  7.     defaultConfig {
  8.         applicationId "com.microsoft.projectoxford.visionsample"
  9.         minSdkVersion 19
  10.         targetSdkVersion 25
  11.         versionCode 2
  12.         versionName "1.1"
  13.         // debug
  14.         multiDexEnabled true
  15.     }
  16.     buildTypes {
  17.         release {
  18.             minifyEnabled false
  19.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  20.         }
  21.     }
  22. }
  23.  
  24. dependencies {
  25.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  26.     //
  27.     // Use the following line to include client library for Vision API from Maven Central Repository
  28.     //
  29.     implementation 'com.microsoft.projectoxford:vision:1.0.395'
  30.     implementation 'com.android.support:appcompat-v7:25.4.0'
  31.     api files('libs/gson-2.3.1.jar')
  32.     // debug
  33. //    implementation 'com.google.code.gson:gson:2.8.2'
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement