updated android web-api

This commit is contained in:
2017-07-02 14:10:59 +08:00
parent 850c267aa4
commit 87d506c44b
8 changed files with 443 additions and 41 deletions

View File

@@ -1,21 +1,32 @@
apply plugin: 'com.android.library'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
android {
signingConfigs {
irext_key {
keyAlias 'irext_key'
keyPassword 'ghostcicy'
storeFile file('D:/Project/Github_Work/irext/keys/irext_key.jks')
storePassword 'ghostcicy'
keyAlias 'irext-android'
keyPassword 'irext-android'
storeFile file('D:/Project/Github_Work/irext/keys/irext-android.jks')
storePassword 'irext-android'
}
}
compileSdkVersion 25
buildToolsVersion "25.0.2"
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
minSdkVersion 19
targetSdkVersion 25
versionCode 1
versionName "0.1.2"
targetSdkVersion 23
versionCode 3
versionName '0.1.3'
signingConfig signingConfigs.irext_key
}
buildTypes {
@@ -23,11 +34,10 @@ android {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.irext_key
versionNameSuffix '0.1.2'
versionNameSuffix '0.1.3'
}
}
productFlavors {
}
}