- Allows one to add and view the current internships available
- Firebase Realtime Database
- Add a new project on Firebase Console
- Generate
google-services.jsonandGoogleService-Info.plist - Add
google-services.jsontoandroid/appfolder - Add
GoogleService-Info.plisttoios/Runnerfolder - In project level build.gradle -
android/build.gradleadd 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.yamlfile
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 :)


