Here's a detailed README file for your RememberMe project:
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.
- 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.
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
.
- 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.
To get started with RememberMe, follow these steps:
-
Clone the repository:
git clone https://github.com/omer358/Remember-Me.git cd Remember-Me
-
Open in Android Studio:
- Open the project in Android Studio.
- Sync the Gradle files.
-
Build the project:
- Click on
Build > Make Project
.
- Click on
-
Run the app:
- Connect an Android device or start an emulator.
- Click on
Run > Run 'app'
.
-
Setting Reminders:
- Choose the reminder interval (Once a day, Thrice a day, or Five times a day) from the settings screen.
-
Receiving Notifications:
- Ensure notification permissions are granted. You will receive notifications based on the set interval.
-
Deep Linking:
- Clicking on a notification will navigate you directly to the details of the person you're reminded about.
Here are some screenshots of the RememberMe app:
home screen | empty state screen |
---|---|
person details screen | add_person screen |
reminder notification screen | settings screen |
Contributions are welcome! Here's how you can help:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Submit a pull request after committing your changes.
Please make sure to follow the code style and write tests where necessary.
RememberMe is licensed under the MIT License. Feel free to use, modify, and distribute this project as per the license.