Skip to content

Commit

Permalink
生成1.2.48
Browse files Browse the repository at this point in the history
  • Loading branch information
qiushui95 committed Oct 24, 2022
1 parent 644aead commit 850195d
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 25 deletions.
12 changes: 6 additions & 6 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,10 +273,10 @@
>>implementation("me.laoyuyu.aria:sftp:3.8.16")
>[Epoxy](https://github.com/airbnb/epoxy)
>>kapt("com.airbnb.android:epoxy-processor:5.0.0")
>>implementation("com.airbnb.android:epoxy-compose:5.0.0")
>>implementation("com.airbnb.android:epoxy:5.0.0")
>>implementation("com.airbnb.android:epoxy-glide-preloading:5.0.0")
>>kapt("com.airbnb.android:epoxy-processor:5.1.0")
>>implementation("com.airbnb.android:epoxy-compose:5.1.0")
>>implementation("com.airbnb.android:epoxy:5.1.0")
>>implementation("com.airbnb.android:epoxy-glide-preloading:5.1.0")
>[Fetch](https://github.com/tonyofrancis/Fetch)(下载框架)
>>implementation("androidx.tonyodev.fetch2:xfetch2:3.1.6")
Expand Down Expand Up @@ -375,8 +375,8 @@
>>testImplementation("androidx.room:room-testing:2.4.3")
>[S3](https://github.com/aws-amplify/aws-sdk-android)(亚马逊云存储)
>>implementation("com.amazonaws:aws-android-sdk-mobile-client:2.54.0")
>>implementation("com.amazonaws:aws-android-sdk-s3:2.54.0")
>>implementation("com.amazonaws:aws-android-sdk-mobile-client:2.55.0")
>>implementation("com.amazonaws:aws-android-sdk-s3:2.55.0")
>[Stetho](https://github.com/facebook/stetho)(调试工具)
>>implementation("com.facebook.stetho:stetho:1.6.0")
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/plugins.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ rootProject.extra.apply {
set("navigation", "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.2")
set("rocketX", "io.github.trycatchx:rocketx:1.1.1")
set("vasDolly", "com.tencent.vasdolly:plugin:3.0.4")
set("libDependency", "com.github.qiushui95:LibDependency:1.2.47")
set("libDependency", "com.github.qiushui95:LibDependency:1.2.48")
}
12 changes: 6 additions & 6 deletions buildSrc/src/main/kotlin/son/ysy/dependencies/LibDependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -642,16 +642,16 @@ sealed class LibDependencies(
* https://github.com/airbnb/epoxy
*/
interface Epoxy {
object Compiler : LibDependencies("com.airbnb.android", "epoxy-processor", "5.0.0",
object Compiler : LibDependencies("com.airbnb.android", "epoxy-processor", "5.1.0",
DependencyMethod.Kapt)

object Compose : LibDependencies("com.airbnb.android", "epoxy-compose", "5.0.0",
object Compose : LibDependencies("com.airbnb.android", "epoxy-compose", "5.1.0",
DependencyMethod.Implementation)

object Core : LibDependencies("com.airbnb.android", "epoxy", "5.0.0",
object Core : LibDependencies("com.airbnb.android", "epoxy", "5.1.0",
DependencyMethod.Implementation)

object Glide : LibDependencies("com.airbnb.android", "epoxy-glide-preloading", "5.0.0",
object Glide : LibDependencies("com.airbnb.android", "epoxy-glide-preloading", "5.1.0",
DependencyMethod.Implementation)
}

Expand Down Expand Up @@ -943,9 +943,9 @@ sealed class LibDependencies(
*/
interface S3 {
object Client : LibDependencies("com.amazonaws", "aws-android-sdk-mobile-client",
"2.54.0", DependencyMethod.Implementation)
"2.55.0", DependencyMethod.Implementation)

object Core : LibDependencies("com.amazonaws", "aws-android-sdk-s3", "2.54.0",
object Core : LibDependencies("com.amazonaws", "aws-android-sdk-s3", "2.55.0",
DependencyMethod.Implementation)
}

Expand Down
12 changes: 6 additions & 6 deletions define/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ dependencies {
implementation("me.laoyuyu.aria:m3u8:3.8.16")
implementation("me.laoyuyu.aria:sftp:3.8.16")

kapt("com.airbnb.android:epoxy-processor:5.0.0")
implementation("com.airbnb.android:epoxy-compose:5.0.0")
implementation("com.airbnb.android:epoxy:5.0.0")
implementation("com.airbnb.android:epoxy-glide-preloading:5.0.0")
kapt("com.airbnb.android:epoxy-processor:5.1.0")
implementation("com.airbnb.android:epoxy-compose:5.1.0")
implementation("com.airbnb.android:epoxy:5.1.0")
implementation("com.airbnb.android:epoxy-glide-preloading:5.1.0")

implementation("androidx.tonyodev.fetch2:xfetch2:3.1.6")
implementation("androidx.tonyodev.fetch2okhttp:xfetch2okhttp:3.1.6")
Expand Down Expand Up @@ -165,8 +165,8 @@ dependencies {
implementation("androidx.room:room-ktx:2.4.3")
testImplementation("androidx.room:room-testing:2.4.3")

implementation("com.amazonaws:aws-android-sdk-mobile-client:2.54.0")
implementation("com.amazonaws:aws-android-sdk-s3:2.54.0")
implementation("com.amazonaws:aws-android-sdk-mobile-client:2.55.0")
implementation("com.amazonaws:aws-android-sdk-s3:2.55.0")

implementation("com.facebook.stetho:stetho:1.6.0")
implementation("com.facebook.stetho:stetho-okhttp3:1.6.0")
Expand Down
12 changes: 6 additions & 6 deletions lib/src/main/kotlin/son/ysy/dependencies/LibDependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -642,16 +642,16 @@ sealed class LibDependencies(
* https://github.com/airbnb/epoxy
*/
interface Epoxy {
object Compiler : LibDependencies("com.airbnb.android", "epoxy-processor", "5.0.0",
object Compiler : LibDependencies("com.airbnb.android", "epoxy-processor", "5.1.0",
DependencyMethod.Kapt)

object Compose : LibDependencies("com.airbnb.android", "epoxy-compose", "5.0.0",
object Compose : LibDependencies("com.airbnb.android", "epoxy-compose", "5.1.0",
DependencyMethod.Implementation)

object Core : LibDependencies("com.airbnb.android", "epoxy", "5.0.0",
object Core : LibDependencies("com.airbnb.android", "epoxy", "5.1.0",
DependencyMethod.Implementation)

object Glide : LibDependencies("com.airbnb.android", "epoxy-glide-preloading", "5.0.0",
object Glide : LibDependencies("com.airbnb.android", "epoxy-glide-preloading", "5.1.0",
DependencyMethod.Implementation)
}

Expand Down Expand Up @@ -943,9 +943,9 @@ sealed class LibDependencies(
*/
interface S3 {
object Client : LibDependencies("com.amazonaws", "aws-android-sdk-mobile-client",
"2.54.0", DependencyMethod.Implementation)
"2.55.0", DependencyMethod.Implementation)

object Core : LibDependencies("com.amazonaws", "aws-android-sdk-s3", "2.54.0",
object Core : LibDependencies("com.amazonaws", "aws-android-sdk-s3", "2.55.0",
DependencyMethod.Implementation)
}

Expand Down

0 comments on commit 850195d

Please # to comment.