1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
lvbingru 2016-04-06 00:01:09 +08:00
commit 1f83593072

View File

@ -174,16 +174,20 @@ public class UpdateContext {
currentVersion = this.rollBack();
}
}
if (currentVersion == null) {
return defaultAssetsUrl;
}
return (new File(rootDir, currentVersion+"/index.bundlejs").toString());
}
private String rollBack() {
String lastVersion = sp.getString("lastVersion", null);
if (lastVersion == null) {
throw new Error("This should never happen");
}
SharedPreferences.Editor editor = sp.edit();
editor.putString("currentVersion", lastVersion);
if (lastVersion == null) {
editor.remove("currentVersion");
} else {
editor.putString("currentVersion", lastVersion);
}
editor.putBoolean("firstTimeOk", true);
editor.putBoolean("firstTime", false);
editor.putBoolean("rolledBack", true);