Stefan M.
Stefan M.
### General information * SDK/Library version: 4.10.1 * Environment: Prod and Sandbox * Android Version and Device: Doesn't matter * Braintree dependencies: ``` deps.braintreePaypal = "com.braintreepayments.api:paypal:4.10.1" deps.braintreeDataCollector = "com.braintreepayments.api:data-collector:4.10.1" ```...
While working on #468 I found out that my IDE (IntelliJ) wants to `Reformat Code` and `Rerange Code` all the time. I have a different code style in my IDE...
I just realized that I can't use `argumentCaptor`. I have to use the `nullableArgumentCaptor` for that. After looking into the implementation I really don't get why there is an explicite...
This is the same as https://github.com/JakeWharton/timber/issues/329 See the linked PR for a fix
See this comment: https://github.com/grandcentrix/ThirtyInch/pull/158#issuecomment-421979658 It is still not working. We will discover this in a new PR. Maybe it is related to AS instead of the Code 🤷♂️
Sometimes we are using `viewOrThrow.doSmthWithTheView()` to send directly something to the view. This is useful if we get a callback from the View (in a onclicklistener) for example. So we...
In #137 @GrahamBorland created a really cool test called `testDeliverLatestToView_SingleItemViewComesAndGoes` & `testDeliverLatestToView_ViewComesAndGoes ` Since these tests are very great but [not part](https://github.com/grandcentrix/ThirtyInch/blob/bcb61ca57e3667dbc060ef952eae2a53e1f257fa/thirtyinch-rx/src/test/java/net/grandcentrix/thirtyinch/rx/RxTiPresenterUtilsTest.java) of the "original" rx (rx1) module we wanted...
[Conductor](https://github.com/bluelinelabs/Conductor) is a powerful but lightweight framework which lets you build View-based apps. It is really cool because you have 100% control over the backstack and don't force you to...
Currently companion objects can be placed everywhere. We should move it to the bottom of the class because this is what the offical style guide of Kotlin says..
If we use the kotlin android-extension we have something like that in our imports: ```kotlin import kotlinx.android.synthetic.main.fragment_settings.app_info_text import kotlinx.android.synthetic.main.fragment_settings.fingerprint_switch import kotlinx.android.synthetic.main.fragment_settings.global_access_right import kotlinx.android.synthetic.main.fragment_settings.global_access_right_switch import kotlinx.android.synthetic.main.fragment_settings.icon_global_access_right_help import kotlinx.android.synthetic.main.fragment_settings.login_data import kotlinx.android.synthetic.main.fragment_settings.login_data_header import...