- Allows one to add and view the current internships available
- Firebase Realtime Database
- Add a new project on Firebase Console
- Generate
google-services.json
andGoogleService-Info.plist
- Add
google-services.json
toandroid/app
folder - Add
GoogleService-Info.plist
toios/Runner
folder - In project level build.gradle -
android/build.gradle
add the dependencies
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.0.1'
}
- In android/app/build.gradle add the following plugin
apply plugin: 'com.google.gms.google-services'
- Add the packages to
pubspec.yaml
file
dependencies:
flutter:
sdk: flutter
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^0.1.2
firebase_auth:
firebase_database:
firebase_storage:
url_launcher:
Made for OSL Lab 2019 :)