1
0
mirror of https://github.com/NekoX-Dev/NekoX.git synced 2024-11-23 03:26:08 +01:00

Update dependencies

This commit is contained in:
世界 2021-05-18 18:21:26 +08:00
parent 1f553870bf
commit c8b67f359c
No known key found for this signature in database
GPG Key ID: CD109927C34A63C4
2 changed files with 14 additions and 15 deletions

View File

@ -206,7 +206,7 @@ android {
multiDexEnabled true
zipAlignEnabled true;
signingConfig keystorePwd == null ? signingConfigs.debug : signingConfigs.release
ndk.debugSymbolLevel = 'FULL'
ndk.debugSymbolLevel = "FULL"
}
releaseNoGcm {
@ -384,13 +384,13 @@ android {
def okHttpVersion = "5.0.0-alpha.2"
def fcmVersion = "21.1.0"
def crashlyticsVersion = "17.4.1"
def crashlyticsVersion = "18.0.0"
def playCoreVersion = "1.10.0"
dependencies {
implementation "androidx.browser:browser:1.3.0"
implementation 'androidx.core:core-ktx:1.6.0-alpha03'
implementation "androidx.core:core-ktx:1.6.0-alpha03"
implementation "androidx.palette:palette-ktx:1.0.0"
implementation "androidx.viewpager:viewpager:1.0.0"
implementation "androidx.exifinterface:exifinterface:1.3.2"
@ -399,7 +399,7 @@ 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.13.0"
compileOnly "org.checkerframework:checker-compat-qual:2.5.5"
// don"t change this :)
@ -409,15 +409,15 @@ dependencies {
implementation "com.google.code.gson:gson:2.8.6"
implementation "org.osmdroid:osmdroid-android:6.1.10"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.0"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0-RC'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0"
implementation "com.squareup.okhttp3:okhttp:$okHttpVersion"
implementation "dnsjava:dnsjava:3.3.1"
implementation "org.dizitart:nitrite:3.4.3"
implementation "cn.hutool:hutool-core:5.6.4"
implementation "cn.hutool:hutool-crypto:5.6.4"
implementation "cn.hutool:hutool-http:5.6.4"
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 "com.jakewharton:process-phoenix:2.0.0"
compileOnly "org.yaml:snakeyaml:1.28"

View File

@ -1,19 +1,19 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
google()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
classpath 'com.android.tools.build:gradle:4.2.1'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0'
classpath 'com.google.gms:google-services:4.3.5'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.5.2'
classpath 'com.google.gms:google-services:4.3.8'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.6.1'
classpath 'gradle.plugin.org.mozilla.rust-android-gradle:plugin:0.8.3'
classpath 'com.github.triplet.gradle:play-publisher:3.0.0'
classpath 'cn.hutool:hutool-core:5.6.4'
//noinspection GradleDependency
classpath "com.github.triplet.gradle:play-publisher:3.4.0-agp4.2"
classpath 'cn.hutool:hutool-core:5.6.5'
}
}
@ -47,7 +47,6 @@ ext {
allprojects {
repositories {
// The order in which you list these repositories matter.
jcenter()
mavenCentral()
google()
}