Skip to content

Commit bfca549

Browse files
committed
Fix YT 20.33.38 LithoFilter hook fails by Update dexkit
LuckyPray/DexKit@9a35f6b
1 parent b8c1e70 commit bfca549

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

app/build.gradle.kts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ android {
7878
signingConfig = signingConfigs.getByName("release")
7979
}
8080
}
81+
lint {
82+
checkReleaseBuilds = false
83+
}
8184
compileOptions {
8285
sourceCompatibility = JavaVersion.VERSION_17
8386
targetCompatibility = JavaVersion.VERSION_17
@@ -106,7 +109,9 @@ android {
106109
}
107110

108111
dependencies {
109-
implementation(libs.dexkit)
112+
// implementation(libs.dexkit)
113+
implementation(group = "", name = "dexkit-android", ext = "aar")
114+
implementation("com.google.flatbuffers:flatbuffers-java:23.5.26") // dexkit dependency
110115
implementation(libs.annotation)
111116
implementation(libs.gson)
112117
implementation(libs.kotlinx.coroutines.android)

libs/dexkit-android-sources.jar

392 KB
Binary file not shown.

libs/dexkit-android.aar

1.1 MB
Binary file not shown.

settings.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ pluginManagement {
1515
dependencyResolutionManagement {
1616
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
1717
repositories {
18+
flatDir {
19+
dirs("libs")
20+
}
1821
google()
1922
mavenCentral()
2023
maven(url = "https://api.xposed.info")

0 commit comments

Comments
 (0)