https://kotlinlang.org logo
#android
Title
# android
m

murdock

12/12/2019, 3:18 PM
Hey guys, im having some really weird issues
Copy code
abstract class ScanPresenter : MvpPresenter<ScanView>() {

    abstract fun applyFilter(imageFilterType: ImageFilterType)

}

class ScanPresenterImpl @Inject constructor() : ScanPresenter() {

    override fun applyFilter(imageFilterType: ImageFilterType) {

    }
}
This wont compile for some reason
d

Dominaezzz

12/12/2019, 5:12 PM
Fascinating. That looks YouTrack worthy.
m

murdock

12/12/2019, 7:57 PM
Yeah i've managed to isolate the issue, seems like kapt is breaking the build
l

louiscad

01/02/2020, 9:45 AM
Did you report it on kotl.in/issue? If so, can you link it here please?
m

murdock

01/10/2021, 1:02 AM
This issue was caused by a 3rd party library using older version of Kotlin more info: https://kotlinlang.slack.com/archives/C2R77UD35/p1576181784010300
9 Views