(misc) small fix

Signed-off-by: androidacy-user <opensource@androidacy.com>
master
androidacy-user 1 year ago
parent f673f04f91
commit f36f77214f

@ -848,7 +848,7 @@ public class SettingsActivity extends FoxActivity implements LanguageActivity {
});
LongClickablePreference pref_donate_fox = findPreference("pref_donate_fox");
if (BuildConfig.FLAVOR.equals("play")) {
if (!BuildConfig.FLAVOR.equals("play")) {
pref_donate_fox.setOnPreferenceClickListener(p -> {
// open fox
IntentHelper.openUrl(getFoxActivity(this), "https://paypal.me/fox2code");
@ -867,7 +867,7 @@ public class SettingsActivity extends FoxActivity implements LanguageActivity {
}
// now handle pref_donate_androidacy
LongClickablePreference pref_donate_androidacy = findPreference("pref_donate_androidacy");
if (BuildConfig.FLAVOR.equals("play")) {
if (!BuildConfig.FLAVOR.equals("play")) {
pref_donate_androidacy.setOnPreferenceClickListener(p -> {
// copy FOX2CODE promo code to clipboard and toast user that they can use it for half off any subscription
String toastText = requireContext().getString(R.string.promo_code_copied);

Loading…
Cancel
Save