Skip to content

ashna111/find-it

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Find It - An internship portal :P

  • Allows one to add and view the current internships available
  • Firebase Realtime Database

Set-up Firebase

  • Add a new project on Firebase Console
  • Generate google-services.json and GoogleService-Info.plist
  • Add google-services.json to android/app folder
  • Add GoogleService-Info.plist to ios/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 :)