I've integrated Room in my project. In this project some classes are in Kotlin and some are in Java. After I converted my Java file to Kotlin using Android Studio Ctrl+Alt+Shift+K combination, I've started facing this error:
TypeConverter() has private access in TypeConverter
in the generated java class, at this line:
private final PointOfInterest.TypeConverter __typeConverter_5 = new PointOfInterest.TypeConverter();
But TypeConverter
in PointOfInterest
class is public.
PointOfInterest
class withTypeConverter
? - MichaĆ Baran