feat:替换项目中应用名关键字等

This commit is contained in:
Max
2023-11-27 12:02:14 +08:00
parent 568bf9b786
commit 0bd3686cd2
32 changed files with 159 additions and 160 deletions

View File

@@ -60,7 +60,7 @@ android {
if (abi == null) {
abi = "universal"
}
outputFileName = "habu_${buildType.name}_v${defaultConfig.versionName}_${abi}_${date}.apk"
outputFileName = "hiyoo_${buildType.name}_v${defaultConfig.versionName}_${abi}_${date}.apk"
}
}
@@ -311,7 +311,7 @@ channel {
//多渠道包的输出目录默认为new File(project.buildDir,"channel")
outputDir = new File(project.buildDir, "channelapk")
//多渠道包的命名规则,默认为:${appName}-${versionName}-${versionCode}-${flavorName}-${buildType}-${buildTime}
apkNameFormat = 'habu-${buildType}-${flavorName}-v${versionName}-${buildTime}'
apkNameFormat = 'hiyoo-${buildType}-${flavorName}-v${versionName}-${buildTime}'
//快速模式生成渠道包时不进行校验速度可以提升10倍以上默认为false
fastMode = false
//buildTime的时间格式默认格式yyyyMMdd-HHmmss

View File

@@ -162,7 +162,7 @@
如果 SDKOptions 中提供了,取 SDKOptions 中的值。
-->
<!-- <activity-->
<!-- android:name="com.vele.habuplay.lineapi.LineAuthenticationCallbackActivity"-->
<!-- android:name="app.hiyoo.fun.lineapi.LineAuthenticationCallbackActivity"-->
<!-- android:exported="true"-->
<!-- android:launchMode="singleTask"-->
<!-- android:noHistory="true">-->
@@ -223,7 +223,7 @@
<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="Habu Live"
android:label="Hiyoo"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan|stateAlwaysHidden" /> <!-- 配置的service和receiver -->

View File

@@ -108,7 +108,7 @@ public class UIHelper {
public static void showMonsterResult(Context context, String monsterId) {
CommonWebViewActivity.start(context, UriProvider.IM_SERVER_URL +
"/anan_vestBag/modules/monster/index.html?monsterId=" + monsterId);
"/hiyoo/modules/monster/index.html?monsterId=" + monsterId);
}
public static void showLabelInfoAct(Activity mActivity, int requestCode) {
@@ -132,11 +132,11 @@ public class UIHelper {
*/
public static void showRecommendPosH5(Context context) {
String cardUrl = UriProvider.JAVA_WEB_URL +
"/anan_vestBag/modules/recommend-card/index.html";
"/hiyoo/modules/recommend-card/index.html";
CommonWebViewActivity.start(context, cardUrl);
}
public static void openContactUs(Context context) {
CommonWebViewActivity.start(context, UriProvider.IM_SERVER_URL + "/anan_vestBag/modules/contact/contact.html");
CommonWebViewActivity.start(context, UriProvider.IM_SERVER_URL + "/hiyoo/modules/contact/contact.html");
}
}

View File

@@ -12,7 +12,7 @@ class RoomPKSearchAdapter :
override fun convert(helper: BaseViewHolder, item: SimpleRoomInfo) {
helper.setText(R.id.tv_room_title,item.title.subAndReplaceDot(7))
.setText(R.id.tv_room_id,"Habu Live号:${item.erbanNo}")
.setText(R.id.tv_room_id,"Hiyoo号:${item.erbanNo}")
.setChecked(R.id.check_box,item.checked)
ImageLoadUtils.loadImage(mContext,item.avatar,helper.getView(R.id.iv_avatar))
helper.addOnClickListener(R.id.iv_avatar,R.id.check_box)

View File

@@ -60,7 +60,7 @@ public class MyRecommendCardActivity extends BaseViewBindingActivity<ActivityMyR
@Override
public void performAction(View view) {
CommonWebViewActivity.start(context, UriProvider.JAVA_WEB_URL +
"/anan_vestBag/modules/recommend-card/help.html");
"/hiyoo/modules/recommend-card/help.html");
}
});
}

View File

@@ -29,7 +29,7 @@ import org.greenrobot.eventbus.Subscribe
import org.greenrobot.eventbus.ThreadMode
/**
* Peko首页
首页
*/
class AccompanyFragment : BaseViewBindingFragment<FragmentAccompanyBinding>() {
private lateinit var charAdapter: HomeChatAdapter

View File

@@ -11,7 +11,7 @@ import com.chwl.app.ui.search.SearchActivity
import com.chwl.core.DemoCache
/**
* Peko首页
首页
*/
class HomeFragment : BaseViewBindingFragment<FragmentHomeBinding>(), View.OnClickListener {

View File

@@ -24,7 +24,7 @@ import org.greenrobot.eventbus.Subscribe
import org.greenrobot.eventbus.ThreadMode
/**
* Peko首页
首页
*/
class PartyFragment : BaseFragment(), PartyMagicIndicatorAdapter.OnItemSelectListener {
private lateinit var mBinding: FragmentPartyBinding

View File

@@ -24,7 +24,7 @@ import org.greenrobot.eventbus.Subscribe
import org.greenrobot.eventbus.ThreadMode
/**
* Peko首页
首页
*/
class RecommendFragment : BaseViewBindingFragment<FragmentRecommendBinding>() {

View File

@@ -119,7 +119,7 @@ public class RadishRecordActivity extends BaseMvpActivity<IRadishRecordView, Rad
mTitleBar.addAction(new TitleBar.ImageAction(R.mipmap.common_ic_help_white) {
@Override
public void performAction(View view) {
CommonWebViewActivity.start(RadishRecordActivity.this, UriProvider.JAVA_WEB_URL + "/anan_vestBag/modules/rule/radish.html");
CommonWebViewActivity.start(RadishRecordActivity.this, UriProvider.JAVA_WEB_URL + "/hiyoo/modules/rule/radish.html");
}
});
}

View File

@@ -30,7 +30,7 @@ public class RuleDialog extends BaseBindingDialog<DialogRuleBinding> {
binding.wvRule.getSettings().setTextZoom(100);
binding.wvRule.setWebViewClient(new WebViewClient());
// 设置Webview的user-agent
binding.wvRule.getSettings().setUserAgentString(binding.wvRule.getSettings().getUserAgentString() + " habuAppAndroid erbanAppAndroid");
binding.wvRule.loadUrl(UriProvider.JAVA_WEB_URL + "/anan_vestBag/modules/rule/rule-popup.html");
binding.wvRule.getSettings().setUserAgentString(binding.wvRule.getSettings().getUserAgentString() + " hiyooAppAndroid");
binding.wvRule.loadUrl(UriProvider.JAVA_WEB_URL + "/hiyoo/modules/rule/rule-popup.html");
}
}

View File

@@ -400,7 +400,7 @@ public class MessageFragment extends TFragment implements ModuleProxy, MessageLi
private JSONObject hwField(IMMessage message) {
Intent hwIntent = new Intent(Intent.ACTION_VIEW);
String intentStr = String.format(
"habupushscheme://com.huawei.codelabpush/deeplink?sessionID=%s&sessionType=%s",
"hiyoopushscheme://com.huawei.codelabpush/deeplink?sessionID=%s&sessionType=%s",
sessionId, sessionType
);
hwIntent.putExtra("skiptype", PushMessageHandler.PAYLOAD_SKIPTYPE_PRIVATE_MSG);

View File

@@ -51,7 +51,7 @@ public class AddUserInfoFragment extends BaseFragment
private int gender = -1;
private XRadioGroup rgGender;
private RadioButton rbMale;
private String avatarUrl = "https://img.anan.chat/default_avatar.png";
private String avatarUrl = "https://img.hiyoo.fun/default_avatar.png";
public static String INVITE_USER_CODE = "";

View File

@@ -319,7 +319,7 @@ public class CommonWebViewActivity extends BaseActivity implements ShareDialog.O
// 设置setWebChromeClient对象
webView.setWebChromeClient(wvcc);
// 设置Webview的user-agent
webView.getSettings().setUserAgentString(webView.getSettings().getUserAgentString() + " habuAppAndroid erbanAppAndroid");
webView.getSettings().setUserAgentString(webView.getSettings().getUserAgentString() + " hiyooAppAndroid");
}
private void onGotoAppFinish(WebView view) {

View File

@@ -105,7 +105,7 @@ public class CommonWebViewFragment extends BaseBindingFragment<FragmentCommonWeb
}
});
// 设置Webview的user-agent
webView.getSettings().setUserAgentString(webView.getSettings().getUserAgentString() + " habuAppAndroid erbanAppAndroid");
webView.getSettings().setUserAgentString(webView.getSettings().getUserAgentString() + " hiyooAppAndroid");
}
@Override

