混淆问题

This commit is contained in:
wzq
2023-09-27 21:30:55 +08:00
parent 4395951973
commit e23363c736
3 changed files with 5 additions and 4 deletions

View File

@@ -233,6 +233,7 @@
-keep class org.json.** {*;}
-dontwarn com.yizhuan.xchat_android_core.**
-keep class com.yizhuan.xchat_android_core.** {*;}
-keep class com.yizhuan.treasure_box.bean.** {*;}
#百度统计

View File

@@ -98,7 +98,7 @@ dependencies {
api 'com.google.android.gms:play-services-wallet:19.1.0'
api 'com.android.billingclient:billing:4.1.0'
api 'org.jetbrains.kotlin:kotlin-reflect:1.5.20'
api 'org.jetbrains.kotlin:kotlin-reflect:1.7.10'
api project(':nim_uikit')
api project(':library')

View File

@@ -10,13 +10,13 @@ class NotifyH5Attachment(second: Int) : CustomAttachment(CUSTOM_MSG_NOTIFY_H5, s
}
data class Bean(
val roomUid: Int,
val roomUid: Int? = 0,
/**
* 飘屏类型 0 房间静态飘屏 1 全服动态飘屏
*/
val floatingType: Int,
val floatingType: Int? = 0,
val content: String,
val content: String? = "",
)
}