Skip to content

Commit

Permalink
将implementation改为api让jitpack的pom打包成compile类型
Browse files Browse the repository at this point in the history
  • Loading branch information
weimingjue committed Mar 29, 2024
1 parent 6cac136 commit 25a082f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions adapters/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ android {
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.recyclerview:recyclerview:1.3.1'
implementation 'com.google.android.material:material:1.9.0'
api fileTree(dir: 'libs', include: ['*.jar'])
api 'androidx.recyclerview:recyclerview:1.3.1'
api 'com.google.android.material:material:1.9.0'
//谷歌更强大的浮动布局
implementation 'com.google.android:flexbox:2.0.1'
api 'com.google.android:flexbox:2.0.1'

implementation "androidx.core:core-ktx:1.10.1"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
api "androidx.core:core-ktx:1.10.1"
api "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}

0 comments on commit 25a082f

Please sign in to comment.