From 4f493496790c05a131b5a8e8e8788766fdaeb001 Mon Sep 17 00:00:00 2001 From: Teodor Ciuraru Date: Wed, 22 Oct 2025 18:41:29 +0300 Subject: [PATCH] fix(flutter): update Android NDK version to 27.0.12077973 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates the Flutter quickstart Android NDK version from flutter.ndkVersion (26.x) to 27.0.12077973 to match the requirement of ditto_live 4.12.3 and its plugin dependencies. This fixes the build failure: - ditto_live requires Android NDK 27.0.12077973 - path_provider_android requires Android NDK 27.0.12077973 - permission_handler_android requires Android NDK 27.0.12077973 NDK versions are backward compatible, so using 27.x is safe. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- flutter_app/android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter_app/android/app/build.gradle b/flutter_app/android/app/build.gradle index c9d2a0839..3d31f1fa8 100644 --- a/flutter_app/android/app/build.gradle +++ b/flutter_app/android/app/build.gradle @@ -18,7 +18,7 @@ if (localPropertiesFile.exists()) { android { namespace "com.example.flutter_quickstart" compileSdkVersion flutter.compileSdkVersion - ndkVersion flutter.ndkVersion + ndkVersion "27.0.12077973" compileOptions { sourceCompatibility = JavaVersion.VERSION_11