Action:release v1.0.2

Description:发布版本v1.0.2
This commit is contained in:
yj
2017-06-29 15:31:25 +08:00
parent e222c7ab85
commit 5905c626c3
9 changed files with 138 additions and 118 deletions

View File

@@ -1,37 +1,44 @@
apply plugin: 'com.android.library'
apply plugin: 'com.novoda.bintray-release'
def appVerCode = 2
def appVerName = "1.0.1"
publish {
userOrg = 'jkb'
groupId = 'com.justkiddingbaby'
artifactId = 'vercodeedittext'
publishVersion = appVerName
desc = 'An Android vercode EditText.(一个安卓验证码输入框)'
website = 'https://github.com/YangJing96/VercodeEditText'
userOrg = rootProject.ext.vercode.userOrg
groupId = rootProject.ext.vercode.groupId
artifactId = rootProject.ext.vercode.artifactId
publishVersion = rootProject.ext.vercode.publishVersion
desc = rootProject.ext.vercode.desc
website = rootProject.ext.vercode.website
}
android {
compileSdkVersion Integer.parseInt(COMPILE_SDK_VERSION)
buildToolsVersion BUILDTOOLS_VERSION
compileSdkVersion rootProject.ext.android.compileSdkVersion
buildToolsVersion rootProject.ext.android.buildToolsVersion
defaultConfig {
minSdkVersion Integer.parseInt(MIN_SDK_VERSION)
targetSdkVersion Integer.parseInt(TARGET_SDK_VERSION)
versionCode appVerCode
versionName appVerName
minSdkVersion rootProject.ext.android.minSdkVersion
targetSdkVersion rootProject.ext.android.targetSdkVersion
versionCode rootProject.ext.vercode.publishCode
versionName rootProject.ext.vercode.publishVersion
}
compileOptions {
sourceCompatibility rootProject.ext.android.sourceCompatibilityVersion
targetCompatibility rootProject.ext.android.targetCompatibilityVersion
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions { abortOnError false }
lintOptions {
abortOnError false
}
}
dependencies {
compile "com.android.support:appcompat-v7:${SUPPORT_LIB_VERSION}"
compile rootProject.ext.dependencies.appcompatV7
}

View File

@@ -1,9 +1,9 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jkb.vcedittext">
package="com.jkb.vcedittext">
<application android:allowBackup="true" android:label="@string/app_name"
android:supportsRtl="true">
<application
android:label="@string/app_name">
</application>