File tree Expand file tree Collapse file tree 1 file changed +4
-11
lines changed
Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -2,25 +2,18 @@ plugins {
22 id " com.android.application"
33 id " kotlin-android"
44 id " debug.flutter.flutter-gradle-plugin"
5+ id " com.google.gms.google-services"
6+ id " com.google.firebase.firebase-perf"
7+ id " com.google.firebase.crashlytics"
58}
69
7- apply plugin : ' com.google.gms.google-services'
8- apply plugin : ' com.google.firebase.firebase-perf'
9- apply plugin : ' com.google.firebase.crashlytics'
10-
11- def localProperties = new Properties ()
12- def localPropertiesFile = rootProject. file(' local.properties' )
13- if (localPropertiesFile. exists()) {
14- localPropertiesFile. withReader(' UTF-8' ) { reader ->
15- localProperties. load(reader)
16- }
17- }
1810
1911def debugStore = new Properties ()
2012def debugStoreFile = rootProject. file(' key.properties' )
2113if (debugStoreFile. exists()) {
2214 debugStore. load(new FileInputStream (debugStoreFile))
2315}
16+
2417def prodStore = new Properties ()
2518def prodStoreFile = rootProject. file(' key.properties' )
2619if (prodStoreFile. exists()) {
You can’t perform that action at this time.
0 commit comments