updated Android example using new webapi

This commit is contained in:
2017-07-02 10:01:23 +08:00
parent ff4ce90915
commit ced8791cb7
45 changed files with 3113 additions and 57 deletions

View File

@@ -1,2 +1,29 @@
configurations.maybeCreate("default")
artifacts.add("default", file('web-api.aar'))
apply plugin: 'com.android.library'
android {
signingConfigs {
}
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
minSdkVersion 19
targetSdkVersion 25
versionCode 1
versionName "0.1.2"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
versionNameSuffix '0.1.2'
}
}
productFlavors {
}
}
dependencies {
compile files('libs/gson-2.8.0.jar')
compile files('libs/okhttp-3.7.0.jar')
compile files('libs/okio-1.12.0.jar')
}