upgraded Sdk versions

This commit is contained in:
Juha Heinanen
2018-02-20 22:38:26 +02:00
parent 8f75ab6528
commit babe009f2e
+5 -6
View File
@@ -1,18 +1,17 @@
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
compileSdkVersion 26 compileSdkVersion 25
buildToolsVersion "26.0.1"
defaultConfig { defaultConfig {
minSdkVersion 14 minSdkVersion 21
targetSdkVersion 17 targetSdkVersion 23
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
externalNativeBuild { externalNativeBuild {
cmake { cmake {
arguments '-DANDROID_PLATFORM=android-17', arguments '-DANDROID_PLATFORM=android-21',
'-DANDROID_TOOLCHAIN=clang' '-DANDROID_TOOLCHAIN=clang'
// explicitly build libs // explicitly build libs
// targets 're', 'rem', 'baresip' // targets 're', 'rem', 'baresip'
@@ -36,5 +35,5 @@ android {
dependencies { dependencies {
compile fileTree(dir: 'libs', include: ['*.jar']) compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.4.0' compile 'com.android.support:appcompat-v7:25.2.0'
} }