update text文案

This commit is contained in:
gallonyin
2023-07-27 21:37:25 +08:00
parent 45c6d2643a
commit e04183e68e
3 changed files with 3 additions and 3 deletions

View File

@@ -54,7 +54,7 @@ class MyApplication : Application() {
if (SPUtils.getInstance().getString("uminit", "1") == "1") { if (SPUtils.getInstance().getString("uminit", "1") == "1") {
UMConfigure.init(this, key, channel, UMConfigure.DEVICE_TYPE_PHONE, "") UMConfigure.init(this, key, channel, UMConfigure.DEVICE_TYPE_PHONE, "")
} }
TalkingDataSDK.init(this, "80E9C84E39904DAFB28562910FF7C86C", "worktool_master", Constant.robotId) TalkingDataSDK.init(this, "80E9C84E39904DAFB28562910FF7C86C", getString(R.string.app_name) + "_master", Constant.robotId)
//初始化企业微信sdk //初始化企业微信sdk
IWWAPIUtil.init(this) IWWAPIUtil.init(this)
//初始化自动更新 //初始化自动更新

View File

@@ -146,7 +146,7 @@ class SettingsActivity : AppCompatActivity() {
} else { } else {
QMUIDialog.CheckableDialogBuilder(this) QMUIDialog.CheckableDialogBuilder(this)
.setTitle("检查新版本") .setTitle("检查新版本")
.addItems(arrayOf("检查当前Host新版本", "检查WorkTool官方新版本")) { dialog, which -> .addItems(arrayOf("检查当前Host新版本", "检查${getString(R.string.app_name)}官方新版本")) { dialog, which ->
dialog.dismiss() dialog.dismiss()
if (which == 0) { if (which == 0) {
HttpUtil.checkUpdate() HttpUtil.checkUpdate()

View File

@@ -521,7 +521,7 @@
<TextView <TextView
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="WorkTool官方版本更新检查" android:text="版本更新检查"
android:textColor="@color/color_999999" android:textColor="@color/color_999999"
android:textSize="@dimen/setting_end_font_size" /> android:textSize="@dimen/setting_end_font_size" />