View File

@@ -181,7 +181,7 @@ public class SimpleWebViewActivity extends AppCompatActivity {
// 设置setWebChromeClient对象
webView.setWebChromeClient(wvcc);
// 设置Webview的user-agent
webView.getSettings().setUserAgentString(webView.getSettings().getUserAgentString() + " habuAppAndroid erbanAppAndroid");
webView.getSettings().setUserAgentString(webView.getSettings().getUserAgentString() + " hiyooAppAndroid");
}
private void initView() {

View File

@@ -157,15 +157,15 @@ public class MonsterDialog extends BaseDialog implements View.OnClickListener {
case R.id.tv_msg:
long beforeAppearSeconds = dataBean.getBeforeAppearSeconds();
if (beforeAppearSeconds >= 30) {
CommonWebViewActivity.start(getContext(), UriProvider.IM_SERVER_URL + "/anan_vestBag/modules/monster/intro.html");
CommonWebViewActivity.start(getContext(), UriProvider.IM_SERVER_URL + "/hiyoo/modules/monster/intro.html");
} else if (beforeAppearSeconds < 30 && beforeAppearSeconds > 15) {
CommonWebViewActivity.start(getContext(), UriProvider.IM_SERVER_URL + "/anan_vestBag/modules/monster/intro.html");
CommonWebViewActivity.start(getContext(), UriProvider.IM_SERVER_URL + "/hiyoo/modules/monster/intro.html");
} else if (beforeAppearSeconds <= 15) {
AVRoomActivity.start(getContext(), dataBean.getAppearRoomUid());
}
if (dataBean.getMonsterStatus() == MonsterInfo.MONSTER_STATUS_DID_DEAD) {
CommonWebViewActivity.start(getContext(), UriProvider.IM_SERVER_URL +
"/anan_vestBag/modules/monster/index.html?monsterId=" + dataBean.getMonsterId());
"/hiyoo/modules/monster/index.html?monsterId=" + dataBean.getMonsterId());
}
break;
}

View File

@@ -348,7 +348,7 @@ public class WithdrawActivity extends BaseViewBindingActivity<ActivityWithdrawBi
});
binding.tvWithdrawRule.setOnClickListener(v -> CommonWebViewActivity.start(
context, UriProvider.IM_SERVER_URL + "/anan_vestBag/modules/guide/output.html"));
context, UriProvider.IM_SERVER_URL + "/hiyoo/modules/guide/output.html"));
//切换类型
binding.tvWithdrawType.setVisibility(View.GONE);

View File

@@ -16,6 +16,6 @@ public class WithdrawRuleActivity extends BaseActivity {
setContentView(R.layout.activity_withdraw_rule);
initTitleBar(ResUtil.getString(R.string.ui_withdraw_withdrawruleactivity_01));
mWebView = (WebView) findViewById(R.id.wv_view);
mWebView.loadUrl(UriProvider.IM_SERVER_URL+"/anan_vestBag/modules/guide/withdraw.html");
mWebView.loadUrl(UriProvider.IM_SERVER_URL+"/hiyoo/modules/guide/withdraw.html");
}
}

View File

