Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eggnstone/flutter_base_app
https://github.com/eggnstone/flutter_base_app
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eggnstone/flutter_base_app
- Owner: eggnstone
- Created: 2020-06-20T08:51:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-01T16:36:29.000Z (over 4 years ago)
- Last Synced: 2023-08-19T19:11:58.288Z (over 1 year ago)
- Language: Dart
- Size: 79.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flutter_base
A sample Flutter project using eggnstone services.
# TODOs to run this example
## Add your own google-services.json/Info.plist files
* Download ```google-services.json``` from Firebase to ```android/app```
* Download ```Info.plist``` from Firebase to ```ios/Runner```# TODOs when building your own app
## Add your own google-services.json/Info.plist files
* Download ```google-services.json``` from Firebase to ```android/app```
* Download ```Info.plist``` from Firebase to ```ios/Runner```## For Crashlytics to work add the following
- In ```android/build.gradle``` add the following to ```buildscript / repositories```
```
maven {
url 'https://maven.fabric.io/public'
}
```- In ```android/app/build.gradle``` add the following to ```buildscript / dependencies```
```
classpath 'com.google.gms:google-services:4.3.3'
classpath 'io.fabric.tools:gradle:1.31.2'
```
- Add at the bottom of ```android/build.gradle```
```
apply plugin: 'io.fabric'
apply plugin: 'com.google.gms.google-services'
```