This is the structure of an Inventory App that will allow a store to keep track of its inventory of products.
The app stores information about the product and allow the user to track sales and shipments and make it easy for
the user to order more from the listed supplier.
- Create a SQLite table in your app
- Populate that table with new entries
- Modify the entries
- Display the contents of the table to users.
This project involves adding more UI features to the inventory, so that the users can add/delete items from the database.
- Storing information in a SQLite database
- Integrating Android’s file storage systems into that database
- Setting up a Content Provider and use it to access a repository of data
- Presenting information from files and SQLite databases to users
- Updating information based on user input
- Creating intents to other apps using stored information