Action:release v1.0.2
Description:发布版本v1.0.2
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user