Vaios Tsitsonis
Vaios Tsitsonis
Why applicationId, versionCode and versionName are moved to the root build.gradle instead of being in app's build.gradle. Is there any advantage by using this approach?
Streams
I am not in a so good level in using kotlin, so maybe i am missing something, but are not we losing some capabilities by not using streams of data?
Hello I am thinking about using rhino in order to have some JS functions. Where do you think is the best part to execute them? I was thinking about having...
Let's say that we have a factory in data layer that returns a repository (implementation of IRepository) based on some parameters. What do you think about returning Single? I think...
I have an app that has a recyclerview. The recyclerview loads data using an custom adapter. If we set in our adapter a cursor with large data (For example 3000...
**Is your feature request related to a problem? Please describe.** It seems that we can not use styles to change the text appearance of ActionBar's title, title & message in...
I use the workaround for persisting multiple backstacks during navigation, which is presented in NavigationAdvancedSample. If i use CoordinatorLayout as a nav host container there are issues with width/height of...
After carefully going through the Readme, I'm still uncertain about the markdown specification this library follows. I apologize for any misunderstanding on my part. If you could kindly provide some...
I ve set up the button like that ```kotlin val config = SessionConfiguration.Builder() .setClientId("xxx") .setClientSecret("xxx") .setEnvironment(SessionConfiguration.Environment.SANDBOX) .build() val session = ServerTokenSession(config) val rideParams = RideParameters.Builder() .setProductId("a1111c8c-c720-46c3-8534-2fcdd730040d") .setDropoffLocation(37.775304, -122.417522, "Uber HQ",...
It seems that JaCoCo can not understand null branch as covered on a when statement applied on a nullable enum field. ```kotlin enum class Color { GREEN, WHITE } fun...