Update client and helper lib min SDK to 14

Update helper support lib dependency version
This commit is contained in:
zzz
2019-06-20 17:43:16 +00:00
parent 76cd9c85ef
commit 9794d26d0c
2 changed files with 6 additions and 3 deletions

View File

@ -9,7 +9,7 @@ repositories {
android { android {
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION as String) compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION as String)
defaultConfig { defaultConfig {
minSdkVersion 9 minSdkVersion 14
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION as String) targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION as String)
} }
buildTypes { buildTypes {

View File

@ -5,7 +5,7 @@ version = '0.9.5'
android { android {
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION as String) compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION as String)
defaultConfig { defaultConfig {
minSdkVersion 9 minSdkVersion 14
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION as String) targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION as String)
} }
buildTypes { buildTypes {
@ -25,7 +25,10 @@ android {
} }
dependencies { dependencies {
implementation 'com.android.support:support-v4:25.3.1' // Android Support Repository dependencies
def supportVersion = '28.0.0'
implementation "com.android.support:support-v4:$supportVersion"
// Testing-only dependencies
testImplementation 'junit:junit:4.12' testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.11.0' testImplementation 'org.mockito:mockito-core:2.11.0'
} }