atom
This commit is contained in:
Binary file not shown.
@@ -1 +1 @@
|
||||
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":177,"versionName":"1.7.7","enabled":true,"outputFile":"atom-latest.apk","fullName":"release","baseName":"release"},"path":"atom-latest.apk","properties":{}}]
|
||||
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":180,"versionName":"1.8.0","enabled":true,"outputFile":"atom-latest.apk","fullName":"release","baseName":"release"},"path":"atom-latest.apk","properties":{}}]
|
||||
@@ -815,6 +815,7 @@ public class StartTask {
|
||||
liveBean.setDouyinhao(liveNickname);
|
||||
String accountduration = Integer.parseInt(accountDuration)*60+"";
|
||||
liveBean.setZhibomin(accountduration);
|
||||
liveBean.setLiwucishu(giftHeart);
|
||||
if(valueOne.equals(liveSpeech)){
|
||||
liveBean.setSwitchone(true);
|
||||
}else {
|
||||
|
||||
@@ -213,7 +213,11 @@ class HongbaoBase extends BaseAblStep implements RedEnv.RedEnvFunc, RedEnv.TimeF
|
||||
if ("android.widget.TextView".equals(child2.getClassName())) {
|
||||
if (child2.getText() != null) {
|
||||
String s = child2.getText().toString();
|
||||
doubinum = s;
|
||||
if("充值".equals(s)){
|
||||
doubinum = "0";
|
||||
}else {
|
||||
doubinum = s;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -221,10 +225,8 @@ class HongbaoBase extends BaseAblStep implements RedEnv.RedEnvFunc, RedEnv.TimeF
|
||||
}
|
||||
}
|
||||
}
|
||||
return doubinum;
|
||||
}
|
||||
return "0";
|
||||
|
||||
return doubinum;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -233,8 +233,11 @@ public class TestAblStep30 extends NoticeBase {
|
||||
AblViewUtil.mySleep(1);
|
||||
clickcommonthree(hognbaonode, "");
|
||||
Log.e("TIAOSHI###", "发礼物的循环次数"+i);
|
||||
String liwutime = ProfileSpUtils.getInstance().getLiveBean().getLiwutime();
|
||||
int jiangetime = Integer.valueOf(liwutime);
|
||||
// String liwutime = ProfileSpUtils.getInstance().getLiveBean().getLiwutime();
|
||||
// int jiangetime = Integer.valueOf(liwutime);
|
||||
|
||||
Random random = new Random();
|
||||
int jiangetime = random.nextInt(3) + 1;
|
||||
AblViewUtil.mySleep(jiangetime);
|
||||
}
|
||||
} else {
|
||||
@@ -732,7 +735,11 @@ public class TestAblStep30 extends NoticeBase {
|
||||
if ("android.widget.TextView".equals(child2.getClassName())) {
|
||||
if (child2.getText() != null) {
|
||||
String s = child2.getText().toString();
|
||||
doubinum = Integer.valueOf(s);
|
||||
if("充值".equals(s)){
|
||||
doubinum = 0;
|
||||
}else {
|
||||
doubinum = Integer.valueOf(s);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,8 +12,8 @@ ext {
|
||||
applicationId : "com.fisherbone.fuzhu",
|
||||
minSdkVersion : 24,
|
||||
targetSdkVersion : 29,
|
||||
versionCode : 177,
|
||||
versionName : "1.7.7",
|
||||
versionCode : 180,
|
||||
versionName : "1.8.0",
|
||||
testInstrumentationRunner: "androidx.test.runner.AndroidJUnitRunner"
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user