Background
I'm using the Clean architecture in my android app. My domain and data layer are heavily RxJava-based (RxAndroid).I'm also using Parse(BaaS).
Question
I know that the Android Parse SDK is doing a lot of work under the hood like caching and encrypting data. Is it really stable to use its synchronous calls with RxJava's Schedulers?
I know that Retrofit works well with RxJava. Should I drop the Parse SDK and use their REST API instead ?
Help me, I'll give you a cookie !