1
0
mirror of https://github.com/NekoX-Dev/NekoX.git synced 2024-12-24 04:45:13 +01:00

upgrade dependencies

This commit is contained in:
luvletter2333 2021-07-27 02:27:01 +08:00
parent 01aedba9a8
commit 717581e722
No known key found for this signature in database
GPG Key ID: BFD68B892BECC1D8
2 changed files with 17 additions and 17 deletions

View File

@ -384,7 +384,7 @@ android {
def okHttpVersion = "5.0.0-alpha.2"
def fcmVersion = "21.1.0"
def crashlyticsVersion = "18.0.0"
def crashlyticsVersion = "18.2.0"
def playCoreVersion = "1.10.0"
dependencies {
@ -399,29 +399,29 @@ dependencies {
implementation "androidx.multidex:multidex:2.0.1"
implementation "androidx.sharetarget:sharetarget:1.1.0"
compileOnly "org.checkerframework:checker-qual:3.13.0"
compileOnly "org.checkerframework:checker-qual:3.16.0"
compileOnly "org.checkerframework:checker-compat-qual:2.5.5"
// don"t change this :)
//noinspection GradleDependency
implementation "com.googlecode.mp4parser:isoparser:1.0.6"
implementation 'com.googlecode.mp4parser:isoparser:1.1.22'
implementation "com.google.code.gson:gson:2.8.7"
implementation "org.osmdroid:osmdroid-android:6.1.10"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.10"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.20"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.1-native-mt"
implementation "com.squareup.okhttp3:okhttp:$okHttpVersion"
implementation "dnsjava:dnsjava:3.3.1"
implementation 'dnsjava:dnsjava:3.4.0'
implementation "org.dizitart:nitrite:3.4.3"
implementation "cn.hutool:hutool-core:5.6.5"
implementation "cn.hutool:hutool-crypto:5.6.5"
implementation "cn.hutool:hutool-http:5.6.5"
implementation "cn.hutool:hutool-core:5.7.5"
implementation "cn.hutool:hutool-crypto:5.7.5"
implementation 'cn.hutool:hutool-http:5.7.5'
implementation "com.jakewharton:process-phoenix:2.0.0"
compileOnly "org.yaml:snakeyaml:1.28"
fullImplementation "org.yaml:snakeyaml:1.28"
compileOnly 'org.yaml:snakeyaml:1.29'
fullImplementation 'org.yaml:snakeyaml:1.29'
implementation project(":openpgp-api")
@ -439,8 +439,8 @@ dependencies {
releaseImplementation "com.google.android.play:core:$playCoreVersion"
testImplementation "junit:junit:4.13.2"
testImplementation "androidx.test:core:1.3.0"
testImplementation "org.robolectric:robolectric:4.5.1"
testImplementation 'androidx.test:core:1.4.0'
testImplementation 'org.robolectric:robolectric:4.6.1'
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:1.1.5"

View File

@ -6,14 +6,14 @@ buildscript {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10'
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 'com.google.firebase:firebase-crashlytics-gradle:2.6.1'
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.6.5'
classpath 'cn.hutool:hutool-core:5.7.5'
}
}