Nikola Jakšić
Nikola Jakšić
If you use RxJava in your project, the solution might be to return the Observable from the domain layer and use the reactive streams to convert it to the LiveData...
> > If you use RxJava in your project, the solution might be to return the Observable from the domain layer and use the reactive streams to convert it to...
@mitevyav Well, RxJava is not something that is Android specific, it can be used everywhere (web, mobile, desktop, etc..), on the other side, `LiveData` is Android specfic, that's why it's...
If I remember correctly the old API will be deprecated on March 2, 2020. I'll make sure to do the necessary changes till mid-February.
I've read the Instagram Basic Display API to see what changes need to be made and I'll start working on it soon. There will be breaking change for sure since...
The request for the [Long-Lived Token](https://developers.facebook.com/docs/instagram-basic-display-api/guides/long-lived-access-tokens) includes your Instagram App Secret so must be made in server-side code, never in client-side code or in an app binary that could be...
There is a reported [issue](https://issuetracker.google.com/u/0/issues/65575496) with Android System WebView when using preloaded fonts. We need to wait for the Android Team to fix that. Temporary workaround is to remove preloaded...
Instead of saving the state of each of your items, you only need to save the index of one item (the expanded one). Inside click listener, check the index of...