Skip to content

Instantly share code, notes, and snippets.

@JoseAlcerreca
Created June 26, 2020 15:34
Show Gist options
  • Save JoseAlcerreca/e61e9ebd920045e4e638d0935741e41d to your computer and use it in GitHub Desktop.
Save JoseAlcerreca/e61e9ebd920045e4e638d0935741e41d to your computer and use it in GitHub Desktop.
<!-- Copyright 2020 Google LLC.
SPDX-License-Identifier: Apache-2.0 -->
// With Dagger2 or dagger.android
@Target(
AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY_GETTER,
AnnotationTarget.PROPERTY_SETTER
)
@Retention(AnnotationRetention.RUNTIME)
@MapKey
annotation class ViewModelKey(val value: KClass<out ViewModel>)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment