From 5c768d212156a6201eb008441035d18bcd1ed0f7 Mon Sep 17 00:00:00 2001 From: Pupil Date: Sat, 15 Feb 2020 00:25:59 +0900 Subject: [PATCH] Firebase enabled --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index e8be39e0..55a0df93 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -4,7 +4,7 @@ apply plugin: 'kotlin-kapt' apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlinx-serialization' -if (file("src/google-services.json").exists() && file("src/debug/google-services.json").exists()) { +if (file("google-services.json").exists() && file("src/debug/google-services.json").exists()) { logger.lifecycle("Firebase Enabled") apply plugin: 'com.google.gms.google-services' apply plugin: 'io.fabric' @@ -20,7 +20,7 @@ android { minSdkVersion 16 targetSdkVersion 29 versionCode 42 - versionName "4.6-beta1" + versionName "4.6-beta2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" multiDexEnabled true vectorDrawables.useSupportLibrary = true