I am trying to add currency symbol with the cost using Transformations of Live Data object, but it is not importing.
private val _price = MutableLiveData<Double>()
val price: LiveData<String> = Transformations.map(_price) {
NumberFormat.getCurrencyInstance().format(it)
}
Please debug