From ffaa7153331eeabff43339907c455756aa3fb368 Mon Sep 17 00:00:00 2001 From: sainw Date: Thu, 13 Feb 2025 18:31:18 +0630 Subject: [PATCH] add flutterfire plugin --- android/app/build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index a69c8d4..bdcc402 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -1,12 +1,15 @@ plugins { id "com.android.application" + // START: FlutterFire Configuration + id 'com.google.gms.google-services' + // END: FlutterFire Configuration id "kotlin-android" // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins. id "dev.flutter.flutter-gradle-plugin" } def keystoreProperties = new Properties() -def keystorePropertiesFile = rootProject.file('dev-key.properties') +def keystorePropertiesFile = rootProject.file('key.properties') if (keystorePropertiesFile.exists()) { keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) }