You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
More cleanup, add native filepicker
Code cleanup, add filepicker lib to avoid issues with stock file apps.
This commit is contained in:
@@ -7,8 +7,6 @@ import android.util.Log;
|
||||
|
||||
import com.topjohnwu.magisk.utils.Utils;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
public class Module {
|
||||
|
||||
private String mRemoveFile;
|
||||
@@ -203,6 +201,6 @@ public class Module {
|
||||
|
||||
public boolean isOnline() {return mIsOnline; }
|
||||
|
||||
public boolean isUpdateAvailable() { return mUpdateAvailable; };
|
||||
public boolean isUpdateAvailable() { return mUpdateAvailable; }
|
||||
|
||||
}
|
||||
@@ -102,7 +102,7 @@ public class Repo {
|
||||
SharedPreferences.Editor editor = prefs.edit();
|
||||
editor.putString("repo_" + mId, manifestString);
|
||||
editor.putBoolean("hasCachedRepos", true);
|
||||
editor.putString("updated_" + mId, this.lastUpdate.toString());
|
||||
editor.putString("updated_" + mId, this.lastUpdate);
|
||||
Log.d("Magisk", "Storing Preferences: " + manifestString);
|
||||
editor.apply();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user