hi guys, i faced with a issue related to Gson, may...
# android
d
hi guys, i faced with a issue related to Gson, maybe someone faced with it as well i have json like:
"price":{"amount":10142292,"currency":"RUB"}
and i'm trying to map it to model
Copy code
data class AmountElement(val amount: Double,
                    val currency: Currency)
but field amount looks weird if its more than 10 million.