admin 16 October 2023 Software Development Android App Development with JetPack Compose. First, let’s learn about what Jetpack Compose is Jetpack Compose is a modern Android UI… Read more
admin 3 October 2023 Software Development How to handle deeplink in app? Add Intent Filter in Splash Activity <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE"… Read more
admin 8 September 2022 Software Development Common Coroutine Mistakes 1. Incorrect exception handling. fun foo() { try { viewModelScope.launch { throw Exception() } }… Read more