2016-09-29 22:18:41 +02:00
|
|
|
package com.topjohnwu.magisk;
|
|
|
|
|
2017-08-29 03:08:09 +08:00
|
|
|
import android.Manifest;
|
2016-09-29 22:18:41 +02:00
|
|
|
import android.content.SharedPreferences;
|
2017-07-01 18:06:23 +08:00
|
|
|
import android.os.Build;
|
2016-09-29 22:18:41 +02:00
|
|
|
import android.os.Bundle;
|
2017-01-28 22:02:33 +08:00
|
|
|
import android.preference.ListPreference;
|
2017-08-22 03:01:54 +08:00
|
|
|
import android.preference.Preference;
|
2017-01-28 22:02:33 +08:00
|
|
|
import android.preference.PreferenceCategory;
|
2016-09-29 22:18:41 +02:00
|
|
|
import android.preference.PreferenceFragment;
|
2017-01-28 06:13:07 +08:00
|
|
|
import android.preference.PreferenceScreen;
|
2017-07-01 18:06:23 +08:00
|
|
|
import android.preference.SwitchPreference;
|
2016-09-29 22:18:41 +02:00
|
|
|
import android.support.v7.app.ActionBar;
|
|
|
|
import android.support.v7.widget.Toolbar;
|
2017-11-20 03:09:08 +08:00
|
|
|
import android.text.InputType;
|
|
|
|
import android.widget.EditText;
|
|
|
|
import android.widget.LinearLayout;
|
2016-11-09 05:17:50 +08:00
|
|
|
import android.widget.Toast;
|
2016-09-29 22:18:41 +02:00
|
|
|
|
2017-08-29 01:34:42 +08:00
|
|
|
import com.topjohnwu.magisk.asyncs.CheckUpdates;
|
2017-08-22 03:01:54 +08:00
|
|
|
import com.topjohnwu.magisk.asyncs.HideManager;
|
2017-02-07 02:01:32 +08:00
|
|
|
import com.topjohnwu.magisk.components.Activity;
|
2017-11-20 03:09:08 +08:00
|
|
|
import com.topjohnwu.magisk.components.AlertDialogBuilder;
|
2017-11-06 04:41:23 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Const;
|
2016-11-09 05:17:50 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Shell;
|
2017-08-04 00:12:11 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Topic;
|
2016-09-29 22:18:41 +02:00
|
|
|
import com.topjohnwu.magisk.utils.Utils;
|
|
|
|
|
2017-07-22 22:14:02 +08:00
|
|
|
import java.util.Locale;
|
|
|
|
|
2016-09-29 22:18:41 +02:00
|
|
|
import butterknife.BindView;
|
|
|
|
import butterknife.ButterKnife;
|
|
|
|
|
2017-08-04 00:12:11 +08:00
|
|
|
public class SettingsActivity extends Activity implements Topic.Subscriber {
|
2016-09-29 22:18:41 +02:00
|
|
|
|
|
|
|
@BindView(R.id.toolbar) Toolbar toolbar;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
2017-05-26 18:20:53 +08:00
|
|
|
setContentView(R.layout.activity_settings);
|
2016-09-29 22:18:41 +02:00
|
|
|
ButterKnife.bind(this);
|
|
|
|
|
|
|
|
setSupportActionBar(toolbar);
|
|
|
|
|
|
|
|
toolbar.setNavigationOnClickListener(view -> finish());
|
|
|
|
|
|
|
|
ActionBar ab = getSupportActionBar();
|
|
|
|
if (ab != null) {
|
|
|
|
ab.setTitle(R.string.settings);
|
|
|
|
ab.setDisplayHomeAsUpEnabled(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
setFloating();
|
|
|
|
|
|
|
|
if (savedInstanceState == null) {
|
|
|
|
getFragmentManager().beginTransaction().add(R.id.container, new SettingsFragment()).commit();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-07-31 00:44:38 +08:00
|
|
|
@Override
|
2017-10-07 17:12:36 +08:00
|
|
|
public void onTopicPublished(Topic topic, Object result) {
|
2017-07-31 00:44:38 +08:00
|
|
|
recreate();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-08-04 00:12:11 +08:00
|
|
|
public Topic[] getSubscription() {
|
2017-09-03 15:35:14 +08:00
|
|
|
return new Topic[] { getMagiskManager().reloadActivity };
|
2017-07-31 00:44:38 +08:00
|
|
|
}
|
|
|
|
|
2017-08-29 00:37:52 +08:00
|
|
|
public static class SettingsFragment extends PreferenceFragment
|
2017-11-20 03:09:08 +08:00
|
|
|
implements SharedPreferences.OnSharedPreferenceChangeListener, Topic.Subscriber {
|
2016-09-29 22:18:41 +02:00
|
|
|
|
2016-12-11 20:38:15 +08:00
|
|
|
private SharedPreferences prefs;
|
2017-01-28 06:13:07 +08:00
|
|
|
private PreferenceScreen prefScreen;
|
2016-09-29 22:18:41 +02:00
|
|
|
|
2017-08-29 01:34:42 +08:00
|
|
|
private ListPreference updateChannel, suAccess, autoRes, suNotification,
|
|
|
|
requestTimeout, multiuserMode, namespaceMode;
|
2017-09-03 15:35:14 +08:00
|
|
|
private MagiskManager mm;
|
2017-07-22 22:14:02 +08:00
|
|
|
private PreferenceCategory generalCatagory;
|
2017-02-07 02:01:32 +08:00
|
|
|
|
2016-09-29 22:18:41 +02:00
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
2016-10-17 10:11:26 +08:00
|
|
|
addPreferencesFromResource(R.xml.app_settings);
|
2017-09-03 15:35:14 +08:00
|
|
|
mm = Utils.getMagiskManager(getActivity());
|
2017-11-20 03:09:08 +08:00
|
|
|
prefs = mm.prefs;
|
|
|
|
prefScreen = getPreferenceScreen();
|
2016-09-29 22:18:41 +02:00
|
|
|
|
2017-07-22 22:14:02 +08:00
|
|
|
generalCatagory = (PreferenceCategory) findPreference("general");
|
2017-01-28 22:02:33 +08:00
|
|
|
PreferenceCategory magiskCategory = (PreferenceCategory) findPreference("magisk");
|
|
|
|
PreferenceCategory suCategory = (PreferenceCategory) findPreference("superuser");
|
2017-08-22 03:01:54 +08:00
|
|
|
Preference hideManager = findPreference("hide");
|
2017-11-06 04:41:23 +08:00
|
|
|
findPreference("clear").setOnPreferenceClickListener((pref) -> {
|
2017-11-20 03:09:08 +08:00
|
|
|
prefs.edit().remove(Const.Key.ETAG_KEY).apply();
|
2017-11-06 04:41:23 +08:00
|
|
|
mm.repoDB.clearRepo();
|
|
|
|
MagiskManager.toast(R.string.repo_cache_cleared, Toast.LENGTH_SHORT);
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
updateChannel = (ListPreference) findPreference(Const.Key.UPDATE_CHANNEL);
|
|
|
|
suAccess = (ListPreference) findPreference(Const.Key.ROOT_ACCESS);
|
|
|
|
autoRes = (ListPreference) findPreference(Const.Key.SU_AUTO_RESPONSE);
|
|
|
|
requestTimeout = (ListPreference) findPreference(Const.Key.SU_REQUEST_TIMEOUT);
|
|
|
|
suNotification = (ListPreference) findPreference(Const.Key.SU_NOTIFICATION);
|
|
|
|
multiuserMode = (ListPreference) findPreference(Const.Key.SU_MULTIUSER_MODE);
|
|
|
|
namespaceMode = (ListPreference) findPreference(Const.Key.SU_MNT_NS);
|
|
|
|
SwitchPreference reauth = (SwitchPreference) findPreference(Const.Key.SU_REAUTH);
|
|
|
|
|
2017-11-20 03:09:08 +08:00
|
|
|
updateChannel.setOnPreferenceChangeListener((pref, o) -> {
|
|
|
|
mm.updateChannel = Integer.parseInt((String) o);
|
|
|
|
if (mm.updateChannel == Const.Value.CUSTOM_CHANNEL) {
|
|
|
|
LinearLayout layout = new LinearLayout(getActivity());
|
|
|
|
EditText url = new EditText(getActivity());
|
|
|
|
url.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_URI);
|
|
|
|
url.setText(mm.customChannelUrl);
|
|
|
|
layout.setOrientation(LinearLayout.VERTICAL);
|
|
|
|
layout.addView(url);
|
|
|
|
LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) url.getLayoutParams();
|
|
|
|
params.setMargins(Utils.dpInPx(15), 0, Utils.dpInPx(15), 0);
|
|
|
|
new AlertDialogBuilder(getActivity())
|
|
|
|
.setTitle(R.string.settings_update_custom)
|
|
|
|
.setMessage(R.string.settings_update_custom_msg)
|
|
|
|
.setView(layout)
|
|
|
|
.setPositiveButton(R.string.ok, (d, i) -> {
|
|
|
|
prefs.edit().putString(Const.Key.CUSTOM_CHANNEL, url.getText().toString()).apply();
|
|
|
|
})
|
2017-11-22 14:03:08 +08:00
|
|
|
.setNegativeButton(R.string.close, null)
|
2017-11-20 03:09:08 +08:00
|
|
|
.show();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
2017-01-28 22:02:33 +08:00
|
|
|
|
2017-01-29 16:20:41 +08:00
|
|
|
setSummary();
|
2017-01-28 22:02:33 +08:00
|
|
|
|
2017-05-28 00:16:10 +08:00
|
|
|
// Disable dangerous settings in user mode if selected owner manage
|
2017-10-21 22:54:47 +08:00
|
|
|
if (mm.userId > 0) {
|
2017-10-13 02:41:18 +08:00
|
|
|
suCategory.removePreference(multiuserMode);
|
2017-05-28 00:16:10 +08:00
|
|
|
}
|
|
|
|
|
2017-07-01 18:06:23 +08:00
|
|
|
// Remove re-authentication option on Android O, it will not work
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
|
|
|
suCategory.removePreference(reauth);
|
|
|
|
}
|
|
|
|
|
2017-11-23 01:05:57 +08:00
|
|
|
if (mm.getPackageName().equals(Const.ORIG_PKG_NAME) && mm.magiskVersionCode >= 1440) {
|
2017-10-21 22:54:47 +08:00
|
|
|
hideManager.setOnPreferenceClickListener((pref) -> {
|
|
|
|
Utils.runWithPermission(getActivity(),
|
|
|
|
Manifest.permission.WRITE_EXTERNAL_STORAGE,
|
|
|
|
() -> new HideManager().exec());
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
generalCatagory.removePreference(hideManager);
|
|
|
|
}
|
2017-01-11 19:10:30 +08:00
|
|
|
|
2017-01-26 04:17:51 +08:00
|
|
|
if (!Shell.rootAccess()) {
|
2017-01-28 22:02:33 +08:00
|
|
|
prefScreen.removePreference(magiskCategory);
|
|
|
|
prefScreen.removePreference(suCategory);
|
2017-08-31 03:07:33 +08:00
|
|
|
generalCatagory.removePreference(hideManager);
|
2017-11-09 01:11:50 +08:00
|
|
|
} else if (mm.magiskVersionCode < 1300) {
|
|
|
|
prefScreen.removePreference(magiskCategory);
|
2016-09-29 22:18:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-31 00:44:38 +08:00
|
|
|
private void setLocalePreference(ListPreference lp) {
|
|
|
|
boolean isNew = lp == null;
|
|
|
|
if (isNew) {
|
2017-07-22 22:14:02 +08:00
|
|
|
lp = new ListPreference(getActivity());
|
|
|
|
}
|
2017-09-03 15:35:14 +08:00
|
|
|
CharSequence[] entries = new CharSequence[mm.locales.size() + 1];
|
|
|
|
CharSequence[] entryValues = new CharSequence[mm.locales.size() + 1];
|
2017-07-22 22:14:02 +08:00
|
|
|
entries[0] = getString(R.string.system_default);
|
|
|
|
entryValues[0] = "";
|
|
|
|
int i = 1;
|
2017-09-03 15:35:14 +08:00
|
|
|
for (Locale locale : mm.locales) {
|
2017-07-22 22:14:02 +08:00
|
|
|
entries[i] = locale.getDisplayName(locale);
|
|
|
|
entryValues[i++] = locale.toLanguageTag();
|
|
|
|
}
|
|
|
|
lp.setEntries(entries);
|
|
|
|
lp.setEntryValues(entryValues);
|
|
|
|
lp.setTitle(R.string.language);
|
2017-11-06 04:41:23 +08:00
|
|
|
lp.setKey(Const.Key.LOCALE);
|
2017-07-22 22:14:02 +08:00
|
|
|
lp.setSummary(MagiskManager.locale.getDisplayName(MagiskManager.locale));
|
2017-07-31 00:44:38 +08:00
|
|
|
if (isNew) {
|
|
|
|
generalCatagory.addPreference(lp);
|
|
|
|
}
|
2017-07-22 22:14:02 +08:00
|
|
|
}
|
|
|
|
|
2016-09-29 22:18:41 +02:00
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
2016-12-11 20:38:15 +08:00
|
|
|
prefs.registerOnSharedPreferenceChangeListener(this);
|
2017-08-04 00:12:11 +08:00
|
|
|
subscribeTopics();
|
2016-09-29 22:18:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-01-26 13:46:54 +08:00
|
|
|
public void onPause() {
|
2016-12-11 20:38:15 +08:00
|
|
|
prefs.unregisterOnSharedPreferenceChangeListener(this);
|
2017-08-04 00:12:11 +08:00
|
|
|
unsubscribeTopics();
|
2017-07-23 00:12:15 +08:00
|
|
|
super.onPause();
|
2016-09-29 22:18:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-12-11 20:38:15 +08:00
|
|
|
public void onSharedPreferenceChanged(SharedPreferences prefs, String key) {
|
2017-01-28 06:13:07 +08:00
|
|
|
boolean enabled;
|
2016-09-29 22:18:41 +02:00
|
|
|
|
|
|
|
switch (key) {
|
2017-11-06 04:41:23 +08:00
|
|
|
case Const.Key.DARK_THEME:
|
|
|
|
enabled = prefs.getBoolean(Const.Key.DARK_THEME, false);
|
2017-09-03 15:35:14 +08:00
|
|
|
if (mm.isDarkTheme != enabled) {
|
|
|
|
mm.reloadActivity.publish(false);
|
2016-09-29 22:18:41 +02:00
|
|
|
}
|
|
|
|
break;
|
2017-11-06 04:41:23 +08:00
|
|
|
case Const.Key.DISABLE:
|
|
|
|
enabled = prefs.getBoolean(Const.Key.DISABLE, false);
|
2017-06-06 03:06:23 +08:00
|
|
|
if (enabled) {
|
2017-11-06 04:41:23 +08:00
|
|
|
Utils.createFile(Const.MAGISK_DISABLE_FILE);
|
2017-06-06 03:06:23 +08:00
|
|
|
} else {
|
2017-11-06 04:41:23 +08:00
|
|
|
Utils.removeItem(Const.MAGISK_DISABLE_FILE);
|
2017-06-06 03:06:23 +08:00
|
|
|
}
|
2017-02-02 19:19:22 +08:00
|
|
|
Toast.makeText(getActivity(), R.string.settings_reboot_toast, Toast.LENGTH_LONG).show();
|
2016-10-17 10:11:26 +08:00
|
|
|
break;
|
2017-11-06 04:41:23 +08:00
|
|
|
case Const.Key.MAGISKHIDE:
|
|
|
|
enabled = prefs.getBoolean(Const.Key.MAGISKHIDE, false);
|
2017-02-05 22:30:14 +08:00
|
|
|
if (enabled) {
|
2017-10-15 23:54:34 +08:00
|
|
|
Shell.su_raw("magiskhide --enable");
|
2017-02-21 03:30:37 +08:00
|
|
|
} else {
|
2017-10-15 23:54:34 +08:00
|
|
|
Shell.su_raw("magiskhide --disable");
|
2017-02-21 03:30:37 +08:00
|
|
|
}
|
2017-02-02 19:19:22 +08:00
|
|
|
break;
|
2017-11-06 04:41:23 +08:00
|
|
|
case Const.Key.HOSTS:
|
|
|
|
enabled = prefs.getBoolean(Const.Key.HOSTS, false);
|
2017-06-06 03:06:23 +08:00
|
|
|
if (enabled) {
|
2017-10-15 23:02:44 +08:00
|
|
|
Shell.su_raw(
|
2017-11-09 00:03:37 +08:00
|
|
|
"cp -af /system/etc/hosts " + Const.MAGISK_HOST_FILE(),
|
|
|
|
"mount -o bind " + Const.MAGISK_HOST_FILE() + " /system/etc/hosts");
|
2017-06-06 03:06:23 +08:00
|
|
|
} else {
|
2017-10-15 23:02:44 +08:00
|
|
|
Shell.su_raw(
|
2017-06-06 03:06:23 +08:00
|
|
|
"umount -l /system/etc/hosts",
|
2017-11-09 00:03:37 +08:00
|
|
|
"rm -f " + Const.MAGISK_HOST_FILE());
|
2017-06-06 03:06:23 +08:00
|
|
|
}
|
2016-09-29 22:18:41 +02:00
|
|
|
break;
|
2017-11-06 04:41:23 +08:00
|
|
|
case Const.Key.ROOT_ACCESS:
|
|
|
|
mm.suDB.setSettings(Const.Key.ROOT_ACCESS, Utils.getPrefsInt(prefs, Const.Key.ROOT_ACCESS));
|
2017-01-28 06:13:07 +08:00
|
|
|
break;
|
2017-11-06 04:41:23 +08:00
|
|
|
case Const.Key.SU_MULTIUSER_MODE:
|
|
|
|
mm.suDB.setSettings(Const.Key.SU_MULTIUSER_MODE, Utils.getPrefsInt(prefs, Const.Key.SU_MULTIUSER_MODE));
|
2017-06-08 22:27:24 +08:00
|
|
|
break;
|
2017-11-06 04:41:23 +08:00
|
|
|
case Const.Key.SU_MNT_NS:
|
|
|
|
mm.suDB.setSettings(Const.Key.SU_MNT_NS, Utils.getPrefsInt(prefs, Const.Key.SU_MNT_NS));
|
2016-09-29 22:18:41 +02:00
|
|
|
break;
|
2017-11-06 04:41:23 +08:00
|
|
|
case Const.Key.LOCALE:
|
2017-09-03 15:35:14 +08:00
|
|
|
mm.setLocale();
|
|
|
|
mm.reloadActivity.publish(false);
|
2017-07-22 22:14:02 +08:00
|
|
|
break;
|
2017-11-06 04:41:23 +08:00
|
|
|
case Const.Key.UPDATE_CHANNEL:
|
2017-11-20 03:09:08 +08:00
|
|
|
new CheckUpdates().exec();
|
2017-08-29 01:34:42 +08:00
|
|
|
break;
|
2016-09-29 22:18:41 +02:00
|
|
|
}
|
2017-09-03 15:35:14 +08:00
|
|
|
mm.loadConfig();
|
2017-01-29 16:20:41 +08:00
|
|
|
setSummary();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setSummary() {
|
2017-08-29 01:34:42 +08:00
|
|
|
updateChannel.setSummary(getResources()
|
2017-09-03 15:35:14 +08:00
|
|
|
.getStringArray(R.array.update_channel)[mm.updateChannel]);
|
2017-01-29 16:20:41 +08:00
|
|
|
suAccess.setSummary(getResources()
|
2017-09-03 15:35:14 +08:00
|
|
|
.getStringArray(R.array.su_access)[mm.suAccessState]);
|
2017-01-29 16:20:41 +08:00
|
|
|
autoRes.setSummary(getResources()
|
2017-09-03 15:35:14 +08:00
|
|
|
.getStringArray(R.array.auto_response)[mm.suResponseType]);
|
2017-01-29 16:20:41 +08:00
|
|
|
suNotification.setSummary(getResources()
|
2017-09-03 15:35:14 +08:00
|
|
|
.getStringArray(R.array.su_notification)[mm.suNotificationType]);
|
2017-01-29 16:20:41 +08:00
|
|
|
requestTimeout.setSummary(
|
2017-11-06 04:41:23 +08:00
|
|
|
getString(R.string.request_timeout_summary, prefs.getString(Const.Key.SU_REQUEST_TIMEOUT, "10")));
|
2017-05-27 02:41:24 +08:00
|
|
|
multiuserMode.setSummary(getResources()
|
2017-09-03 15:35:14 +08:00
|
|
|
.getStringArray(R.array.multiuser_summary)[mm.multiuserMode]);
|
2017-06-08 22:27:24 +08:00
|
|
|
namespaceMode.setSummary(getResources()
|
2017-09-03 15:35:14 +08:00
|
|
|
.getStringArray(R.array.namespace_summary)[mm.suNamespaceMode]);
|
2016-09-29 22:18:41 +02:00
|
|
|
}
|
2017-07-22 22:14:02 +08:00
|
|
|
|
|
|
|
@Override
|
2017-10-07 17:12:36 +08:00
|
|
|
public void onTopicPublished(Topic topic, Object result) {
|
2017-11-06 04:41:23 +08:00
|
|
|
setLocalePreference((ListPreference) findPreference(Const.Key.LOCALE));
|
2017-07-22 22:14:02 +08:00
|
|
|
}
|
2017-07-23 00:12:15 +08:00
|
|
|
|
|
|
|
@Override
|
2017-08-04 00:12:11 +08:00
|
|
|
public Topic[] getSubscription() {
|
2017-09-03 15:35:14 +08:00
|
|
|
return new Topic[] { mm.localeDone };
|
2017-07-23 00:12:15 +08:00
|
|
|
}
|
2016-09-29 22:18:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|