https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
f

Frank Feng

11/06/2019, 11:50 AM
Anyone encounter this error?
s

svyatoslav.scherbina

11/06/2019, 12:03 PM
You likely have Kotlin
object
declaration inheriting Objective-C classes, e.g.
Copy code
object Foo : NSObject() {
}
This is not supported.
👍 1