Skip to content

Commit f33ef75

Browse files
committed
1.1.9
1 parent 0db013f commit f33ef75

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ task clean(type: Delete) {
2626

2727
allprojects {
2828
tasks.withType(Javadoc) {
29-
options{
29+
enabled = false
30+
options {
3031
encoding "UTF-8"
3132
charSet 'UTF-8'
3233
links "http://docs.oracle.com/javase/7/docs/api"

library/build.gradle

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
apply plugin: 'com.android.library'
2-
//apply plugin: 'com.novoda.bintray-release'//添加
2+
apply plugin: 'com.novoda.bintray-release'//添加
33
// 这个version是区分library版本的,因此当我们需要更新library时记得修改这个version
44
android {
55
compileSdkVersion 28
66
buildToolsVersion '28.0.3'
77
defaultConfig {
88
minSdkVersion 14
99
targetSdkVersion 28
10-
versionCode 18
11-
versionName "1.1.7"
10+
versionCode 20
11+
versionName "1.1.9"
1212
}
1313
buildTypes {
1414
release {
@@ -23,7 +23,7 @@ android {
2323
}
2424

2525
dependencies {
26-
compile fileTree(include: ['*.jar'], dir: 'libs')
26+
implementation fileTree(include: ['*.jar'], dir: 'libs')
2727
compileOnly 'com.android.support:recyclerview-v7:28.0.0'
2828
compileOnly 'com.android.support:support-v4:28.0.0'
2929
}
@@ -51,11 +51,11 @@ artifacts {
5151
////gradlew clean build bintrayUpload -PbintrayUser=用户名 -PbintrayKey=apiKey -PdryRun=false
5252
////添加
5353
////添加
54-
//publish {
55-
// userOrg = 'luckyjayce'//bintray.com用户名
56-
// groupId = 'com.shizhefei'//jcenter上的路径
57-
// artifactId = 'ViewPagerIndicator'//项目名称
58-
// publishVersion = '1.1.7'//版本号
59-
// desc = '实现滑动tab,引导页等效果'//描述,不重要
60-
// website = 'https://github.com/LuckyJayce/ViewPagerIndicator'//网站,不重要;尽量模拟github上的地址,例如我这样的;当然你有地址最好了
61-
//}
54+
publish {
55+
userOrg = 'luckyjayce'//bintray.com用户名
56+
groupId = 'com.shizhefei'//jcenter上的路径
57+
artifactId = 'ViewPagerIndicator'//项目名称
58+
publishVersion = '1.1.9'//版本号
59+
desc = '实现滑动tab,引导页等效果'//描述,不重要
60+
website = 'https://github.com/LuckyJayce/ViewPagerIndicator'//网站,不重要;尽量模拟github上的地址,例如我这样的;当然你有地址最好了
61+
}

0 commit comments

Comments
 (0)