Joel Roman
Joel Roman
This situation should only be on Pie (9) and up since clear text is disabled by default which in my humble opinion the library should not worry about this since...
You can prevent this by taking your root build gradle file and declaring the dependencies in it and then just calling `implementation libs.dependency` that way you are always sure you...
Try having a look at the presenter from the demo, https://github.com/Tinder/Scarlet/blob/master/demo/src/main/java/com/tinder/app/echo/presenter/EchoBotPresenter.kt . and the echo bot fragment . https://github.com/Tinder/Scarlet/blob/3ddd11441e4fc0eeb7b4c8dc38b1ac8c4f6ba5c3/demo/src/main/java/com/tinder/app/echo/view/EchoBotFragment.kt . One is setting up the stream and the other is...
Remember the interface is just the contract you can technically give it your own implementation if you like to dive into the ins and out of the generated implementation by...