Tom Seifert

Results 8 issues of Tom Seifert

@passsy already added a workaround for the `BackstackReader` with AndroidX for #149. However, with ProGuard enabled I encountered the following issue: ``` Fatal Exception: java.lang.NoSuchMethodError: No virtual method isInBackStack()Z in...

``` class SomePresenter: TiPresenter() { class Something(val presenter: SomePresenter) { fun doStuff() { presenter.sendToView { it.showSomething() } } } } ``` Here Lint marks the usage of `sendToView` as an...

When debugging the implementation of a view method annotated with `@CallOnMainThread` the app crashes. Simple scenario to reproduce: ``` class MainActivity : TiActivity(), TestView { override fun providePresenter(): TestPresenter =...

bug

Currently [manageViewDisposable()](https://github.com/grandcentrix/ThirtyInch/blob/master/thirtyinch-rx2/src/main/java/net/grandcentrix/thirtyinch/rx2/RxTiPresenterDisposableHandler.java#L95) throws an exception when we're adding a `Disposable` while no view is attached. I was thinking if this is preferable to just disposing, as we want that `Disposable`...

rx

With current release of AS Arctic Fox and Android Gradle Plugin 7 I tried updating our (library) project to that. Currently our build fails with > java.lang.IllegalStateException: Cannot query the...

bug
help wanted

### Prerequisites Please answer the following questions for yourself before submitting an issue. - [x] I am running the latest version - [x] I checked the documentation and found no...

Hi 👋 I have two Gradle modules A and B, both with some `@Preview` and both have the same package name - let's say `com.example.ui`. In my case, both are...

GitVersioner includes the number of changes in the `versionName`, so with (almost) every build the `versionName` changes to something like > android:versionName = 500-feature/my_awesome_feature-SNAPSHOT(2 +3 -5) This forces Instant Run...