Skip to content

Commit

Permalink
Merge pull request #48 from omer358/dev
Browse files Browse the repository at this point in the history
resolves #23
  • Loading branch information
omer358 authored Aug 19, 2024
2 parents 24b087b + 7065ba2 commit e9f0215
Show file tree
Hide file tree
Showing 9 changed files with 133 additions and 0 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Omer Maki Omer

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.
112 changes: 112 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
Here's a detailed README file for your **RememberMe** project:

---

# RememberMe

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Platform](https://img.shields.io/badge/platform-Android-blue.svg)](https://www.android.com/)

**RememberMe** is an Android application designed to help users keep track of the people they've met and set reminders for interactions. It allows users to schedule notifications based on different repetition intervals, ensuring they never forget important connections.

![Watch the video](screenshots/remember_me_app.mp4)

## Table of Contents

- [Features](#features)
- [Architecture](#architecture)
- [Libraries Used](#libraries-used)
- [Installation](#installation)
- [Usage](#usage)
- [Screenshots](#screenshots)
- [Contributing](#contributing)
- [License](#license)

## Features

- **Reminders Scheduling:** Set daily, thrice-daily, or five-times-a-day reminders for interactions.
- **Deep Linking:** Directly navigate to a specific person from the notification.
- **Notification Handling:** Notifications with customizable content.
- **Permissions Management:** Handle notification permissions seamlessly.
- **Theme Customization:** Personalize the app's appearance according to user preferences.

## Architecture

The project follows **Clean Architecture** with a **feature-layered** approach to ensure separation of concerns and scalability:

- **Presentation Layer:** Contains UI-related components like `MainActivity` and ViewModels.
- **Domain Layer:** Holds the business logic and domain models.
- **Data Layer:** Manages data sources like repositories and workers, including `NotificationWorker`.

## Libraries Used

- **Jetpack Compose:** For building native UI.
- **Hilt:** For dependency injection.
- **WorkManager:** To schedule and manage background tasks.
- **Coroutines & Flow:** For asynchronous programming.
- **Dagger Hilt:** Dependency injection framework for Android.
- **Firebase:** For authentication and backend services.
- **Room:** Persistence library for managing local data storage.

## Installation

To get started with **RememberMe**, follow these steps:

1. **Clone the repository:**

```bash
git clone https://github.com/omer358/Remember-Me.git
cd Remember-Me
```

2. **Open in Android Studio:**

- Open the project in Android Studio.
- Sync the Gradle files.

3. **Build the project:**

- Click on `Build > Make Project`.

4. **Run the app:**

- Connect an Android device or start an emulator.
- Click on `Run > Run 'app'`.

## Usage

1. **Setting Reminders:**
- Choose the reminder interval (Once a day, Thrice a day, or Five times a day) from the settings screen.

2. **Receiving Notifications:**
- Ensure notification permissions are granted. You will receive notifications based on the set interval.

3. **Deep Linking:**
- Clicking on a notification will navigate you directly to the details of the person you're reminded about.
## Screenshots
Here are some screenshots of the **RememberMe** app:
| home screen | empty state screen |
|:-----------------------------------------------------------------------------------------:|:----------------------------------------------------------------------------:|
| <img src="screenshots/people_list_screen.png" alt="home" width="300"> | <img src="screenshots/empty_state_screen.png" alt="empty state" width="300"> |
| person details screen | add_person screen |
| <img src="screenshots/person_details_screen.png" alt="person details Screen" width="300"> | <img src="screenshots/add_person_screen.png" alt="add person" width="300"> |
| reminder notification screen | settings screen |
| <img src="screenshots/reminder_notification.png" alt=" reminder" width="300"> | <img src="screenshots/settings_screen.png" alt="settings " width="300"> |
## Contributing
Contributions are welcome! Here's how you can help:

1. **Fork the repository.**
2. **Create a new branch** for your feature or bug fix.
3. **Submit a pull request** after committing your changes.

Please make sure to follow the code style and write tests where necessary.

## License

**RememberMe** is licensed under the [MIT License](LICENSE). Feel free to use, modify, and distribute this project as per the license.
Binary file added screenshots/add_person_screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/empty_state_screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/people_list_screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/person_details_screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/remember_me_app.mp4
Binary file not shown.
Binary file added screenshots/reminder_notification.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/settings_screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e9f0215

Please sign in to comment.