Skip to content

Releases: skydoves/Pokedex-AR

1.0.2

08 Jan 09:40
db14b25
Compare
Choose a tag to compare

🎉 Released a new version 1.0.2! 🎉

What's Changed

  • Updated ARCore to 1.29.0.
  • Migrated from Livedata to StateFlow.
  • Removed unused LiveCoroutinesViewModel classes.
  • Update dependencies version to the recent and migrate codes by @skydoves in #5

Full Changelog: 1.0.1...1.0.2

1.0.1

02 Jun 15:41
3022b35
Compare
Choose a tag to compare

🎉 Released a new version 1.0.1! 🎉

What's New?

  • Migrated from LiveData to Flow for observing data on UI layers from ViewModels.
  • Used Assisted Injection in DetailViewModel.
  • Used asBindingProperty for observing flow data as properties.
private val pokemonInfoFlow = detailRepository.fetchPokemonInfo(
    name = pokemonName,
    onComplete = { isLoading = false },
    onError = { errorMessage = it }
)

@get:Bindable
val pokemonInfo: PokemonInfo? by pokemonInfoFlow.asBindingProperty(viewModelScope, null)

1.0.0

13 Dec 15:25
a3badbe
Compare
Choose a tag to compare

🎉 Released a new version 1.0.0! 🎉