Singleton
-
Kotlin errorAndroid 외 개발 2019. 12. 4. 11:20
Java 소스를 Kotlin 으로 변환 하면서 발생한 에러를 수정하면서 찾아본 내용을 정리하였습니다. Example1. Incompatible types: Int and Byte 변경 전: fun test(b:Byte): Int{ return when(b){ 0x01 -> 1 0x02 -> 2 0x03 -> 3 else -> 4 } } 변경 후: fun test(b:Byte): Int{ return when(b){ 0x01.toByte() -> 1 0x02.toByte() -> 2 0x03.toByte() -> 3 else -> 4 } } Example2. Call uses reflection API which is not found in compilation classpath. Make sure you..