@@ -65,6 +65,6 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/fl_room_history_avatar_container"
tools:text="Habu LiveHabu Live" />
tools:text="HiyooHiyoo" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -1,4 +1,4 @@
<!DOCTYPE resources [<!ENTITY app_name "Habu Live" >]>
<!DOCTYPE resources [<!ENTITY app_name "Hiyoo" >]>
<resources>
<string name="no_list_data">暫無消息</string>
<string name="str_network_not_capable">網絡不給力</string>
@@ -118,7 +118,7 @@
<string name="text_chat_limit">僅%s或%s的用戶可發起聊天</string>
<string name="room_offline">房主已下線</string>
<string name="root_offline_notice">更多好玩的房間在Habu Live等您喲!去看看!</string>
<string name="root_offline_notice">更多好玩的房間在Hiyoo等您喲!去看看!</string>
<string name="home">主頁</string>
<string name="back">返回</string>
<string name="fan">粉絲</string>
@@ -130,7 +130,7 @@
<string name="friend">好友</string>
<string name="attention">關註</string>
<string name="no_frenids_text">你還沒有添加任何好友哦! \n快去添加好友吧!</string>
<string name="no_fan_text">你還沒有任何Habu Live粉絲哦!</string>
<string name="no_fan_text">你還沒有任何Hiyoo粉絲哦!</string>
<string name="my_jewel">我的鉆石余額</string>
<string name="jewel_withdraw">鉆石可以用於提現兌換比率1元=10鉆</string>
<string name="main_home">首頁</string>
@@ -166,7 +166,7 @@
<string name="my_attention">我的關註</string>
<string name="my_fan">我的粉絲</string>
<string name="no_attention_text">你還沒有關註任何Habu Live好友哦! \n快去添加關註吧!</string>
<string name="no_attention_text">你還沒有關註任何Hiyoo好友哦! \n快去添加關註吧!</string>
<string name="search_hint">搜索昵稱或ID</string>
<string name="search_user_id">搜索用戶ID</string>
<string name="search_room_or_id">搜索房間名稱或ID</string>
@@ -260,7 +260,7 @@
<string name="pk_opponent_result"> 查看對方戰績></string>
<string name="pk_mine_result"> 查看我的戰績></string>
<string name="pk_tip_do_not_give_up">別氣餒Habu Live永遠支持你哦!</string>
<string name="pk_tip_do_not_give_up">別氣餒Hiyoo永遠支持你哦!</string>
<!--密聊-->
@@ -342,7 +342,7 @@
<string name="car_detail_price_days2">%1$d&#160;&#160;&#160;&#160;有效期%2$d天</string>
<string name="car_user_info_off_shelf">該車輛已下架,無法購買</string>
<string name="car_dialog_content_before">開著你的車,駕著你的馬</string>
<string name="car_dialog_content_after">來Habu Live盡情馳騁吧!</string>
<string name="car_dialog_content_after">來Hiyoo盡情馳騁吧!</string>
<string name="car_shop_name">座駕商城</string>
<string name="decoration_status_wrapper">%1$s</string>
<string name="decoration_remainder">剩餘</string>
@@ -362,7 +362,7 @@
5 打爆怪獸的獎勵將會隨著怪獸的實力血值增加而增加例如打爆一只血值1000的怪獸將獲得總價不少於1000鉆石的鉆石或者座駕獎勵\n
6 若有疑問請咨詢Habu Live客服:\n
6 若有疑問請咨詢Hiyoo客服:\n
</string>
<string name="text_monster_hunting_introduction">·玩法介紹·</string>
<string name="text_ok">確定</string>
@@ -426,7 +426,7 @@
<string name="family_exit_family">退出家族</string>
<string name="family_exit_family_tip">退出家族後您的家族幣將無法使用\n重新加入即可還原,你真的要退出嗎?</string>
<string name="family_invite_friends">邀請好友</string>
<string name="family_invite_friends_slogan">【Habu Live】 用聲音表達心情,用家族傳承微笑。</string>
<string name="family_invite_friends_slogan">【Hiyoo】 用聲音表達心情,用家族傳承微笑。</string>
<string name="family_join">加入</string>
<string name="family_search_member_hint">搜索成員ID/昵稱 </string>
<string name="family_manage_title">家族管理</string>
@@ -446,7 +446,7 @@
<string name="family_join_valid_hint">加入家族身份驗證</string>
<string name="family_disband">解散家族</string>
<string name="common_tip">提示</string>
<string name="family_disband_tip1">需要聯系客服才能解散家族哦~\nHabu Live家族客服:%1$s</string>
<string name="family_disband_tip1">需要聯系客服才能解散家族哦~\nHiyoo家族客服:%1$s</string>
<string name="family_contact_service">聯系客服</string>
<string name="family_join_tip">確認加入"%1$s"嗎?</string>
<string name="family_join_hint">我希望加入貴家族</string>
@@ -538,7 +538,7 @@
<string name="tab_title_friends">好友</string>
<string name="tab_title_attentions">關註</string>
<string name="tab_title_fans">粉絲</string>
<string name="title_share_dialog">每天第一次分享免費領紅包不包含分享至Habu Live好友)</string>
<string name="title_share_dialog">每天第一次分享免費領紅包不包含分享至Hiyoo好友)</string>
<string name="text_share_erban_friends">好友</string>
<string name="text_share_Google">Google</string>
<string name="tab_title_team"></string>
@@ -564,7 +564,7 @@
<string name="tips_bind_alipay_sms_code">驗證碼將發送至您綁定的手機\"{0}\",請註意查收</string>
<string name="home_more">更多</string>
<string name="text_qq_login_erban_member">我是兔兔老用戶</string>
<string name="text_qq_login_tutu_member">我是Habu Live新用戶</string>
<string name="text_qq_login_tutu_member">我是Hiyoo新用戶</string>
<string name="text_login">登錄</string>
<string name="text_login_auth_code">授權碼</string>
<string name="text_login_code">驗證碼</string>
@@ -578,7 +578,7 @@
<string name="label_recall_title">親愛的小孩:</string>
<string name="label_recall_content">好久不見,翻起曾經一起度過的時光,期待你再次出現在身旁,謝謝你回來!</string>
<string name="hint_recall_input">請輸入邀請碼(選填)</string>
<string name="tips_recall">輸入邀請碼邀請你加入的好友和你都可以獲得Habu Live回歸計劃的超級大禮哦!</string>
<string name="tips_recall">輸入邀請碼邀請你加入的好友和你都可以獲得Hiyoo回歸計劃的超級大禮哦!</string>
<string name="label_recall_accept">收下回歸禮</string>
<string name="label_user_info_avatar">頭像:</string>
@@ -664,7 +664,7 @@
<string name="KTV_ing">KTV中…</string>
<string name="common_loading_tips">加載中…</string>
<string name="text_default_nick">Habu Live小新</string>
<string name="text_default_nick">Hiyoo小新</string>
<string name="text_default_code">請輸入邀請碼(選填)</string>
<string name="text_room_queuing_micro_mode">排麥模式</string>
@@ -835,7 +835,7 @@
<string name="label_charge_gold">我的賬戶</string>
<string name="old_app_name">Habu Live</string>
<string name="old_app_name">Hiyoo</string>
<string name="tip_login_how_login">如何登錄?</string>
<string name="tip_login_old_account">%s也可登錄%s哦 %s</string>
<string name="me_mentoring_relationship_title">收個徒弟贏鉆石</string>
@@ -1028,7 +1028,6 @@
<string name="me_error_playing">播放出錯,請重試</string>
<string name="me_roomid">房間ID:</string>
<string name="me_room_number_people">房間人數:</string>
<string name="me_peko_number">ID:</string>
<string name="me_association">公會</string>
<string name="me_association_id">公會ID:</string>
<string name="me_association_number">公會人數:</string>
@@ -1490,7 +1489,7 @@
<string name="avroom_fragment_baseroomfragment_01">房間更新事件</string>
<string name="avroom_fragment_baseroomfragment_02">進入房間事件</string>
<string name="avroom_fragment_baseroomfragment_03">語音房_推廣入口</string>
<string name="avroom_fragment_baseroomfragment_04">發送失敗Habu Live提醒您文明用語~</string>
<string name="avroom_fragment_baseroomfragment_04">發送失敗Hiyoo提醒您文明用語~</string>
<string name="avroom_fragment_baseroomfragment_05">語音房_公屏發言</string>
<string name="avroom_fragment_baseroomfragment_06">房間榜</string>
<string name="avroom_fragment_baseroomfragment_07">網絡異常,請重試!</string>
@@ -2181,7 +2180,7 @@
<string name="radish_signin_signinactivity_02">本輪已用完補簽機會</string>
<string name="radish_signin_signinactivity_03">分享好友</string>
<string name="radish_signin_signinactivity_04"> 即可獲得補簽機會\n</string>
<string name="radish_signin_signinactivity_05">分享後返回Habu Live才有效哦~</string>
<string name="radish_signin_signinactivity_05">分享後返回Hiyoo才有效哦~</string>
<string name="radish_signin_signinactivity_06">分享好友</string>
<string name="radish_signin_signinactivity_07">本次補簽需要消耗 </string>
<string name="radish_signin_signinactivity_08">蘿蔔</string>
@@ -2778,8 +2777,8 @@
<string name="ui_widget_maintablayout_04">我的tab</string>
<string name="ui_widget_marqueelayout_01">[liao] 內容字體長度=</string>
<string name="ui_widget_recalldialog_01">親愛的</string>
<string name="ui_widget_sharedialog_01">該內容不能分享給Habu Live好友</string>
<string name="ui_widget_sharedialog_02">該內容不能分享給Habu Live好友</string>
<string name="ui_widget_sharedialog_01">該內容不能分享給Hiyoo好友</string>
<string name="ui_widget_sharedialog_02">該內容不能分享給Hiyoo好友</string>
<string name="ui_widget_userinfodialog_01"></string>
<string name="ui_widget_userinfodialog_02">該用戶已不在麥位上,請重新選擇</string>
<string name="ui_widget_userinfodialog_03">已關註Ta</string>
@@ -2941,7 +2940,7 @@
<string name="layout_activity_lucky_money_detail_02">金豆</string>
<string name="layout_activity_lucky_money_detail_03">人名長度要限製在十個字以內</string>
<string name="layout_activity_lucky_money_detail_04">領取12/14個剩餘12.600金豆</string>
<string name="layout_activity_main_01">Habu Live小新</string>
<string name="layout_activity_main_01">Hiyoo小新</string>
<string name="layout_activity_modify_pwd_01">請輸入當前登錄密碼</string>
<string name="layout_activity_modify_pwd_02">原密碼</string>
<string name="layout_activity_modify_pwd_03">請輸入新的登錄密碼</string>
@@ -3236,8 +3235,8 @@
<string name="layout_dialog_new_user_charge_prize_01">裝扮已放至【我的裝扮】</string>
<string name="layout_dialog_new_user_gift_01">獲得新人禮物 </string>
<string name="layout_dialog_new_user_gift_02">已放入背包,盡快使用吧~</string>
<string name="layout_dialog_new_user_hello_01">Habu Live可可鴨Habu Live可...</string>
<string name="layout_dialog_new_user_hello_02">歡迎來到Habu LiveTa已經等待你很\n久啦快來一起玩吧~</string>
<string name="layout_dialog_new_user_hello_01">Hiyoo可可鴨Hiyoo可...</string>
<string name="layout_dialog_new_user_hello_02">歡迎來到HiyooTa已經等待你很\n久啦快來一起玩吧~</string>
<string name="layout_dialog_new_user_hello_03">開啟浪漫之旅</string>
<string name="layout_dialog_patriarch_mode_01">青少年保護</string>
<string name="layout_dialog_pk_result_01">拉拉</string>
@@ -3831,7 +3830,7 @@
<string name="layout_popup_message_tip_01">用戶昵稱用戶昵稱稱稱</string>
<string name="layout_popup_message_tip_02">一二三四五六七八</string>
<string name="layout_pull_radish_ranking_list_item_01">我的我的我的我的我我我我我的我的我我我我我我我我</string>
<string name="layout_red_packet_dialog_01">Habu Live送你一個現金紅包</string>
<string name="layout_red_packet_dialog_01">Hiyoo送你一個現金紅包</string>
<string name="layout_red_packet_dialog_02"></string>
<string name="layout_red_packet_dialog_03">恭喜您獲得</string>
<string name="layout_red_packet_dialog_04">獎勵紅包</string>
@@ -4067,7 +4066,7 @@
<string name="hall_activity_hallnamesettingactivity_03">房間名不能為空</string>
<string name="hall_activity_hallnamesettingactivity_04">房間名不能超過15個字</string>
<string name="hall_activity_hallnamesettingactivity_05">保存成功</string>
<string name="hall_activity_hallsearchactivity_01">搜索昵稱/Habu LiveID</string>
<string name="hall_activity_hallsearchactivity_01">搜索昵稱/HiyooID</string>
<string name="hall_activity_incomestatisticsactivity_01">收入統計入口</string>
<string name="hall_activity_incomestatisticsactivity_02">收入統計</string>
<string name="hall_activity_incomestatisticsactivity_03">每日統計</string>
@@ -4164,7 +4163,7 @@
<string name="module_hall_secretcode_pwdcodemgr_06">版本過舊,請下載最新版本哦</string>
<string name="module_hall_secretcode_pwdcodemgr_07">立即加入</string>
<string name="module_hall_secretcode_pwdcodemgr_08">通過暗號加入廳</string>
<string name="module_hall_secretcode_pwdcodemgr_09">添加成員-Habu LiveID</string>
<string name="module_hall_secretcode_pwdcodemgr_09">添加成員-HiyooID</string>
<string name="module_hall_secretcode_secretcodedialog_03">有效,過期後重新獲取</string>
<string name="team_activity_createhallteamactivity_01">公開群全站用戶可加入,只能創建</string>
<string name="team_activity_createhallteamactivity_02">個;\n內部群僅廳成員可加入最多創建</string>
@@ -4267,7 +4266,7 @@
<string name="layout_activity_team_info_edit_012">設置禁言</string>
<string name="layout_activity_vip_main_01">即將上線敬請期待</string>
<string name="layout_activity_vip_main_02">尚未開通貴族</string>
<string name="layout_activity_vip_main_03">¥6立刻成為Habu Live貴族</string>
<string name="layout_activity_vip_main_03">¥6立刻成為Hiyoo貴族</string>
<string name="layout_activity_vip_main_04">當前等級</string>
<string name="layout_activity_vip_main_05">騎士</string>
<string name="layout_activity_vip_main_06">還差:</string>
@@ -4285,8 +4284,8 @@
<string name="layout_dialog_secret_code_02">我是emoji\n我是emoji</string>
<string name="layout_dialog_secret_code_03">7天內(2月18日前)有效,過期後需重新獲取</string>
<string name="layout_dialog_share_secret_code_01">添加成員</string>
<string name="layout_dialog_share_secret_code_02">Habu LiveID添加</string>
<string name="layout_include_user_module_hall_01">Habu Live女神廳</string>
<string name="layout_dialog_share_secret_code_02">HiyooID添加</string>
<string name="layout_include_user_module_hall_01">Hiyoo女神廳</string>
<string name="layout_include_user_module_hall_02">公開群名稱</string>
<string name="layout_item_auth_menu_01">添加成員</string>
<string name="layout_item_auth_setting_01">添加成員權限</string>
@@ -4298,7 +4297,7 @@
<string name="layout_item_clan_income_05">開廳時長</string>
<string name="layout_item_clan_income_06">送禮人數</string>
<string name="layout_item_clan_income_07">新用戶送禮人數</string>
<string name="layout_item_group_list_01">Habu Live女神</string>
<string name="layout_item_group_list_01">Hiyoo女神</string>
<string name="layout_item_hall_01">忘憂閣忘憂閣忘憂閣忘憂閣</string>
<string name="layout_item_income_01">吉林吉林</string>
<string name="layout_item_income_02">吉林吉林</string>
@@ -4326,7 +4325,7 @@
<string name="mentoring_relationship_activity_mentoringrelationshipactivity_02">去收徒</string>
<string name="mentoring_relationship_activity_mentoringrelationshipactivity_03">名師排行榜</string>
<string name="mentoring_relationship_dialog_grabapprenticesnoticedialog_01">師徒推送-點擊跳轉</string>
<string name="layout_dialog_grab_apprentices_notify_01">Habu Live:您收到一條收徒消息哦!</string>
<string name="layout_dialog_grab_apprentices_notify_01">Hiyoo:您收到一條收徒消息哦!</string>
<string name="layout_dialog_release_mentoring_relationship_success_01">解除成功!</string>
<string name="layout_item_grab_apprentice_01">啊哈哈哈哈哈哈</string>
<string name="layout_item_mentoring_relationship_results_display_01">啦啦啦啦啦啦啦啦啦啦啊啊啊</string>
@@ -4338,11 +4337,11 @@
<string name="layout_view_holder_apprentice_mission_four_02">小明同學啦啦啦啦</string>
<string name="layout_view_holder_apprentice_mission_four_03">·給他發送拜師函吧·</string>
<string name="layout_view_holder_apprentice_mission_four_04">關註並打招呼</string>
<string name="layout_view_holder_apprentice_mission_four_05">小哥哥你就從了我吧,做我徒弟,以後我們一起浪跡Habu Live,你是風兒我是沙!</string>
<string name="layout_view_holder_apprentice_mission_four_05">小哥哥你就從了我吧,做我徒弟,以後我們一起浪跡Hiyoo,你是風兒我是沙!</string>
<string name="layout_view_holder_apprentice_mission_one_01">哇哦 終於搶到你~\n這就是緣分吧</string>
<string name="layout_view_holder_apprentice_mission_one_02">小明同學啦啦啦啦</string>
<string name="layout_view_holder_apprentice_mission_one_03">就讓我們從這裏開啟師徒之旅吧!\n你認我做師傅我教你梳中分~</string>
<string name="layout_view_holder_apprentice_mission_one_04">Habu Live所有問題都可以問Ta哦~</string>
<string name="layout_view_holder_apprentice_mission_one_04">Hiyoo所有問題都可以問Ta哦~</string>
<string name="layout_view_holder_apprentice_mission_three_01">拜師禮物</string>
<string name="layout_view_holder_apprentice_mission_three_02">花花由官方提供,不扣任何鉆石哦!</string>
<string name="layout_view_holder_apprentice_mission_three_03">新人小花</string>
@@ -4672,13 +4671,13 @@
<string name="public_chat_hall_activity_publicchathallrelatedtomeactivity_01">我的消息</string>
<string name="public_chat_hall_activity_publicchathallrelatedtomeactivity_02">我的頭條</string>
<string name="public_chat_hall_fragment_publicchathallmessagefragment_01">進入交友大廳</string>
<string name="public_chat_hall_fragment_publicchathallmessagefragment_02">發送失敗Habu Live提醒您文明用語~</string>
<string name="public_chat_hall_fragment_publicchathallmessagefragment_02">發送失敗Hiyoo提醒您文明用語~</string>
<string name="public_chat_hall_fragment_publicchathallmessagefragment_03">發送失敗Pieko提醒您文明用語~</string>
<string name="public_chat_hall_fragment_publicchathallmessagefragment_04">送該禮物</string>
<string name="public_chat_hall_fragment_publicchathallmessagefragment_05">公聊大廳</string>
<string name="public_chat_hall_fragment_publicchathallmessagefragment_06">資料卡片-主頁</string>
<string name="public_chat_hall_fragment_publicchathallmessagefragment_07">你已被禁言,剩餘</string>
<string name="public_chat_hall_fragment_publicchathallmessagefragment_08">分鐘。Habu Live提醒您文明用語</string>
<string name="public_chat_hall_fragment_publicchathallmessagefragment_08">分鐘。Hiyoo提醒您文明用語</string>
<string name="public_chat_hall_fragment_publicchathallmessagefragment_09">我在交友大廳發現好玩的東西!@你了 快點過來看看~</string>
<string name="public_chat_hall_fragment_publicchathallmymessagefragment_01">/@我的</string>
<string name="public_chat_hall_fragment_publicchathallmymessagefragment_02">我發出的</string>
@@ -4935,12 +4934,12 @@
<string name="department_of_management">所屬廳</string>
<string name="give_gift">送礼物</string>
<string name="room_perform_go_update">去設置</string>
<string name="permission_storage_rationale">請您再次考慮授予Habu Live存儲空間權限否則Habu Live將無法正常加載您本地的文件內容。</string>
<string name="permission_camera_rationale">請您再次考慮授予Habu Live攝像頭權限否則Habu Live將無法取得您拍攝的內容。</string>
<string name="permission_storage_rationale">請您再次考慮授予Hiyoo存儲空間權限否則Hiyoo將無法正常加載您本地的文件內容。</string>
<string name="permission_camera_rationale">請您再次考慮授予Hiyoo攝像頭權限否則Hiyoo將無法取得您拍攝的內容。</string>
<string name="permission_storage_denied">為了能正常加載您本地的文件內容,請前往應用權限設置界面打開存儲空間權限。</string>
<string name="permission_camera_denied">為了能取得您拍攝的內容,請前往應用權限設置界面打開攝像頭權限。</string>
<string name="permission_storage_refused">您已拒絕提供存儲空間權限Habu Live將無法正常加載您本地的文件內容。</string>
<string name="permission_camera_refused">您已拒絕提供攝像頭權限Habu Live將無法取得您拍攝的內容。</string>
<string name="permission_storage_refused">您已拒絕提供存儲空間權限Hiyoo將無法正常加載您本地的文件內容。</string>
<string name="permission_camera_refused">您已拒絕提供攝像頭權限Hiyoo將無法取得您拍攝的內容。</string>
<string name="detail">明細</string>
<string name="convert_diamond">兌換鉆石</string>
<string name="gold">金幣</string>
@@ -5102,11 +5101,11 @@
<string name="Member_income">成員收入</string>
<string name="Senior_management_setup">高管設置</string>
<string name="contract_statement">簽約流水</string>
<string name="welcome_to_app">Welcome to Habu Live</string>
<string name="welcome_to_app">Welcome to Hiyoo</string>
<string name="account_login">賬號登錄</string>
<string name="code_login">短信登錄</string>
<string name="please_input_app_account">請輸入Habu Live賬號</string>
<string name="please_input_app_account">請輸入Hiyoo賬號</string>
<string name="please_get_code">請獲取驗證碼</string>
<string name="Please_enter_the_authorization_code">請輸入授權碼</string>
<string name="select_your_gender">請選擇您的性別</string>
@@ -5124,7 +5123,7 @@
<string name="buy_love_num">購買%d個愛心</string>
<string name="please_select_or_enter_the_quantity_of_hearts_purchased">請選擇或輸入購買的愛心數量</string>
<string name="how_to_recharge_with_cs">如何儲值:</string>
<string name="tips_cs_recharge">1.在Habu Live語音App內前往【我的】—【儲值鑽石】進行儲值\n2.聯繁客服獲取儲值鏈接\n客服WeChat: %s 複製\n客服Line: %s 複製\n3.如遇提示"儲值失敗,請聯系客服處理~",請添加客服進行處理</string>
<string name="tips_cs_recharge">1.在Hiyoo語音App內前往【我的】—【儲值鑽石】進行儲值\n2.聯繁客服獲取儲值鏈接\n客服WeChat: %s 複製\n客服Line: %s 複製\n3.如遇提示"儲值失敗,請聯系客服處理~",請添加客服進行處理</string>
<string name="fairy_debris_not_enough_please_buy">可用碎片不足,請購買</string>
<string name="zero">0</string>
<string name="please_input_quantity">輸入數量</string>

