mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2025-02-21 09:13:16 +03:00
Chore: update dependencies
This commit is contained in:
parent
e6859ff56d
commit
5c3ab5470a
@ -1 +1 @@
|
|||||||
Subproject commit 7cd9cc6d19c81342cb47afd63113a1eff97ace08
|
Subproject commit c0174c15bc603413cff6c3c4a7e73f73ec420168
|
@ -25,7 +25,7 @@ func init() {
|
|||||||
defer log.UnSubscribe(sub)
|
defer log.UnSubscribe(sub)
|
||||||
|
|
||||||
for item := range sub {
|
for item := range sub {
|
||||||
msg := item.(*log.Event)
|
msg := item.(log.Event)
|
||||||
|
|
||||||
cPayload := C.CString(msg.Payload)
|
cPayload := C.CString(msg.Payload)
|
||||||
|
|
||||||
@ -52,7 +52,7 @@ func subscribeLogcat(remote unsafe.Pointer) {
|
|||||||
defer log.UnSubscribe(sub)
|
defer log.UnSubscribe(sub)
|
||||||
|
|
||||||
for i := range sub {
|
for i := range sub {
|
||||||
msg, ok := i.(*log.Event)
|
msg, ok := i.(log.Event)
|
||||||
if !ok {
|
if !ok {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,6 +1,6 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionSha256Sum=a9a7b7baba105f6557c9dcf9c3c6e8f7e57e6b49889c5f1d133f015d0727e4be
|
distributionSha256Sum=e6d864e3b5bc05cc62041842b306383fc1fefcec359e70cebb1d470a6094ca82
|
@ -18,7 +18,7 @@ pluginManagement {
|
|||||||
dependencyResolutionManagement {
|
dependencyResolutionManagement {
|
||||||
versionCatalogs {
|
versionCatalogs {
|
||||||
create("libs") {
|
create("libs") {
|
||||||
val agp = "7.1.3"
|
val agp = "7.2.0"
|
||||||
val kotlin = "1.6.21"
|
val kotlin = "1.6.21"
|
||||||
val ksp = "$kotlin-1.0.5"
|
val ksp = "$kotlin-1.0.5"
|
||||||
val golang = "1.0.4"
|
val golang = "1.0.4"
|
||||||
@ -30,7 +30,7 @@ dependencyResolutionManagement {
|
|||||||
val coordinator = "1.2.0"
|
val coordinator = "1.2.0"
|
||||||
val recyclerview = "1.2.1"
|
val recyclerview = "1.2.1"
|
||||||
val viewpager = "1.0.0"
|
val viewpager = "1.0.0"
|
||||||
val material = "1.5.0"
|
val material = "1.6.0"
|
||||||
val appcenter = "4.4.3"
|
val appcenter = "4.4.3"
|
||||||
val serialization = "1.3.2"
|
val serialization = "1.3.2"
|
||||||
val kaidl = "1.15"
|
val kaidl = "1.15"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user