Skip to content

Commit 0454d28

Browse files
committed
flutter create . && flutterfire configure
1 parent ea22ca6 commit 0454d28

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+2427
-8
lines changed

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ ios/Flutter/flutter_export_environment.sh
8181
.fvm/flutter_sdk
8282
.firebase/*.cache
8383
macos/Flutter/ephemeral/**
84-
lib/generated_plugin_registrant.dart
8584
**/GeneratedPluginRegistrant.*
8685

8786
# Copied from https://raw.githubusercontent.com/flutter/flutter/master/.gitignore
@@ -223,4 +222,4 @@ app.*.symbols
223222
!.vscode/settings.json
224223

225224
# FVM Version Cache
226-
.fvm/
225+
.fvm/

android/app/google-services.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@
7272
}
7373
]
7474
}
75-
}
75+
},
76+
"admob_app_id": "ca-app-pub-7906158617398863~7176992997"
7677
}
7778
],
7879
"configuration_version": "1"

lib/firebase_options.dart

+4-5
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,9 @@ class DefaultFirebaseOptions {
7373
projectId: 'flutter-catalog',
7474
databaseURL: 'https://flutter-catalog.firebaseio.com',
7575
storageBucket: 'flutter-catalog.appspot.com',
76-
androidClientId:
77-
'785184947614-jvcu7agpj6n6vvr5poal14otu8mjdl61.apps.googleusercontent.com',
78-
iosClientId:
79-
'785184947614-70ii5qm94fe28nmasjc9g864nh25l4m7.apps.googleusercontent.com',
76+
androidClientId: '785184947614-jvcu7agpj6n6vvr5poal14otu8mjdl61.apps.googleusercontent.com',
77+
iosClientId: '785184947614-70ii5qm94fe28nmasjc9g864nh25l4m7.apps.googleusercontent.com',
8078
iosBundleId: 'io.github.x-wei.flutter-catalog',
8179
);
82-
}
80+
81+
}

macos/.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Flutter-related
2+
**/Flutter/ephemeral/
3+
**/Pods/
4+
5+
# Xcode-related
6+
**/dgph
7+
**/xcuserdata/

macos/Flutter/Flutter-Debug.xcconfig

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#include "ephemeral/Flutter-Generated.xcconfig"
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#include "ephemeral/Flutter-Generated.xcconfig"

0 commit comments

Comments
 (0)