From 26b593f282044008c4086167f55990a9fa0a3b4c Mon Sep 17 00:00:00 2001 From: Muhammad Zeeshan Date: Fri, 20 Jun 2025 12:07:11 +0500 Subject: [PATCH] Fix: Add namespace for AGP 8.0 and above compatibility Following issue fixed: Namespace not specified. Specify a namespace in the module's build file. --- android/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 4e9e193..3815104 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -32,6 +32,7 @@ rootProject.allprojects { apply plugin: 'com.android.library' android { + namespace 'com.vladih.computer_vision.flutter_vision' compileSdkVersion 31 compileOptions { @@ -63,4 +64,4 @@ dependencies{ implementation 'org.tensorflow:tensorflow-lite-support:0.4.3' implementation 'org.tensorflow:tensorflow-lite-metadata:0.4.3' implementation 'org.tensorflow:tensorflow-lite-select-tf-ops:2.11.0' -} \ No newline at end of file +}