View File

@@ -11,7 +11,7 @@
<string name="toast_unbind_bank_card_success">解除綁定銀行卡成功</string>
<string name="title_add_bank_card_agreement">用戶服務協議及隱私政策</string>
<string name="text_add_bank_card_agreement">
尊敬的Habu Live用戶:\n\u3000\u3000為了更好地保障你的合法權益
尊敬的Hiyoo用戶:\n\u3000\u3000為了更好地保障你的合法權益
讓你正常使用%s服務%s公司依照國家法律法規對支付賬戶進行實名製管理、
履行反洗錢職責並采取風險防控措施。你需要向%s公司以及合作公司匯聚支付提交身份信息、
聯系方式、交易信息。\n\u3000\u3000%s公司將嚴格依據國家法律法規收集、存儲、使用你的個人信息確保信息安全。

View File

@@ -45,7 +45,7 @@ class SuperAdminAddActivity : BaseViewBindingActivity<ActivitySuperAdminAddBindi
if (view.id == R.id.tv_set) {
adminAdapter.getItem(position)?.let {
dialogManager.showOkCancelDialog(
"確定要添加用戶 ${it.nick} (Habu LiveID:${it.erbanNo})為公會超級管理員嗎?",
"確定要添加用戶 ${it.nick} (HiyooID:${it.erbanNo})為公會超級管理員嗎?",
true
) {
SuperAdminRoomSetActivity.start(this, clanId, it.uid)

View File

@@ -55,42 +55,42 @@ public class UriProvider {
* @return -
*/
public static String getRoomBg() {
return IM_SERVER_URL.concat("/anan_vestBag/modules/noble/roomBgList.html");
return IM_SERVER_URL.concat("/hiyoo/modules/noble/roomBgList.html");
}
/**
* 贵族介绍页
*/
public static String getNobleIntro() {
return IM_SERVER_URL.concat("/anan_vestBag/modules/nobles/intro.html");
return IM_SERVER_URL.concat("/hiyoo/modules/nobles/intro.html");
}
/**
* 贵族介绍页
*/
public static String getRanking() {
return IM_SERVER_URL.concat("/anan_vestBag/modules/rank/index.html#/rank");
return IM_SERVER_URL.concat("/hiyoo/modules/rank/index.html#/rank");
}
/**
* 帮助页
*/
public static String getHelp() {
return IM_SERVER_URL.concat("/anan_vestBag/modules/rule/guide.html");
return IM_SERVER_URL.concat("/hiyoo/modules/rule/guide.html");
}
/**
* 等级界面
*/
public static String getUserLevelUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/level/index.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/level/index.html");
}
/**
* 邀请好友
*/
public static String getShareUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/inviteCode/index.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/inviteCode/index.html");
}
@@ -98,7 +98,7 @@ public class UriProvider {
* 等级界面
*/
public static String getUserCharmLevelUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/charm/index.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/charm/index.html");
}
@@ -108,7 +108,7 @@ public class UriProvider {
* @return
*/
public static String getErbanTopMessageUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/headNews/index.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/headNews/index.html");
}
/**
@@ -117,7 +117,7 @@ public class UriProvider {
* @return
*/
public static String getRelatedToMeHeadLineUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/headNews/index.html?atMe=1");
return JAVA_WEB_URL.concat("/hiyoo/modules/headNews/index.html?atMe=1");
}
/**
@@ -126,7 +126,7 @@ public class UriProvider {
* @return
*/
public static String getCreateFamilyUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/family/create.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/family/create.html");
}
/**
@@ -135,7 +135,7 @@ public class UriProvider {
* @return
*/
public static String getFamilyInstructionUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/family/handbook.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/family/handbook.html");
}
/**
@@ -144,7 +144,7 @@ public class UriProvider {
* @return
*/
public static String getFamilyCurrencyHelpUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/family/faq.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/family/faq.html");
}
/**
@@ -153,7 +153,7 @@ public class UriProvider {
* @return
*/
public static String getReportWallUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/inform/inform-list.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/inform/inform-list.html");
}
/**
@@ -162,7 +162,7 @@ public class UriProvider {
* @return
*/
public static String getPublicChatHallHelpUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/inform/help.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/inform/help.html");
}
/**
@@ -171,7 +171,7 @@ public class UriProvider {
* @return
*/
public static String getUserProtocolUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/protocol.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/protocol.html");
}
/**
@@ -180,23 +180,23 @@ public class UriProvider {
* @return
*/
public static String getUserReportUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/inform/index.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/inform/index.html");
}
/**
* 话题-说明
*/
public static String getMiniWorldRuleUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/world-rule/index.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/world-rule/index.html");
}
/**
* Peko专属实名认证页面
* Hiyoo专属实名认证页面
*
* @return
*/
public static String getTutuRealNamePage() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/identity/new.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/identity/new.html");
}
/**
@@ -205,7 +205,7 @@ public class UriProvider {
* @return
*/
public static String getMyIncomeUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/myincome/index.html#/MyIncome");
return JAVA_WEB_URL.concat("/hiyoo/modules/myincome/index.html#/MyIncome");
}
/**
@@ -214,7 +214,7 @@ public class UriProvider {
* @return
*/
public static String getRechargeAgreementUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/rechargeAgreement.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/rechargeAgreement.html");
}
/**
@@ -223,7 +223,7 @@ public class UriProvider {
* @return
*/
public static String getMentoringRelationshipGuide() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/strategy/strategy.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/strategy/strategy.html");
}
/**
@@ -232,11 +232,11 @@ public class UriProvider {
* @return
*/
public static String getMentorRankingList() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/strategy/teacher-list.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/strategy/teacher-list.html");
}
public static String getCommnunityNorms() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/community-norms.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/community-norms.html");
}
/**
@@ -245,7 +245,7 @@ public class UriProvider {
* @return
*/
public static String getPrivacyAgreement() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/privacy-wap.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/privacy-wap.html");
}
public static String getLinkUrl(String linkUrl) {
@@ -259,28 +259,28 @@ public class UriProvider {
* 个人魅力榜
*/
public static String getPersonalCharismaRank() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/charm/index.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/charm/index.html");
}
/**
* 宝箱帮助
*/
public static String getBoxHelp() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/newWishingWellRule.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/newWishingWellRule.html");
}
/**
* 宝箱记录
*/
public static String getBoxHistory() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rank/index.html#/newWishingWellRecord");
return JAVA_WEB_URL.concat("/hiyoo/modules/rank/index.html#/newWishingWellRecord");
}
/**
* 获取宝箱钥匙
*/
public static String getBoxKey() {
return JAVA_WEB_URL.concat("/anan_vestBag/activity/explore/index.html");
return JAVA_WEB_URL.concat("/hiyoo/activity/explore/index.html");
}
/**
@@ -289,7 +289,7 @@ public class UriProvider {
* @return
*/
public static String getRedPacketRule() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/red-packet-rule.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/red-packet-rule.html");
}
@@ -299,7 +299,7 @@ public class UriProvider {
* @return
*/
public static String getDatingRule() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/dating.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/dating.html");
}
/**
@@ -308,7 +308,7 @@ public class UriProvider {
* @return
*/
public static String getGameShareUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/game/index.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/game/index.html");
}
/**
@@ -317,7 +317,7 @@ public class UriProvider {
* @return
*/
public static String getLinkAccountUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/game/bindAccount.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/game/bindAccount.html");
}
/**
@@ -326,7 +326,7 @@ public class UriProvider {
* @return
*/
public static String getLinkRoomUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/associateAccount/index.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/associateAccount/index.html");
}
@@ -334,7 +334,7 @@ public class UriProvider {
* 房间排行榜
*/
public static String getRoomRanking() {
return IM_SERVER_URL.concat("/anan_vestBag/modules/room_rank/index.html?roomUid=" + AvRoomDataManager.get().getRoomUid());
return IM_SERVER_URL.concat("/hiyoo/modules/room_rank/index.html?roomUid=" + AvRoomDataManager.get().getRoomUid());
}
/**
@@ -343,7 +343,7 @@ public class UriProvider {
* @return
*/
public static String getSDKPermissionUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/sdk.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/sdk.html");
}
/**
@@ -352,119 +352,119 @@ public class UriProvider {
* @return
*/
public static String getDeivcePermissionUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/permissions.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/permissions.html");
}
/**
* 隐私协议-个人信息
*/
public static String getPersonalInfoUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/personal-info.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/personal-info.html");
}
/**
* 隐私指引
*/
public static String getPrivacyUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/privacy-wap.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/privacy-wap.html");
}
/**
* 贵族中心帮助页
*/
public static String getVipHelpUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/introduction-patrician.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/introduction-patrician.html");
}
/**
* 贵族榜
*/
public static String getRankListUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/noble/index.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/noble/index.html");
}
/**
* Cp装扮
*/
public static String getCpDecorationUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/activity/act-nameplate-cp/index.html");
return JAVA_WEB_URL.concat("/hiyoo/activity/act-nameplate-cp/index.html");
}
/**
* 用户充值协议
*/
public static String getChargeAgreementUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/rechargeAgreement.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/rechargeAgreement.html");
}
/**
* 用户注册服务协议
*/
public static String getRegistrationAgreementUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/protocol.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/protocol.html");
}
/**
* 直播服务协议
*/
public static String getLiveServiceAgreementUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/live-protocol.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/live-protocol.html");
}
/**
* 社区规范
*/
public static String getCommunitySpecificationUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/community-norms.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/community-norms.html");
}
/**
* 账号注销协议
*/
public static String getCancellationAgreementUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/logout-agreement.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/logout-agreement.html");
}
/**
* 开通粉丝团
*/
public static String getFansTeamOpenUrl(long roomUid) {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/fans_club/nameplate.html?roomUid=" + roomUid);
return JAVA_WEB_URL.concat("/hiyoo/modules/fans_club/nameplate.html?roomUid=" + roomUid);
}
/**
* 粉丝团排行
*/
public static String getFansTeamRankUrl(long roomUid) {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/fans_club/fans_rank.html?roomUid=" + roomUid);
return JAVA_WEB_URL.concat("/hiyoo/modules/fans_club/fans_rank.html?roomUid=" + roomUid);
}
/**
* 我的粉丝团
*/
public static String getFansTeamMyFansUrl(long roomUid) {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/fans_club/myfans.html?roomUid=" + roomUid);
return JAVA_WEB_URL.concat("/hiyoo/modules/fans_club/myfans.html?roomUid=" + roomUid);
}
/**
* 粉丝团规则
*/
public static String getFansTeamRuleUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/fans_club/rule.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/fans_club/rule.html");
}
/**
* 个播小时榜
*/
public static String getSingleRoomHourRankUrl(long roomUid) {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/room_rank/hourRank.html?roomUid=" + roomUid);
return JAVA_WEB_URL.concat("/hiyoo/modules/room_rank/hourRank.html?roomUid=" + roomUid);
}
/**
* 牌照房小时榜
*/
public static String getRoomHourRankUrl(long roomUid) {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/room_rank/hourRankLicense.html?roomUid=" + roomUid);
return JAVA_WEB_URL.concat("/hiyoo/modules/room_rank/hourRankLicense.html?roomUid=" + roomUid);
}
@@ -472,14 +472,14 @@ public class UriProvider {
* 周星榜
*/
public static String getWeekStarUrl() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/weekStar/newWeekStar.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/weekStar/newWeekStar.html");
}
/**
* 幸运礼物说明
*/
public static String getLuckyGiftRule(int giftID) {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/rule/luckyGiftRule.html?giftID=" + giftID);
return JAVA_WEB_URL.concat("/hiyoo/modules/rule/luckyGiftRule.html?giftID=" + giftID);
}
/**
@@ -488,84 +488,84 @@ public class UriProvider {
* @return
*/
public static String getLiveAgreement() {
return JAVA_WEB_URL.concat("/anan_vestBag/activity/activemodel/index.html?code=ZBGG");
return JAVA_WEB_URL.concat("/hiyoo/activity/activemodel/index.html?code=ZBGG");
}
/**
* 航海帮助
*/
public static String getRadishHelp() {
return JAVA_WEB_URL.concat("/anan_vestBag/activity/act-sail/play_explain.html");
return JAVA_WEB_URL.concat("/hiyoo/activity/act-sail/play_explain.html");
}
/**
* 航海记录
*/
public static String getRadishHistory() {
return JAVA_WEB_URL.concat("/anan_vestBag/activity/act-sail/win_record.html");
return JAVA_WEB_URL.concat("/hiyoo/activity/act-sail/win_record.html");
}
/**
* 获取航海钥匙
*/
public static String getRadishKey() {
return JAVA_WEB_URL.concat("/anan_vestBag/activity/act-sail/more.html");
return JAVA_WEB_URL.concat("/hiyoo/activity/act-sail/more.html");
}
/**
* 第三方支付
*/
public static String getOfficialPay(int type, String deviceId) {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/pay/index.html?channelType=" + type + "&deviceId=" + deviceId);
return JAVA_WEB_URL.concat("/hiyoo/modules/pay/index.html?channelType=" + type + "&deviceId=" + deviceId);
}
/**
* 钻石明细
*/
public static String getDiamondDetail() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/myincome/index.html#/DiamondLog");
return JAVA_WEB_URL.concat("/hiyoo/modules/myincome/index.html#/DiamondLog");
}
/**
* 金币明细
*/
public static String getGoldDetail() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/myincome/index.html#/GoldLog");
return JAVA_WEB_URL.concat("/hiyoo/modules/myincome/index.html#/GoldLog");
}
/**
* 提现记录
*/
public static String getWithdrawRecord() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/myincome/index.html#/GoldLog");
return JAVA_WEB_URL.concat("/hiyoo/modules/myincome/index.html#/GoldLog");
}
/**
* 获取夺宝精灵钥匙
*/
public static String getFairyKey() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/act-treasureSnatching/index.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/act-treasureSnatching/index.html");
}
/**
* 夺宝精灵规则
*/
public static String getFairyRule() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/act-treasureSnatching/rule.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/act-treasureSnatching/rule.html");
}
/**
* 夺宝达人
*/
public static String getFairySuperior() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/act-treasureSnatching/list.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/act-treasureSnatching/list.html");
}
/**
* 夺宝记录
*/
public static String getFairyRecord() {
return JAVA_WEB_URL.concat("/anan_vestBag/modules/act-treasureSnatching/record.html");
return JAVA_WEB_URL.concat("/hiyoo/modules/act-treasureSnatching/record.html");
}
}

