Rachel Carandang
04/04/2022, 7:22 PMobject Scopes {
fun serial(): CoroutineScope = CoroutineScope(...)
}
In the consumer app of the library, I’m getting this new error:
Scopes.serial() -> Unresolved reference: serial
Java 8 Bytecode from consumer app:
public final class Scopes {
@NotNull
public static final Scopes INSTANCE = new Scopes();
However, I call Scopes.INSTANCE.serial() it works.
Additionally, I’m getting errors with accessor properties in interfaces not being recognized in the consumer app, even though the decompiled java bytecode says it’s there.
Is there an additional compiler configuration I’m missing?Adam S
04/04/2022, 8:09 PMRachel Carandang
04/04/2022, 8:10 PMkotlinOptions {
jvmTarget = '11'
}
But no apiVersion/languageVersion specified explicitlytapchicoma
04/04/2022, 8:21 PMAdam S
04/04/2022, 8:22 PMRachel Carandang
04/04/2022, 8:31 PMtapchicoma
04/04/2022, 8:40 PMDo you have any idea why this was happening in 1.6.10?Hard to say without reproducer project
Rachel Carandang
04/05/2022, 1:11 AM