1
1
apply plugin : ' com.android.library'
2
- // apply plugin: 'com.novoda.bintray-release'//添加
2
+ apply plugin : ' com.novoda.bintray-release' // 添加
3
3
// 这个version是区分library版本的,因此当我们需要更新library时记得修改这个version
4
4
android {
5
5
compileSdkVersion 28
6
6
buildToolsVersion ' 28.0.3'
7
7
defaultConfig {
8
8
minSdkVersion 14
9
9
targetSdkVersion 28
10
- versionCode 18
11
- versionName " 1.1.7 "
10
+ versionCode 20
11
+ versionName " 1.1.9 "
12
12
}
13
13
buildTypes {
14
14
release {
@@ -23,7 +23,7 @@ android {
23
23
}
24
24
25
25
dependencies {
26
- compile fileTree(include : [' *.jar' ], dir : ' libs' )
26
+ implementation fileTree(include : [' *.jar' ], dir : ' libs' )
27
27
compileOnly ' com.android.support:recyclerview-v7:28.0.0'
28
28
compileOnly ' com.android.support:support-v4:28.0.0'
29
29
}
@@ -51,11 +51,11 @@ artifacts {
51
51
// //gradlew clean build bintrayUpload -PbintrayUser=用户名 -PbintrayKey=apiKey -PdryRun=false
52
52
// //添加
53
53
// //添加
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