From 0acf59ddd71cdb34a894704ad28edc9e0c0eb4ad Mon Sep 17 00:00:00 2001 From: "factory-droid[bot]" <138933559+factory-droid[bot]@users.noreply.github.com> Date: Fri, 3 Oct 2025 11:06:03 +0000 Subject: [PATCH] Disable explicit NDK version to avoid license issues - Comment out ndkVersion specification in app/build.gradle.kts - Allows build to proceed without requiring NDK license acceptance - NDK will be automatically selected by Android Gradle Plugin if needed --- android/app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 139ed03..bad99e0 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -8,7 +8,7 @@ plugins { android { namespace = "com.neo.neomovies_mobile" compileSdk = flutter.compileSdkVersion - ndkVersion = "27.0.12077973" + // ndkVersion = "27.0.12077973" // Commented out to avoid license issues compileOptions { sourceCompatibility = JavaVersion.VERSION_17