diff --git a/app/build.gradle b/app/build.gradle index c5a24b2..42affec 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -10,8 +10,8 @@ android { applicationId "com.fox2code.mmm" minSdk 21 targetSdk 32 - versionCode 25 - versionName "0.3.0-rc1" + versionCode 26 + versionName "0.3.0-rc2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } diff --git a/app/src/main/java/com/fox2code/mmm/settings/SettingsActivity.java b/app/src/main/java/com/fox2code/mmm/settings/SettingsActivity.java index b50f9b4..1a7f402 100644 --- a/app/src/main/java/com/fox2code/mmm/settings/SettingsActivity.java +++ b/app/src/main/java/com/fox2code/mmm/settings/SettingsActivity.java @@ -132,15 +132,6 @@ public class SettingsActivity extends CompatActivity { openFragment(libsBuilder.supportFragment(), R.string.licenses); return true; }); - if (BuildConfig.DEBUG) { - Preference debugPref = findPreference("pref_debug_button"); - debugPref.setVisible(true); - debugPref.setOnPreferenceClickListener(preference -> { - IntentHelper.openUrlAndroidacy(this.getContext(), - "https://www.androidacy.com/modules-repo", true); - return true; - }); - } } private void openFragment(Fragment fragment, @StringRes int title) { diff --git a/app/src/main/res/xml/root_preferences.xml b/app/src/main/res/xml/root_preferences.xml index f37ace6..cdaa348 100644 --- a/app/src/main/res/xml/root_preferences.xml +++ b/app/src/main/res/xml/root_preferences.xml @@ -103,11 +103,5 @@ app:icon="@drawable/ic_baseline_info_24" app:title="@string/show_licenses" app:singleLineTitle="false" /> - - \ No newline at end of file