Skip to content

DiaryNotes (Multi-Modular Android App) allows users to write and save diary entries with the option to include photos and expressive emojis to capture the essence of each moment.

Notifications You must be signed in to change notification settings

OrlanDroyd/Diary-Notes

Repository files navigation


Thumbnail Image

DiaryNotes

Multi-Modular Android App

Screenshots ~ Deployment ~ Architecture ~ Tech Stack ~ Authors ~ Contributing
License

DiaryNotes allows users to write and save diary entries with the option to include photos and expressive emojis to capture the essence of each moment.

📸 Screenshots 📸

DiaryNotes follows the latest Material 3 guidelines for a visually appealing and a consistent UI.

              

↘️ Deployment ↘️

These are the key parameters for DiaryNotes.

Parameters Value
compileSdk 33
targetSdk 33
minSdk 24
compose-bom 2023.10.00
kotlinVersion 1.8.20

You can clone the repository or download the Zip file here

To build and run the app, you will need the latest version of Android Studio Flamingo (or newer) installed on your system.

🛠️ Architecture 🛠️

Modules

DiaryNotes is initially built using Android Clean Architecture that follows the more familiar Model-View-ViewModel (MVVM) pattern.

On the last commit the project is restructured into a Multi-Module Architecture using layered features.

Here's an overview of the app's architectural modular components:

  • App Module: This is the main module of the DiaryNotes, which acts as the orchestrator of the different features and modules. It handles the navigation flow between the Authentication, Home, and the Write features, ensuring a cohesive and seamless user experience. The App Module integrates the dependencies from the feature modules and manages the overall lifecycle of the app.

  • buildSrc: The buildSrc module serves as a central location for managing project configuration and dependencies. This module allows for a streamlined and standardized setup of project configurations, build scripts, and dependencies, simplifying the build process and ensuring consistency across the app.

  • Data Module:The Data module in the Android Diary App is responsible for managing data storage and retrieval using both MongoDB and Room. It handles the setup and integration of Mongo Realm, allowing seamless connectivity to the MongoDB backend. The Data module provides functionalities for inserting, fetching, updating, and deleting diary entries in the MongoDB database. Additionally, DiaryNotes leverages Room Librayto provide offline access and local caching of diary entries, enhancing the app's responsiveness and offline capabilities.

  • Common/Core Modules: The app includes two core modules: UI and Utils. The UI module contains common Compose functions, components, and UI-related code that are shared across different features. This module promotes code reuse and consistency in the app's user interface. The Utils module provides essential utilities such as model classes, connectivity observers, constants, strings and drawable resources. It ensures a centralized and efficient management of commonly used resources and functionalities.

  • Feature Modules: This module includes three destinations: Auth, Home and Write. 'Auth' handles the authentication with the users. 'Home' displays all the data/diaries in our application. And 'Write' module allows you to create a new diary note in your app.

Navigation

The app has 3️⃣ screen destinations which use Compose Navigation to manage navigation.

:feature:auth :feature:home :feature:write
  • Authentication Feature: This feature focuses on user authentication and validation. It utilizes Google Sign-In to ensure that users can securely access their diary entries. By authenticating users, the app guarantees that only authorized individuals can interact with their personal diaries.

  • Home Feature: The Home feature is responsible for displaying and filtering diary entries based on the date. It provides a user-friendly interface to navigate through diary entries and quickly filter diaries by specific dates. Additional selections can be accessed through the Navigation Drawer.

  • Write Feature: The Write feature enables users to create new diary entries or modify existing ones. It offers a seamless and intuitive interface for users to capture and document their thoughts, moments, and memories. DiaryNotes empowers the users to personalize content by adding emojis and accompanying images

Overroll by adopting a multi-modular architecture with layered features, the DiaryNotes achieves a separation of concerns, enabling independent development and testing of specific functionalities. This architecture promotes code reusability, scalability and easy maintainability

🏗️ Tech Stack 🏗️

The DiaryNotes project uses many popular libraries and tools in the Android Ecosystem:

  • Jetpack Compose - modern toolkit for building native Android UI.

  • Android KTX - helps to write more concise, idiomatic Kotlin code.

  • Coroutines and Kotlin Flow - used to manage the local storage i.e. writing to and reading from the database. Coroutines help in managing background threads and reduces the need for callbacks.

  • Material Design 3 - an adaptable system of guidelines, components, and tools that support the best practices of user interface design.

  • Compose Navigation - navigate between composables while taking advantage of the stateful NavController which keeps track of the back stack of composables that make up the screens in your app.

  • Google Accompanist Libraries - these are a collection of extension libraries for Jetpack Compose. DiaryNotes specifically uses Accompanist's Pager Library

  • Dagger Hilt - used for Dependency Injection.

  • Coil - an image loading library for Android backed by Kotlin Coroutines

  • SplashScreen API - SplashScreen API lets apps launch with animation, including an into-app motion at launch, a splash screen showing your app icon, and a transition to your app itself.

  • Room persistence library which provides an abstraction layer over SQLite to allow for more robust database access while harnessing the full power of SQLite.

  • Mongo - MongoDB is a popular NoSQL database, used in this app for storing and managing data related to diary entries.

  • Firebase Storage - Firebase Cloud Storage is a scalable and reliable cloud storage solution used in the app for storing and retrieving photos associated with diary entries.

  • Firebase Auth - Firebase Authentication provides a secure and easy-to-use authentication system, allowing users to sign in and access their diary entries securely.

  • Max Keppeler's Sheet Compose Dialog - Firebase Authentication provides a secure and easy-to-use authentication system, allowing users to sign in and access their diary entries securely.

  • Stevdza-San's MessageBarCompose - Animated Message Bar UI that can be wrapped around your screen content in order to display Error/Success messages in your app. It is adapted and optimized for use with Compose and Material 3 projects.

  • Stevdza-San's OneTapCompose - Animated Message Bar UI that can be wrapped around your screen content in order to display Error/Success messages in your app. It is adapted and optimized for use with Compose and Material 3 projects.

📝 Authors 📝

🤝 Contributing 🤝

Contributions to make DiaryNotes better are always welcome!

If you are interested in seeing a particular feature implemented in this app, please open a new issue after which you can make a PR!

📜 License 📜

MIT License

Copyright (c) [2023] [OrlanDroyd]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

DiaryNotes (Multi-Modular Android App) allows users to write and save diary entries with the option to include photos and expressive emojis to capture the essence of each moment.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages