Commit 21b19be9cd3122169047a8d9710f1cedd5f2be94

Authored by 袁思汶
1 parent 828411e3

网家家 --- 家园 141版本号已被分支占用

config.gradle
... ... @@ -21,7 +21,7 @@ ext {
21 21 //编译方式
22 22 debug : false,
23 23 //版本号
24   - version: "1.4.0",
  24 + version: "1.4.1",
25 25 //Lib库前缀
26 26 packeg : "com.cnlive.module",
27 27 //Lib库名称
... ...
moudle_pedometer/src/main/java/com/cnlive/moudle/pedometer/frame/view/OnGoingFragmentView.java
... ... @@ -97,7 +97,7 @@ public class OnGoingFragmentView implements MvpView {
97 97 public void shareCurrentRace() {
98 98 CNLiveShareService shareService = OpenServiceHelpUtil.getShareService(getContext());
99 99 if (null != shareService && null != runRaceDetailInfo) {
100   - String subTitle = "我在网家家上报名了线上赛事 快来和我一起动起来";
  100 + String subTitle = "我在家园上报名了线上赛事 快来和我一起动起来";
101 101 String shareUrl = AppConfig.isDebug() ? SHARE_DEBUG_URL : SHARE_REL_URL;
102 102 // String shareImgUrl = "http://wjj.ys1.cnliveimg.com/download/app_icon/share/strike_logo_mass_sports.png";
103 103 String shareImgUrl = "http://wjj.ys1.cnliveimg.com/download/app_icon/share/strike_logo_mass_sports_rec.png";
... ...
moudle_pedometer/src/main/java/com/cnlive/moudle/pedometer/frame/view/RunRaceDetailFragmentView.java
... ... @@ -144,7 +144,7 @@ public class RunRaceDetailFragmentView implements MvpView, SensorEventListener {
144 144 public void shareCurrentRace() {
145 145 CNLiveShareService shareService = OpenServiceHelpUtil.getShareService(getContext());
146 146 if (null != shareService && null != runRaceDetailInfo) {
147   - String subTitle = "我在网家家上报名了线上赛事 快来和我一起动起来";
  147 + String subTitle = "我在家园上报名了线上赛事 快来和我一起动起来";
148 148 String shareUrl = AppConfig.isDebug() ? SHARE_DEBUG_URL : SHARE_REL_URL;
149 149 // String shareImgUrl = "http://wjj.ys1.cnliveimg.com/download/app_icon/share/strike_logo_mass_sports.png";
150 150 String shareImgUrl = "http://wjj.ys1.cnliveimg.com/download/app_icon/share/strike_logo_mass_sports_rec.png";
... ...
moudle_pedometer/src/main/java/com/cnlive/moudle/pedometer/ui/activity/ShareRecordActivity.java
... ... @@ -72,7 +72,7 @@ public class ShareRecordActivity extends AppCompatActivity {
72 72  
73 73 if(getIntent().getStringExtra("idName") != null) idName = getIntent().getStringExtra("idName");
74 74 cord_name = findViewById(R.id.cord_name);
75   - cord_name.setText("我在中国网家家\n" + getIntent().getStringExtra("raceTitle") + "中的最佳成绩");
  75 + cord_name.setText("我在家园\n" + getIntent().getStringExtra("raceTitle") + "中的最佳成绩");
76 76 ((TextView) findViewById(R.id.kilo_share)).setText(getIntent().getStringExtra("kilo"));
77 77 ((TextView) findViewById(R.id.step_share)).setText(getIntent().getStringExtra("step"));
78 78 ((TextView) findViewById(R.id.time_share)).setText(TimeUtil.stampToChronometers(Double.parseDouble(getIntent().getStringExtra("time"))));
... ...