Jeffrey Kovács
Jeffrey Kovács
When running `./gradlew -Pandroid.enableJetifier=false canIDropJetifier` I get the following output: ``` > Task :myapp:canIDropJetifier FAILED FAILURE: Build failed with an exception. * What went wrong: Some problems were found with...
Please add functions that accept Duration for all public functions that currently only accept TimeUnit For example: old: PhoneAuthOptions.Builder(Firebase.auth).setTimeout(60, TimeUnit.SECONDS) new: PhoneAuthOptions.Builder(Firebase.auth).setTimeout(Duration.ofSeconds(60))
What should be marked `@Nullable` for example: ```CountryCodePicker.getNumber() CountryCodePicker.getPhoneNumber() CountryUtils.getByNumber() CountryUtils.getByCode() CountryUtils.getByNameCodeFromCustomCountries() CountryUtils.getByNameCodeFromAllCountries()```
Using a compat version of `WindowInsetsAnimation` with `ListView` makes an additional IME offset during the IME opening animation. https://user-images.githubusercontent.com/7838820/106745468-6dfa3480-6621-11eb-89ba-37c2191e6a65.mp4
Is there a way to handle exceptions from Retrofit? We often get these ClassCastExceptions in the `await()` call. ``` interface Api { @GET("api/config") fun getConfigAsync(): Deferred } ``` ``` launch...