With the code below, I am getting the following error in IntelliJ IDEA 13.1.6 and Kotlin plugin 0.11.91.AndroidStudio.3:
Platform declaration clash: The foll
public interface JavaInterface { public String getName(); } public class KotlinClass(val namePrivate: String?) : JavaInterface { private var name = namePrivate override fun getName(): String? { return name } }