From 7cd5ebcd474d72ed6ebf82c859d2d8a14ded5be0 Mon Sep 17 00:00:00 2001 From: A'sem Abu alrub Date: Mon, 30 Sep 2024 12:06:51 +0300 Subject: [PATCH] Create README.md for app module --- app/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 app/README.md diff --git a/app/README.md b/app/README.md new file mode 100644 index 0000000..2922b5b --- /dev/null +++ b/app/README.md @@ -0,0 +1,8 @@ +### This general module contains and covers the following topics: + +1. [Biometric Dialog](https://github.com/AsemLab/Samples/blob/main/app/src/main/java/com/asemlab/samples/ui/BiometricActivity.kt): show biometric dialog using the Biometric library. [Official](https://developer.android.com/identity/sign-in/biometric-auth) +2. [DownloadManager](https://github.com/AsemLab/Samples/blob/main/app/src/main/java/com/asemlab/samples/download/FileDownloaderImp.kt): is a system service that handles long-running HTTP downloads. Clients may request that a URI be downloaded to a particular destination file. [Official](https://developer.android.com/reference/android/app/DownloadManager) +3. [Epoxy](https://github.com/AsemLab/Samples/blob/main/app/src/main/java/com/asemlab/samples/epoxy/EpoxyActivity.kt): is an Android library for building complex screens in a RecyclerView. [Official](https://github.com/airbnb/epoxy) +4. [Pass data between components](https://github.com/AsemLab/Samples/tree/main/app/src/main/java/com/asemlab/samples/passdata): demonstrate how to pass data from Activity to Activity/Fragment and from Fragment to Activity/Fragment. +5. [Progress in Notifications](https://github.com/AsemLab/Samples/blob/main/app/src/main/java/com/asemlab/samples/ui/NotificationProgressActivity.kt): display and update progressBar in notification. +6. [RegisterForActifityResult](https://github.com/AsemLab/Samples/blob/main/app/src/main/java/com/asemlab/samples/ui/RegisterForResultActivity.kt): call an activity and retrieve the result from it. [Official](https://developer.android.com/training/basics/intents/result)