View File

@@ -12,7 +12,7 @@ public class XConstants {
/**
* 包名(各種緩存目錄的根目錄)
*/
public static final String XCHAT_DIR_NAME = "com.vele.habuplay";
public static final String XCHAT_DIR_NAME = "app.hiyoo.fun";
/**
* sp名字
@@ -84,7 +84,7 @@ public class XConstants {
/**
* 分享房間 URL
*/
public static final String SHARE_ROOM_URL = "/anan_vestBag/modules/share_room/index.html?shareUid=";
public static final String SHARE_ROOM_URL = "/hiyoo/modules/share_room/index.html?shareUid=";
/**
* 分享家族文本
@@ -99,7 +99,7 @@ public class XConstants {
/**
* 分享家族 URL
*/
public static final String SHARE_FAMILY_URL = "/anan_vestBag/modules/share/share_family.html";
public static final String SHARE_FAMILY_URL = "/hiyoo/modules/share/share_family.html";
/**
* 分享群組文本
@@ -114,17 +114,17 @@ public class XConstants {
/**
* 分享群組 URL
*/
public static final String SHARE_TEAM_URL = "/anan_vestBag/modules/share/share_family.html";
public static final String SHARE_TEAM_URL = "/hiyoo/modules/share/share_family.html";
/**
* 分享群組 URL
*/
public static final String SHARE_WORLD_DYNAMIC_URL = "/anan_vestBag/modules/world/share-page/index.html";
public static final String SHARE_WORLD_DYNAMIC_URL = "/hiyoo/modules/world/share-page/index.html";
/**
* 遊戲排行榜 URL
*/
public static final String GAME_ROOK = "/anan_vestBag/modules/erbanRank/game_rank.html?type=week";
public static final String GAME_ROOK = "/hiyoo/modules/erbanRank/game_rank.html?type=week";
/**
* 系統消息那個用戶的UID
@@ -146,7 +146,7 @@ public class XConstants {
/**
* 登錄頁面「如何登錄」對應的 H5 頁面
*/
public static final String LOGIN_ERBAN_ACCOUNT_URL = "/anan_vestBag/modules/rule/login_tips.html";
public static final String LOGIN_ERBAN_ACCOUNT_URL = "/hiyoo/modules/rule/login_tips.html";
public static final String ROOM_INTRODUCTION = ResUtil.getString(R.string.yizhuan_xchat_android_constants_xchatconstants_08);
public static final String DATING_TIPS_OPEN = ResUtil.getString(R.string.yizhuan_xchat_android_constants_xchatconstants_09);
@@ -194,7 +194,7 @@ public class XConstants {
* Referer (RELEASE)
*/
public static final String KEY_REFERER_RELEASE = "https://api.hiyoo.fun/";
public static final String APP_MARK = "habu";
public static final String APP_MARK = "hiyoo";
/**
* 聊天室文本消息易盾反垃圾業務id
*/
@@ -210,9 +210,9 @@ public class XConstants {
// public static final String ADJUST_APP_TOKEN = "ujzc7mbv3g8w";
/**
* peko谷歌下载地址
谷歌下载地址
*/
public static String appDownloadUrl = "https://play.google.com/store/apps/details?id=com.vele.habuplay";
public static String appDownloadUrl = "https://play.google.com/store/apps/details?id=app.hiyoo.fun";
public static String getAgoraKey() {
try {

View File

@@ -312,7 +312,7 @@ public class RoomSettingModel extends BaseMvpModel {
/**
* 更新房间设置信息
* Peko项目-打开关闭房间纯净模式-房主修改
* Hiyoo项目-打开关闭房间纯净模式-房主修改
*
* @param title
* @param desc
@@ -336,7 +336,7 @@ public class RoomSettingModel extends BaseMvpModel {
/**
* 更新房间设置信息
* Peko项目-打开关闭房间纯净模式
* Hiyoo项目-打开关闭房间纯净模式
*
* @param title
* @param desc

View File

@@ -489,7 +489,7 @@ public interface StatisticsProtocol {
/**
* Peko1.4.0版本埋点整理
* Hiyoo1.4.0版本埋点整理
*/
String EVENT_APP_LAUNCH = "app_launch"; //app启动

View File

@@ -1,12 +1,12 @@
<resources>
<string name="app_name">XChat_Android_Core</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_01">平臺嚴禁未成年人直播或打賞,倡導綠色互動,禁止宣傳及發布政治、低俗、暴力、色情等違規違法內容,嚴禁違規交易和誘導欺詐用戶,如有違規將對賬號進行封禁,發現請及時舉報。</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_02">來Habu Live,邂逅你的專屬聲音</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_03">來Habu Live,開黑交友玩遊戲</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_02">來Hiyoo,邂逅你的專屬聲音</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_03">來Hiyoo,開黑交友玩遊戲</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_04">加入家族,和你興趣相投的小夥伴一起玩耍吧~</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_05">hi,我想邀請您加入我的Habu Live家族:</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_05">hi,我想邀請您加入我的Hiyoo家族:</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_06">加入家族,和你興趣相投的小夥伴一起玩耍吧~</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_07">hi,我想邀請您加入我的Habu Live群聊:</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_07">hi,我想邀請您加入我的Hiyoo群聊:</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_08">可點擊房間話題查看本房間公告</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_09">相親玩法已開啟,請點擊主持人麥位選擇主持人</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_010">新一輪的相親已開啟</string>
@@ -531,7 +531,7 @@
<string name="utils_net_rxhelper_04">成功</string>
<string name="utils_net_rxhelper_05">網絡異常,請稍後再試!</string>
<string name="utils_net_rxhelper_06">網絡錯誤</string>
<string name="xchat_android_core_utils_oldhttperrorhandleutil_01">Habu Live開小差中~請稍後再試</string>
<string name="xchat_android_core_utils_oldhttperrorhandleutil_01">Hiyoo開小差中~請稍後再試</string>
<string name="xchat_android_core_utils_oldhttperrorhandleutil_02">網絡異常,請檢查您的網絡再試!</string>
<string name="xchat_android_core_utils_starutils_01"></string>
<string name="xchat_android_core_utils_starutils_02"></string>

View File

@@ -6,7 +6,7 @@ data class GrabApprenticesInfo(
*/
val uid: Long = 0L,
/**
* Peko号
* Hiyoo号
*/
val erbanNo: Long = 0L,
/**

View File

@@ -12,7 +12,7 @@ data class SimpleUserVo(
val uid: Long = 0L,
/**
* Peko号
* Hiyoo号
*/
val erbanNo: Long = 0L,

View File

@@ -1,4 +1,4 @@
<!DOCTYPE resources [<!ENTITY app_name "Habu Live" >]>
<!DOCTYPE resources [<!ENTITY app_name "Hiyoo" >]>
<resources>
<string name="app_name">&app_name;</string>

View File

@@ -313,8 +313,8 @@
<string name="session_activity_watchvideoactivity_04">,時長: </string>
<string name="session_activity_watchvideoactivity_05"></string>
<string name="session_adapter_mediaadapter_01">yyyy年MM月</string>
<string name="session_fragment_messagefragment_01">發送失敗Habu Live提醒您文明用語~</string>
<string name="session_fragment_messagefragment_02">發送失敗Habu Live提醒您文明用語~</string>
<string name="session_fragment_messagefragment_01">發送失敗Hiyoo提醒您文明用語~</string>
<string name="session_fragment_messagefragment_02">發送失敗Hiyoo提醒您文明用語~</string>
<string name="session_helper_teamnotificationhelper_01">邀請 </string>
<string name="session_helper_teamnotificationhelper_02"> 加入群</string>
<string name="session_helper_teamnotificationhelper_03"> 加入討論組</string>