Merged PR 4657: Bump up to version 1.4.2.

This commit is contained in:
Sean Hu 2018-04-12 09:41:01 +00:00
Родитель ebd648b6f6
Коммит ecdabd773f
6 изменённых файлов: 16 добавлений и 11 удалений

Просмотреть файл

@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
android {
compileSdkVersion 22
buildToolsVersion '26.0.2'
buildToolsVersion '27.0.3'
defaultConfig {
minSdkVersion 22
@ -11,7 +11,7 @@ android {
}
dependencies {
compile 'com.google.code.gson:gson:2.8.2'
implementation 'com.google.code.gson:gson:2.8.2'
}
apply plugin: 'maven'

Просмотреть файл

@ -21,7 +21,7 @@ dependencies {
// Use the following line to include client library from Maven Central Repository
// Change the version number with the latest version according to the search.maven.org result
//
compile 'com.microsoft.projectoxford:face:1.4.1'
implementation 'com.microsoft.projectoxford:face:1.4.2'
// Your other Dependencies...
}

Просмотреть файл

@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion '26.0.2'
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.microsoft.projectoxford.faceapisample"
@ -20,10 +20,13 @@ android {
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
implementation fileTree(include: ['*.jar'], dir: 'libs')
// Include local lib mostly for debug purpose.
// implementation project(':lib')
// Use the following line to include client library for Face API from Maven Central Repository
compile 'com.microsoft.projectoxford:face:1.4.1'
compile 'com.android.support:appcompat-v7:22.1.0'
compile 'com.google.code.gson:gson:2.8.2'
implementation 'com.microsoft.projectoxford:face:1.4.2'
implementation 'com.android.support:appcompat-v7:22.1.0'
implementation 'com.google.code.gson:gson:2.8.2'
}

Просмотреть файл

@ -6,7 +6,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.android.tools.build:gradle:3.1.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files

Просмотреть файл

@ -1,6 +1,6 @@
#Wed Feb 28 18:48:53 CST 2018
#Wed Apr 11 16:47:25 CST 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

Просмотреть файл

@ -1 +1,3 @@
include ':app'
include 'lib'
project(':lib').projectDir = file('../ClientLibrary/lib')