[android] Hide "Tracking" section on F-Droid

Closes #452

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2021-06-26 18:06:17 +03:00 committed by Alexander Borsuk
parent 1c5a14924d
commit 5f09e5c383

View file

@ -296,13 +296,19 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
initTransliterationPrefsCallbacks(); initTransliterationPrefsCallbacks();
init3dModePrefsCallbacks(); init3dModePrefsCallbacks();
initPerspectivePrefsCallbacks(); initPerspectivePrefsCallbacks();
initPlayServicesPrefsCallbacks();
initAutoZoomPrefsCallbacks(); initAutoZoomPrefsCallbacks();
initLoggingEnabledPrefsCallbacks(); initLoggingEnabledPrefsCallbacks();
initEmulationBadStorage(); initEmulationBadStorage();
initUseMobileDataPrefsCallbacks(); initUseMobileDataPrefsCallbacks();
initPowerManagementPrefsCallbacks(); initPowerManagementPrefsCallbacks();
initCrashReports(); boolean playServices = initPlayServicesPrefsCallbacks();
boolean crashReports = initCrashReports();
if (!playServices && !crashReports)
{
// Remove "Tracking" section completely.
Preference tracking = findPreference(getString(R.string.pref_subtittle_opt_out));
getPreferenceScreen().removePreference(tracking);
}
initScreenSleepEnabledPrefsCallbacks(); initScreenSleepEnabledPrefsCallbacks();
updateTts(); updateTts();
} }
@ -564,15 +570,16 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
}); });
} }
private void initPlayServicesPrefsCallbacks() private boolean initPlayServicesPrefsCallbacks()
{ {
Preference pref = findPreference(getString(R.string.pref_play_services)); Preference pref = findPreference(getString(R.string.pref_play_services));
if (pref == null) if (pref == null)
return; return false;
if (!LocationProviderFactory.isGoogleLocationAvailable(getActivity().getApplicationContext())) if (!LocationProviderFactory.isGoogleLocationAvailable(getActivity().getApplicationContext()))
{ {
removePreference(getString(R.string.pref_subtittle_opt_out), pref); removePreference(getString(R.string.pref_subtittle_opt_out), pref);
return false;
} }
else else
{ {
@ -592,6 +599,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
return true; return true;
} }
}); });
return true;
} }
} }
@ -751,21 +759,22 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
}); });
} }
private void initCrashReports() private boolean initCrashReports()
{ {
String key = getString(R.string.pref_crash_reports); String key = getString(R.string.pref_crash_reports);
Preference pref = findPreference(key); Preference pref = findPreference(key);
if (pref == null) if (pref == null)
return; return false;
if (!CrashlyticsUtils.INSTANCE.isAvailable()) if (!CrashlyticsUtils.INSTANCE.isAvailable())
{ {
removePreference(getString(R.string.pref_subtittle_opt_out), pref); removePreference(getString(R.string.pref_subtittle_opt_out), pref);
return; return false;
} }
((TwoStatePreference)pref).setChecked(CrashlyticsUtils.INSTANCE.isEnabled()); ((TwoStatePreference)pref).setChecked(CrashlyticsUtils.INSTANCE.isEnabled());
pref.setOnPreferenceChangeListener((preference, newValue) -> onToggleCrashReports(newValue)); pref.setOnPreferenceChangeListener((preference, newValue) -> onToggleCrashReports(newValue));
return true;
} }
private void initScreenSleepEnabledPrefsCallbacks() private void initScreenSleepEnabledPrefsCallbacks()