Dev:
1、解决vivo市场反馈,系统17下崩溃问题(初步判断加密引起,但需要升级版本重新加密上传) 2、添加客服配置加载显示
This commit is contained in:
parent
0b84bdb904
commit
b06db40dc6
|
|
@ -31,7 +31,6 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
composeOptions {
|
composeOptions {
|
||||||
// 注意:Kotlin 1.8.x 以后建议检查与 Compose 编译器的版本兼容性
|
|
||||||
kotlinCompilerExtensionVersion = "1.4.8"
|
kotlinCompilerExtensionVersion = "1.4.8"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -39,8 +38,8 @@ android {
|
||||||
applicationId = "com.img.rabbit"
|
applicationId = "com.img.rabbit"
|
||||||
minSdk = 24
|
minSdk = 24
|
||||||
targetSdk = 36
|
targetSdk = 36
|
||||||
versionCode = 1
|
versionCode = 2
|
||||||
versionName = "1.0.0"
|
versionName = "1.0.1"
|
||||||
multiDexEnabled = true
|
multiDexEnabled = true
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,7 @@ class UserInfoEntity(
|
||||||
val name: String = "",
|
val name: String = "",
|
||||||
val phone: String = "",
|
val phone: String = "",
|
||||||
val role: String = "",
|
val role: String = "",
|
||||||
|
val show_contact_menu: Boolean = false,
|
||||||
val temp: Boolean = true,
|
val temp: Boolean = true,
|
||||||
val unionid: String = "",
|
val unionid: String = "",
|
||||||
val user_id: String = "",
|
val user_id: String = "",
|
||||||
|
|
|
||||||
|
|
@ -402,6 +402,7 @@ fun MineScreen(
|
||||||
Color(0x4DBBBBBB)
|
Color(0x4DBBBBBB)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
if(userInfo?.show_contact_menu == true){
|
||||||
Row(
|
Row(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
|
|
@ -458,6 +459,7 @@ fun MineScreen(
|
||||||
Color(0x4DBBBBBB)
|
Color(0x4DBBBBBB)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
}
|
||||||
Row(
|
Row(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue