From cb937bf376cb77ee7327bc83e0f35d1aeddae864 Mon Sep 17 00:00:00 2001 From: Musaddiq Ahmed Khan <37911054+Musaddiq625@users.noreply.github.com> Date: Sat, 4 Oct 2025 02:40:21 +0500 Subject: [PATCH] Fix: Add namespace to build.gradle to resolve configuration error Fixed issue where the Android build would fail due to missing namespace definition --- android/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/android/build.gradle b/android/build.gradle index 909ce0a..99d78e3 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -26,6 +26,7 @@ apply plugin: 'kotlin-android' android { compileSdkVersion 33 + namespace 'com.codingdevs.thermal_printer' compileOptions { sourceCompatibility JavaVersion.VERSION_1_8