Skip to content

Commit

Permalink
使用多线程收取能量;给指定好像浇水;领取森林任务奖励
Browse files Browse the repository at this point in the history
  • Loading branch information
pansong291 committed Aug 3, 2019
1 parent 8f2e115 commit 3570e6e
Show file tree
Hide file tree
Showing 5 changed files with 557 additions and 254 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "pansong291.xposed.quickenergy"
minSdkVersion 14
targetSdkVersion 21
versionCode 20190801
versionName "1.0.7-alpha.4"
versionCode 20190803
versionName "1.0.7-alpha.5"
}
buildTypes {
release {
Expand Down
5 changes: 3 additions & 2 deletions app/src/main/java/pansong291/xposed/quickenergy/AntFarm.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,9 @@ public void run()

private static boolean isEnterFarmAndHasNull(String args0)
{
return cityAdCode == null || districtAdCode == null || version == null
&& args0.equals("com.alipay.antfarm.enterFarm");
if(args0.equals("com.alipay.antfarm.enterFarm"))
return cityAdCode == null || districtAdCode == null || version == null;
return false;
}

private static boolean isEnterOwnerFarm(String resp)
Expand Down
Loading

0 comments on commit 3570e6e

Please sign in to comment.