firestore-android-arch-components icon indicating copy to clipboard operation
firestore-android-arch-components copied to clipboard

Firestore sample with Android architecture component.

Results 6 firestore-android-arch-components issues
Sort by recently updated
recently updated
newest added

ImageDataModel.kt class ImageDataModel @Inject constructor(private val firebaseFirestore: FirebaseFirestore) : ViewModel() { var isLoading = MutableLiveData() var isPagerLoading = MutableLiveData() var apiError = MutableLiveData() var imgResponse = MutableLiveData() fun getPhotosByOrder(orderBy: String){...

Thanks for publishing this sample. I learned a lot from studying your code. However, I am puzzled about one detail. One of the biggest benefits of using a viewmodel is...

Add espresso tests, preferred to be offline.

help wanted

Unit tests for repository classes and other parts of the application.

help wanted

Is there a better way for injecting `CollectionReference` for different collection?

enhancement