This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Usage for extensions. | |
Initialize Moshi in your Converter class | |
*/ | |
private val moshi: Moshi = Moshi.Builder() | |
.add(KotlinJsonAdapterFactory()) | |
.build() | |
/** | |
* [Moshi] extension to transform a [List] to Json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* ANY | |
*/ | |
fun Any.toJson(): String = GsonInitializer.toJson(this) | |
/** | |
* String to Inches | |
**/ | |
internal fun convertStringToInches(centimeters: String) : String = | |
(BigDecimal(centimeters.toDouble() * 0.393701).setScale(3, RpundingMode.HALF_EVEN)).toString() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"app_name": "My App", | |
"example_text_view_key": "Hello, World!", | |
"settings_title": "Settings", | |
"language_title": "Language", | |
"select_language": "Select Language", | |
"display_name": "English", | |
"ok_button": "OK", | |
"cancel_button": "Cancel", | |
"home_feature": "Changed Home" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"app_name": "My App", | |
"example_text_view_key": "Hello, World!", | |
"settings_title": "Settings", | |
"language_title": "Language", | |
"select_language": "Select Language", | |
"display_name": "English", | |
"ok_button": "OK", | |
"cancel_button": "Cancel", | |
"home_feature": "Changed Home" |
OlderNewer