/MoshiEx

moshi extensions

Primary LanguageKotlinMIT LicenseMIT

Moshi Extensions

特性

"android-json":添加对 安卓 JsonObject JsonArray的支持

// 初始化时调用以下方法添加适配器即可
/**
 * 支持 [MJsonObject] 和 [MJsonArray] ,并且实现了 [Serializable] 接口
 */
public fun Moshi.Builder.addAndroidJsonSupport(): Moshi.Builder

"jobj": 添加对 JsonObject的支持,仿 FastJson,支持Serializable

// 添加JsonAdapter
public fun Moshi.Builder.addMJsonAdapter(): Moshi.Builder

"moshiex": 添加一些常用的数据类型适配器

  • Base64Qualifier 支持自动对Base64编解码
  • EnumJsonIntEnumJsonString 支持枚举类型的json转换支持
  • 非double数值反序列化为long, 序列化 无小数位的double为long
  • Boolean 支持 "1","true" 的兼容

使用

引入依赖

val version = "最新版本"

implementation 'com.github.yizems.MoshiEx:jobj:0.0.2'
implementation 'com.github.yizems.MoshiEx:moshi-android-ext:0.0.2'
implementation 'com.github.yizems.MoshiEx:moshi-ex:0.0.2'

初始化

// 建议使用 moshiInstances
moshiInstances.newBuilder().addAndroidJsonSupport()
    .addMJsonAdapter()
    .build()
    .setToDefault()

MIT

MIT License

Copyright (c) 2022 yizems

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.