Update dependencies

This commit is contained in:
世界 2021-09-21 08:21:16 +08:00
parent 7cc94fa9ea
commit 8c0def7556
No known key found for this signature in database
GPG Key ID: CD109927C34A63C4
2 changed files with 13 additions and 13 deletions

View File

@ -385,7 +385,7 @@ android {
def okHttpVersion = "5.0.0-alpha.2"
def fcmVersion = "21.1.0"
def crashlyticsVersion = "18.2.0"
def playCoreVersion = "1.10.0"
def playCoreVersion = "1.10.1"
dependencies {
@ -406,19 +406,19 @@ dependencies {
//noinspection GradleDependency
implementation "com.googlecode.mp4parser:isoparser:1.0.6"
implementation "com.google.code.gson:gson:2.8.7"
implementation "com.google.code.gson:gson:2.8.8"
implementation "org.osmdroid:osmdroid-android:6.1.10"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.20"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.1-native-mt"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.30"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2"
implementation "com.squareup.okhttp3:okhttp:$okHttpVersion"
implementation 'dnsjava:dnsjava:3.4.0'
implementation 'dnsjava:dnsjava:3.4.1'
implementation "org.dizitart:nitrite:3.4.3"
implementation "cn.hutool:hutool-core:5.7.5"
implementation "cn.hutool:hutool-crypto:5.7.5"
implementation "cn.hutool:hutool-core:5.7.13"
implementation "cn.hutool:hutool-crypto:5.7.13"
implementation 'cn.hutool:hutool-http:5.7.5'
implementation "com.jakewharton:process-phoenix:2.0.0"
implementation "com.jakewharton:process-phoenix:2.1.2"
compileOnly 'org.yaml:snakeyaml:1.29'
fullImplementation 'org.yaml:snakeyaml:1.29'

View File

@ -7,13 +7,13 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20'
classpath 'com.google.gms:google-services:4.3.8'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30'
classpath 'com.google.gms:google-services:4.3.10'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.1'
classpath 'gradle.plugin.org.mozilla.rust-android-gradle:plugin:0.8.3'
//noinspection GradleDependency
classpath "com.github.triplet.gradle:play-publisher:3.4.0-agp4.2"
classpath 'cn.hutool:hutool-core:5.7.5'
classpath 'cn.hutool:hutool-core:5.7.13'
}
}
@ -26,7 +26,7 @@ static String detectNdkVersion() {
if (androidHome == null) return version
if (new File(androidHome, "ndk/$version").isDirectory()) return version
def versionFile = new File(androidHome,"ndk-bundle/source.properties")
def versionFile = new File(androidHome, "ndk-bundle/source.properties")
if (!versionFile.isFile()) return version
@ -34,7 +34,7 @@ static String detectNdkVersion() {
versionProperties.load(versionFile.newDataInputStream())
return versionProperties.getProperty("Pkg.Revision",version)
return versionProperties.getProperty("Pkg.Revision", version)
}