A QUIZ App Featuring MVVM,Hilt,Navigation Component,Retrofit #Project Summary This application loads some quiz question from remote server and provide UI for quiz and calculate score also keep track of the HighScore.
- 100% Kotlin based, Coroutines + Live Data for asynchronous.
- JetPack🚀
- ViewBinding - View binding is a feature that allows you to more easily write code that interacts with views.
- LiveData With Flow - notify domain layer data to views.
- Lifecycle - dispose of observing data when lifecycle state changes.
- ViewModel - UI related data holder, lifecycle aware.
- Hilt - To simplify Dagger-related infrastructure for Android apps.
- Retrofit2 & OkHttp3 - construct the REST APIs and paging network data.
- Gson - Gson is a Java library that can be used to convert Java Objects into their JSON representation.
- okhttp-logging-interceptor - logs HTTP request and response data.
- kotlinx.coroutines - Library Support for coroutines,provides
runBlocking
coroutine builder used in tests for Android.
- MVVM Architecture (Model - View - ViewModel)
- Repository pattern