From 4f35e06ac4aad582d13d9343e15e08293063c729 Mon Sep 17 00:00:00 2001 From: ThePedroo Date: Mon, 9 Jun 2025 14:36:07 -0300 Subject: [PATCH] fix: gradle related warnings This commit fixes the warnings caused by using deprecated functions in ReZygisk building system. --- build.gradle.kts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 7699231..e2e1b49 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -38,19 +38,18 @@ val androidSourceCompatibility by extra(JavaVersion.VERSION_11) val androidTargetCompatibility by extra(JavaVersion.VERSION_11) tasks.register("Delete", Delete::class) { - delete(rootProject.buildDir) + delete(layout.buildDirectory.get()) } fun Project.configureBaseExtension() { extensions.findByType(LibraryExtension::class)?.run { - namespace = "icu.nullptr.zygisk.next" + namespace = "com.performanc.org.rezygisk" compileSdk = androidCompileSdkVersion ndkVersion = androidCompileNdkVersion buildToolsVersion = androidBuildToolsVersion defaultConfig { minSdk = androidMinSdkVersion - targetSdk = androidTargetSdkVersion } lint {