Skip to content

Latest commit

 

History

History
executable file
·
73 lines (33 loc) · 1.13 KB

README.md

File metadata and controls

executable file
·
73 lines (33 loc) · 1.13 KB

aplicacion-productos

Simple applicacion for product management.

What can you do?

  • User management (and permissions)

  • Product management

  • Review products

Where are the data?

This app uses Firebase (a cloud database)

Firebase organizes the database in collections and documents.

In a normal database colections are tables and documents are entries.

An example of a collection would be:

classroom (collection)

|- `43085435 (document) -- The number represents student id`

    |- `name: Jhon Doe`

    |- `...`

|- `...`

My app uses 3 collections:

  • users:

    user document

  • products:

    product document

  • opinions:

    opinion document

Let's get into the code (Highlights)

  • UserType.java

    UserType

  • FireManager.java

    FireManager

  • In AdapterProducts.java

    OnClick

  • ImageConverter, Product filtering...

Demo

...