Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-TSNG committed Oct 15, 2022
1 parent b2bd9a4 commit d5e0046
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 20 deletions.
16 changes: 8 additions & 8 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ fun afterEval() = android.applicationVariants.forEach { variant ->

val outSrcDir = file("$buildDir/generated/source/signInfo/${variantLowered}")
val outSrc = file("$outSrcDir/com/tsng/hidemyapplist/Magic.java")
val signInfoTask = task("generate${variantCapped}SignInfo") {
val signInfoTask = tasks.register("generate${variantCapped}SignInfo") {
dependsOn("validateSigning${variantCapped}")
outputs.file(outSrc)
doLast {
Expand All @@ -100,7 +100,7 @@ fun afterEval() = android.applicationVariants.forEach { variant ->
}
}
}
variant.registerJavaGeneratingTask(signInfoTask, arrayListOf(outSrcDir))
variant.registerJavaGeneratingTask(signInfoTask, outSrcDir)

val kotlinCompileTask = tasks.findByName("compile${variantCapped}Kotlin") as KotlinCompile
kotlinCompileTask.dependsOn(signInfoTask)
Expand Down Expand Up @@ -134,21 +134,21 @@ dependencies {
implementation("androidx.navigation:navigation-ui-ktx:2.5.2")
implementation("androidx.preference:preference-ktx:1.2.0")
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
implementation("com.drakeet.about:about:2.5.1")
implementation("com.drakeet.about:about:2.5.2")
implementation("com.drakeet.multitype:multitype:4.3.0")
implementation("com.github.kirich1409:viewbindingpropertydelegate:1.5.6")
implementation("com.github.liujingxing.rxhttp:rxhttp:$rxhttpVersion")
implementation("com.github.liujingxing.rxhttp:converter-serialization:$rxhttpVersion")
implementation("com.github.topjohnwu.libsu:core:5.0.2")
implementation("com.google.android.material:material:1.6.1")
implementation("com.google.android.gms:play-services-ads:21.2.0")
implementation("com.google.firebase:firebase-analytics-ktx:21.1.1")
implementation("com.google.android.gms:play-services-ads:21.3.0")
implementation("com.google.firebase:firebase-analytics-ktx:21.2.0")
implementation("com.squareup.okhttp3:okhttp:4.10.0")
implementation("dev.rikka.hidden:compat:3.2.0")
implementation("dev.rikka.hidden:compat:3.4.2")
implementation("dev.rikka.rikkax.material:material:2.5.1")
implementation("dev.rikka.rikkax.material:material-preference:2.0.0")
implementation("me.zhanghai.android.appiconloader:appiconloader:1.4.0")
compileOnly("dev.rikka.hidden:stub:3.2.0")
implementation("me.zhanghai.android.appiconloader:appiconloader:1.5.0")
compileOnly("dev.rikka.hidden:stub:3.4.2")
ksp("com.github.liujingxing.rxhttp:rxhttp-compiler:$rxhttpVersion")
}

Expand Down
8 changes: 5 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ buildscript {
mavenCentral()
}
dependencies {
classpath(kotlin("gradle-plugin", version = "1.7.10"))
classpath(kotlin("gradle-plugin", version = "1.7.20"))
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.5.2")
classpath("com.android.tools.build:gradle:7.2.2")
classpath("com.google.gms:google-services:4.3.13")
classpath("com.android.tools.build:gradle:7.3.1")
classpath("com.google.gms:google-services:4.3.14")
}
}

Expand All @@ -34,6 +34,7 @@ fun String.execute(currentWorkingDir: File = file("./")): String {

val minSdkVer by extra(24)
val targetSdkVer by extra(33)
val buildToolsVer by extra("32.0.0")

val appVerName by extra("3.0.5-Beta")
val serviceVerCode by extra(89)
Expand All @@ -56,6 +57,7 @@ tasks.register("clean", Delete::class) {
fun Project.configureBaseExtension() {
extensions.findByType<BaseExtension>()?.run {
compileSdkVersion(targetSdkVer)
buildToolsVersion = buildToolsVer

defaultConfig {
minSdk = minSdkVer
Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ android {
}

dependencies {
api("org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0")
api("org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1")
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ android.nonTransitiveRClass=true
android.enableR8.fullMode=true
android.useAndroidX=true

agpVersion=7.2.2
agpVersion=7.3.1
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
6 changes: 3 additions & 3 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ pluginManagement {
plugins {
id("com.android.application") version agpVersion
id("com.android.library") version agpVersion
id("com.google.devtools.ksp") version "1.7.10-1.0.6"
id("com.google.devtools.ksp") version "1.7.20-1.0.7"
id("androidx.navigation.safeargs") version "2.5.0"
id("dev.rikka.tools.autoresconfig") version "1.2.1"
id("dev.rikka.tools.materialthemebuilder") version "1.3.3"
id("dev.rikka.tools.refine") version "3.1.1"
id("org.jetbrains.kotlin.android") version "1.7.0"
kotlin("plugin.serialization") version "1.7.0"
id("org.jetbrains.kotlin.android") version "1.7.20"
kotlin("plugin.serialization") version "1.7.20"
}
}

Expand Down
6 changes: 3 additions & 3 deletions xposed/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ android {
dependencies {
implementation(projects.common)

implementation("com.github.kyuubiran:EzXHelper:1.0.1")
implementation("dev.rikka.hidden:compat:3.2.0")
implementation("com.github.kyuubiran:EzXHelper:1.0.3")
implementation("dev.rikka.hidden:compat:3.4.2")
compileOnly("de.robv.android.xposed:api:82")
compileOnly("dev.rikka.hidden:stub:3.2.0")
compileOnly("dev.rikka.hidden:stub:3.4.2")
}

0 comments on commit d5e0046

Please sign in to comment.