Answers for "viewmodelinject' is deprecated. deprecated in java"

3

is deprecated android studio

Depricating a method is like giving a warning to the developers not to use that method as the chances are high that the deprecated methods will be removed in the future release and your application which uses that method may no longer work when your users updates the platform to the latest release.
Posted by: Guest on May-21-2020
1

viewmodelinject deprecated

@HiltViewModel
class MyViewModel @Inject constructor(
    private val repository: Repository,
    private val savedStateHandle: SavedStateHandle
) : ViewModel(), LifecycleObserver {

    // Some code
}
Posted by: Guest on February-17-2021

Code answers related to "viewmodelinject' is deprecated. deprecated in java"

Browse Popular Code Answers by Language