Skip to content

Commit 1b03483

Browse files
author
zhujiang2
committed
更新依赖
1 parent f6ba7a4 commit 1b03483

File tree

6 files changed

+29
-20
lines changed

6 files changed

+29
-20
lines changed

.idea/misc.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ dependencies {
5757
implementation des.kotlinVersion
5858
implementation des.coreKtx
5959
implementation des.appcompat
60-
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
60+
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
6161
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
6262
implementation 'com.youth.banner:banner:2.1.0'
6363

@@ -67,13 +67,13 @@ dependencies {
6767
//implementation 'com.squareup.leakcanary:leakcanary-android:1.5.4'
6868

6969
// hilt
70-
implementation 'com.google.dagger:hilt-android:2.37'
71-
kapt 'com.google.dagger:hilt-android-compiler:2.37'
70+
implementation 'com.google.dagger:hilt-android:2.40.5'
71+
kapt 'com.google.dagger:hilt-android-compiler:2.40.5'
7272
implementation 'androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-alpha03'
7373
kapt 'androidx.hilt:hilt-compiler:1.0.0'
7474

7575
// 异常上报
76-
implementation 'com.tencent.bugly:crashreport:3.3.92'
76+
implementation 'com.tencent.bugly:crashreport:4.0.0'
7777
implementation files('libs/tbs_sdk_thirdapp_v4.3.0.67_43967_sharewithdownloadwithfile_withoutGame_obfs_20200923_120452.jar')
7878
implementation project(path: ':floating')
7979
testImplementation des.junit

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply from: "config.gradle"
33

44
buildscript {
55
ext {
6-
kotlin_version = '1.5.21'
6+
kotlin_version = '1.6.0'
77
}
88
repositories {
99
google()
@@ -13,7 +13,7 @@ buildscript {
1313
maven { url 'https://jitpack.io' }
1414
}
1515
dependencies {
16-
classpath 'com.android.tools.build:gradle:7.0.0'
16+
classpath 'com.android.tools.build:gradle:7.0.3'
1717
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1818
classpath 'com.tencent.mm:AndResGuard-gradle-plugin:1.2.20'
1919
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.36'

config.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ ext {
1111
]
1212

1313
des = [
14-
kotlinVersion: "org.jetbrains.kotlin:kotlin-stdlib:1.5.21",
15-
coreKtx : 'androidx.core:core-ktx:1.5.0',
16-
appcompat : 'androidx.appcompat:appcompat:1.3.0',
14+
kotlinVersion: "org.jetbrains.kotlin:kotlin-stdlib:1.6.0",
15+
coreKtx : 'androidx.core:core-ktx:1.6.0',
16+
appcompat : 'androidx.appcompat:appcompat:1.3.1',
1717
junit : 'junit:junit:4.13.2',
18-
extJunit : 'androidx.test.ext:junit:1.1.2',
19-
espressoCore : 'androidx.test.espresso:espresso-core:3.3.0',
18+
extJunit : 'androidx.test.ext:junit:1.1.3',
19+
espressoCore : 'androidx.test.espresso:espresso-core:3.4.0',
2020
]
2121

2222
sign = [

core/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,33 +52,33 @@ dependencies {
5252

5353
api 'androidx.recyclerview:recyclerview:1.2.1'
5454
api "androidx.lifecycle:lifecycle-extensions:2.2.0"
55-
api "androidx.lifecycle:lifecycle-livedata-ktx:2.3.1"
55+
api "androidx.lifecycle:lifecycle-livedata-ktx:2.4.0"
5656
api "androidx.lifecycle:lifecycle-runtime-ktx:2.3.1"
57-
api "androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1"
57+
api "androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0"
5858
api 'com.google.android.material:material:1.4.0'
5959
api 'com.squareup.retrofit2:retrofit:2.9.0'
6060
api 'com.squareup.retrofit2:converter-gson:2.9.0'
6161

6262
api "com.android.support:design:28.0.0"
6363
api "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1"
64-
api 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.1-native-mt'
65-
api "androidx.datastore:datastore-preferences:1.0.0-beta02"
64+
api 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2'
65+
api 'androidx.datastore:datastore-preferences:1.0.0'
6666

6767
api 'com.scwang.smart:refresh-layout-kernel:2.0.1' //核心必须依赖
6868
api 'com.scwang.smart:refresh-header-classics:2.0.1' //经典刷新头
6969
//api 'com.scwang.smart:refresh-header-material:2.0.1' //谷歌刷新头
7070
api 'com.scwang.smart:refresh-footer-classics:2.0.1' //经典加载
7171

7272
// 安卓Utils
73-
api 'com.blankj:utilcode:1.30.0'
73+
api 'com.blankj:utilcode:1.30.7'
7474
// 图片网络框架
7575
api 'com.github.bumptech.glide:glide:4.12.0'
7676
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
7777

7878

79-
def activity_version = "1.2.3"
79+
def activity_version = "1.4.0"
8080
api "androidx.activity:activity-ktx:$activity_version"
81-
def fragment_version = "1.3.5"
81+
def fragment_version = "1.3.6"
8282
api "androidx.fragment:fragment-ktx:$fragment_version"
8383

8484

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sun Jul 18 10:12:12 CST 2021
1+
#Thu Dec 09 20:19:04 CST 2021
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)