I am newbie in Kotlin programing. I am developing an Android app, where I use Java for development. After Google announced, Kotlin as official for Android development, I wnated to try the features added up to my android app in Kotlin. So I started with a POJO class.
I have a pojo classs say MyPOJO.kt in the package, com.example.model I am trying to use that pojo in another java class MyViewModel.java in the package com.example.viewmodel
When I tried to run my app, I get an exception like, /Users/senthil/app/src/main/java/com/example/viewmodel/MyViewModel.java Error:(17, 35) error: cannot find symbol class MyPojo
I couldn't figure out what the problem is.
Thanks in advance