freddiewang
06/18/2018, 8:57 AM@android.annotation.TargetApi(value = null)
in my project and it would cause build fail. does anyone know how to avoid it?rkeazor
06/18/2018, 3:24 PMfreddiewang
06/19/2018, 6:03 AM@TargetApi(Build.VERSION_CODES.LOLLIPOP_MR1)
fun isAsynchronous(isAsynchronous: Boolean): MessageBuilder = apply {
this.isAsynchronous = isAsynchronous
}
But in the generated java it is
@org.jetbrains.annotations.NotNull()
@android.annotation.TargetApi(value = null)
public final com.linecorp.lineat.android.util.MessageBuilder isAsynchronous(boolean isAsynchronous) {
return null;
}
rkeazor
06/19/2018, 1:46 PMfreddiewang
06/19/2018, 11:40 PMBuild.VERSION_CODES.LOLLIPOP_MR1
is in android sdk. that is the weird thing…