From 8f6cde05b3ea3f30de745ac93cd264df2920a8f9 Mon Sep 17 00:00:00 2001 From: MohitMaliFtechiz Date: Sun, 26 Nov 2023 14:33:52 +0530 Subject: [PATCH] Fixed, package name and R classes not found in custom module --- custom/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/build.gradle.kts b/custom/build.gradle.kts index c2b921dab..91e0fca67 100644 --- a/custom/build.gradle.kts +++ b/custom/build.gradle.kts @@ -33,7 +33,7 @@ android { // Added namespace for every custom app to make it compatible with gradle 8.0 and above. // This is now specified in the Gradle configuration instead of declaring // it directly in the AndroidManifest file. - namespace = "org.kiwix.kiwixcustom$name" + namespace = "org.kiwix.kiwixmobile.custom" File("$projectDir/src", "$name/$name.zim").let { createDownloadTask(it) createPublishApkWithExpansionTask(it, applicationVariants)