Bug fix
This commit is contained in:
parent
8907705d91
commit
c7fcaa26f3
|
@ -12,8 +12,8 @@ android {
|
|||
minSdkVersion 21
|
||||
//noinspection ExpiringTargetSdkVersion
|
||||
targetSdkVersion 30
|
||||
versionCode 73
|
||||
versionName "3.7.6.11"
|
||||
versionCode 74
|
||||
versionName "3.18.2.2"
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
multiDexEnabled true
|
||||
|
|
|
@ -146,7 +146,7 @@ public class ApkPatcher {
|
|||
}
|
||||
return null;
|
||||
});
|
||||
return new Tuple2<>(apkFile.getAbsolutePath(), null);
|
||||
return new Tuple2<>(apkFile.getAbsolutePath(), new String[0]);
|
||||
} else if (advancedStage == 1) {
|
||||
File contentFolder = new File(stadewValleyBasePath + "/StardewValley/Content");
|
||||
if (contentFolder.exists()) {
|
||||
|
@ -157,7 +157,7 @@ public class ApkPatcher {
|
|||
} else {
|
||||
extract(0);
|
||||
}
|
||||
return new Tuple2<>(apkFile.getAbsolutePath(), null);
|
||||
return new Tuple2<>(apkFile.getAbsolutePath(), new String[0]);
|
||||
}
|
||||
emitProgress(5);
|
||||
return new Tuple2<>(apkFile.getAbsolutePath(), packageInfo.applicationInfo.splitSourceDirs);
|
||||
|
|
Loading…
Reference in New Issue