stupid question… maybe
have two files. “facade” file ‘DeviceB.kt’
package demo.DeviceB
import ....
.....
and util file util.kt
that hold all trash classes for facade needs
package demo.DeviceB.util
....
class Garbage{
}
.....
I wand somehow to reach Garbage
util class, from inside DeviceB
if I write import in the ‘DeviceB.kt’ file like this
package demo.DeviceB
import demo.DeviceB.util.*
.....
all my namespace in file get polluted with all util package content.
so I want to reference to classes inside util by ‘util.’ prefix
and expect this call looks like
util.Garbage
but I cannot.
what correct import statement should I write in the ‘DeviceB.kt’ file ?