├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Gradle files 2 | .gradle/ 3 | build/ 4 | 5 | # Local configuration file (sdk path, etc) 6 | local.properties 7 | 8 | # Log/OS Files 9 | *.log 10 | 11 | # Android Studio generated files and folders 12 | captures/ 13 | .externalNativeBuild/ 14 | .cxx/ 15 | *.apk 16 | output.json 17 | 18 | # IntelliJ 19 | *.iml 20 | .idea/ 21 | misc.xml 22 | deploymentTargetDropDown.xml 23 | render.experimental.xml 24 | 25 | # Keystore files 26 | *.jks 27 | *.keystore 28 | 29 | # Google Services (e.g. APIs or Firebase) 30 | google-services.json 31 | 32 | # Android Profiling 33 | *.hprof 34 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 Shavinda / Nova 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Android Discovery Lab
♨ [ ᴀɴᴅʀᴏɪᴅ ᴘʀᴏᴊᴇᴄᴛ ] ♨

2 | 3 | This repository documents my journey through the Android Developer guidelines using Kotlin. It includes step-by-step instructions, screenshots, and explanations for each unit. 4 | 5 | --- 6 | 7 |
8 | 9 | ### Units 10 | 01: [**First Android App**](https://github.com/NovaLogics/android-discovery-lab/tree/unit/u001-first-android-app) 11 | In this unit, I created my first Android project using Android Studio. The goal was to familiarize myself with the Android development environment 12 | # 13 | 14 | ### Experiment Units 15 | 16 | #### 01: Kotlin Coroutines 17 | In this unit, I explored Kotlin Coroutines to understand how they simplify asynchronous programming in Android. 18 | 19 | 01: [**Kotlin Coroutines**](https://github.com/NovaLogics/android-discovery-lab/tree/expt/s001-u001-kotlin-coroutines) 20 | - Simple Explanation of Kotlin Coroutines | Launching Your First Coroutine 21 | 22 | 02: [**Suspend Functions**](https://github.com/NovaLogics/android-discovery-lab/tree/expt/s001-u002-suspend-functions) 23 | - This is especially useful for tasks like network calls or database operations. Explore more >> 24 | 25 | 03: [**Coroutine Contexts and Dispatchers**](https://github.com/NovaLogics/android-discovery-lab/tree/expt/s001-u003-coroutine-contexts) 26 | - Dispatchers define the thread or thread pool in which a coroutine runs, allowing us to control where tasks are executed. Explore more >> 27 | --------------------------------------------------------------------------------