Skip to content

Commit 57f6bff

Browse files
committed
配置依赖
1 parent 0eb34ee commit 57f6bff

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ buildscript {
99
classpath "com.android.tools.build:gradle:4.1.2"
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111

12-
// NOTE: Do not place your application dependencies here; they belong
13-
// in the individual module build.gradle files
12+
classpath 'com.github.panpf.bintray-publish:bintray-publish:1.0.0'
1413
}
1514
}
1615

library/build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
plugins {
22
id 'com.android.library'
33
id 'kotlin-android'
4+
id 'com.github.panpf.bintray-publish'
5+
}
6+
publish {
7+
userOrg = 'yanghongwei'
8+
groupId = 'com.yhw.library'
9+
artifactId = 'fastadapter'
10+
publishVersion = '0.0.1'
11+
repoName="FastAdapter"
12+
desc = 'A fast adapter code library, suitable for RecyclerView, ListView, GridView, ViewPager, etc'
13+
website = 'https://github.com/LuckyCodeer/FastAdapter'
414
}
515

616
android {

0 commit comments

Comments
 (0)