Skip to content

Commit

Permalink
flutter create . && flutterfire configure
Browse files Browse the repository at this point in the history
  • Loading branch information
X-Wei committed Jun 9, 2024
1 parent ea22ca6 commit 0454d28
Show file tree
Hide file tree
Showing 46 changed files with 2,427 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ ios/Flutter/flutter_export_environment.sh
.fvm/flutter_sdk
.firebase/*.cache
macos/Flutter/ephemeral/**
lib/generated_plugin_registrant.dart
**/GeneratedPluginRegistrant.*

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

# FVM Version Cache
.fvm/
.fvm/
3 changes: 2 additions & 1 deletion android/app/google-services.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@
}
]
}
}
},
"admob_app_id": "ca-app-pub-7906158617398863~7176992997"
}
],
"configuration_version": "1"
Expand Down
9 changes: 4 additions & 5 deletions lib/firebase_options.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,9 @@ class DefaultFirebaseOptions {
projectId: 'flutter-catalog',
databaseURL: 'https://flutter-catalog.firebaseio.com',
storageBucket: 'flutter-catalog.appspot.com',
androidClientId:
'785184947614-jvcu7agpj6n6vvr5poal14otu8mjdl61.apps.googleusercontent.com',
iosClientId:
'785184947614-70ii5qm94fe28nmasjc9g864nh25l4m7.apps.googleusercontent.com',
androidClientId: '785184947614-jvcu7agpj6n6vvr5poal14otu8mjdl61.apps.googleusercontent.com',
iosClientId: '785184947614-70ii5qm94fe28nmasjc9g864nh25l4m7.apps.googleusercontent.com',
iosBundleId: 'io.github.x-wei.flutter-catalog',
);
}

}
7 changes: 7 additions & 0 deletions macos/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Flutter-related
**/Flutter/ephemeral/
**/Pods/

# Xcode-related
**/dgph
**/xcuserdata/
1 change: 1 addition & 0 deletions macos/Flutter/Flutter-Debug.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "ephemeral/Flutter-Generated.xcconfig"
1 change: 1 addition & 0 deletions macos/Flutter/Flutter-Release.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "ephemeral/Flutter-Generated.xcconfig"
Loading

0 comments on commit 0454d28

Please sign in to comment.