From 308ed28b52753bed76e2727682e8f8dd62b5ba84 Mon Sep 17 00:00:00 2001 From: Rahul Kumar Patel Date: Tue, 16 Feb 2021 08:57:01 +0530 Subject: [PATCH] Use M & B instead of Million & Billion --- app/src/main/java/com/aurora/store/util/CommonUtil.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/aurora/store/util/CommonUtil.kt b/app/src/main/java/com/aurora/store/util/CommonUtil.kt index 1fc490c06..1fb79e36b 100644 --- a/app/src/main/java/com/aurora/store/util/CommonUtil.kt +++ b/app/src/main/java/com/aurora/store/util/CommonUtil.kt @@ -40,8 +40,8 @@ object CommonUtil { private val diPrefixes: Map = hashMapOf( Pair(1, ""), Pair(3, " K"), - Pair(6, " Million"), - Pair(9, " Billion") + Pair(6, " M"), + Pair(9, " B") ) fun addSiPrefix(value: Long): String {