Skip to content

Application for annual Prakarsh Fest at SVIT, Vasad.

License

Notifications You must be signed in to change notification settings

SvitPrakarsh/PrakarshApp

 
 

Repository files navigation

PrakarshApp

Application for Prakarsh XIV (2019) Fest.

Play Store | Github Releases

This app uses JSON files from PrakarshJSON project hosted with Github Pages.

Firebase Configuration

Prerequisites

Firestore Database Structure

users -> [Unique User ID] -> (fields) city, collegeName, department, email, name, phoneNumber

Create "users" collection using the Firebase console. The UUID documents and the details fields will automatically be generated from the client side.

Firestore Database Rules

service cloud.firestore {
  match /databases/{database}/documents {
    match /users/{userID} {
      allow create, update, read: if request.auth.uid == userID;
    }
  }
}

About

Application for annual Prakarsh Fest at SVIT, Vasad.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Kotlin 98.3%
  • Java 1.7%