From 447ee39cbd277b459d9ae7062b4a4716828d8622 Mon Sep 17 00:00:00 2001 From: Inex Code Date: Sun, 15 Dec 2024 20:56:42 +0300 Subject: [PATCH] fix: Gradle issues --- android/app/build.gradle | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 4dc3f7f5..0d530216 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -27,7 +27,7 @@ if (flutterVersionName == null) { android { namespace 'org.selfprivacy.app' compileSdkVersion flutter.compileSdkVersion - ndkVersion flutter.ndkVersion + ndkVersion = "25.1.8937393" sourceSets { main.java.srcDirs += 'src/main/kotlin' @@ -96,5 +96,8 @@ flutter { source '../..' } -dependencies {} +dependencies { + implementation 'com.google.errorprone:error_prone_annotations:2.36.0' // required by flutter_secure_storage + implementation 'com.github.spotbugs:spotbugs-annotations:4.8.6' // required by flutter_secure_storage +}