Skip to content
#

vaibhavmojidra

Here are 139 public repositories matching this topic...

Popular-Movies-Artists-TV-Shows-Using-Clean-Architecture

Popular Movies, Artists & TV Shows (PMATS) is a demo project to demonstrate app made using latest android app architecture components and using Clean Architecture Model where there is separation of concern. Fetches data from remote data source using Retrofit. Stores data to local data source using Room DB. Fetches data from local data source usi…

  • Updated Nov 4, 2021
  • Kotlin

A PeriodicWorkRequest is a specific type of work request in WorkManager that allows you to schedule a task to be repeated at fixed intervals. It's useful for executing tasks that need to occur periodically, such as syncing data with a server or performing regular maintenance tasks.

  • Updated Jun 12, 2023
  • Kotlin

The ViewModelFactory is a class in the Android Architecture Components that is used to create instances of ViewModel classes. In Android, a ViewModel is used to store and manage data that is used in an activity or fragment, and survives configuration changes, such as screen rotation.

  • Updated May 24, 2021
  • Kotlin

Dependency injection (DI) is a technique widely used in programming and well suited to Android development. By following the principles of DI, you lay the groundwork for good app architecture. Implementing dependency injection provides you with the following advantages: 1. Reusability of code 2. Ease of refactoring 3. Ease of testing

  • Updated Jul 24, 2021
  • Kotlin

In Kotlin, var and val are used to declare variables. The main difference between them is that var declares a mutable variable, which means its value can be changed after it is initialized, while val declares an immutable variable, which means its value cannot be changed after it is initialized.

  • Updated Apr 29, 2023
  • Kotlin

In Android Jetpack Compose, state management is an important aspect of building reactive UIs. The RememberSaveable function is a part of the Jetpack Compose state APIs that allows you to save and restore the state of a composable function across configuration changes, such as screen rotations.

  • Updated Jul 14, 2023
  • Kotlin

Android Hilt is a dependency injection framework provided by Google for Android app development. It is built on top of the popular dependency injection library called Dagger. Hilt simplifies the process of implementing dependency injection in Android applications and helps manage the dependencies of your app's components.

  • Updated Jun 27, 2023
  • Kotlin

In Kotlin, a higher-order function is a function that takes one or more functions as arguments and/or returns a function as its result. Higher-order functions are used to enable more concise and expressive code, as well as to implement advanced programming concepts such as functional programming and the use of lambdas.

  • Updated Apr 29, 2023
  • Kotlin

Improve this page

Add a description, image, and links to the vaibhavmojidra topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the vaibhavmojidra topic, visit your repo's landing page and select "manage topics."

Learn more