Commit c25ff3809397a4784ebe669abca1ba02e9fc6787

Authored by 袁思汶
1 parent 21b19be9

家园 --- 好家园 142版本号已被分支占用

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