Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
YifePlayte committed May 11, 2024
1 parent f52d234 commit 3af870d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ android {
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
jvmTarget = JavaVersion.VERSION_17.toString()
}

externalNativeBuild {
Expand All @@ -85,8 +85,8 @@ android {

dependencies {
compileOnly("de.robv.android.xposed:api:82")
implementation("com.github.kyuubiran:EzXHelper:2.1.1")
implementation("com.github.kyuubiran:EzXHelper:2.1.2")
implementation("io.github.ranlee1:jpinyin:1.0.1")
implementation("org.luckypray:dexkit:2.0.0")
implementation("org.luckypray:dexkit:2.0.1")
implementation(project(":blockmiui"))
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import com.github.kyuubiran.ezxhelper.ObjectHelper.Companion.objectHelper
import com.github.kyuubiran.ezxhelper.ObjectUtils.invokeMethodBestMatch
import com.github.kyuubiran.ezxhelper.finders.MethodFinder.`-Static`.methodFinder
import com.yifeplayte.wommo.hook.hooks.BaseHook
import de.robv.android.xposed.callbacks.XCallback.PRIORITY_DEFAULT

@Suppress("unused")
object ShowNotificationHistoryAndLogEntry : BaseHook() {
Expand Down Expand Up @@ -49,11 +50,11 @@ object ShowNotificationHistoryAndLogEntry : BaseHook() {
}
runCatching {
loadClass("com.android.settings.NotificationControlCenterSettings").methodFinder()
.filterByName("onCreate").single().createHook(hook)
.filterByName("onCreate").single().createHook(PRIORITY_DEFAULT, hook)
}
runCatching {
loadClass("com.android.settings.NotificationStatusBarSettings").methodFinder()
.filterByName("onCreate").single().createHook(hook)
.filterByName("onCreate").single().createHook(PRIORITY_DEFAULT, hook)
}
}

Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id("com.android.application") version "8.3.0" apply false
id("com.android.library") version "8.3.0" apply false
id("org.jetbrains.kotlin.android") version "1.8.20" apply false
id("com.android.application") version "8.4.0" apply false
id("com.android.library") version "8.4.0" apply false
id("org.jetbrains.kotlin.android") version "1.9.22" apply false
}

tasks.register<Delete>("clean").configure {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Mar 14 19:40:19 CST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 3af870d

Please sign in to comment.