diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-10-16 10:01:01 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-10-16 10:01:01 +0200 |
commit | 7cf676f9bd65f7f3fe834161effedad93fd29e80 (patch) | |
tree | 379414076159ba9cb118d6cc12aecc537fb12935 /app/src/main/java | |
parent | b83538d08d9bd22c11810cc18c44093df5cedb46 (diff) |
Google doesn't want to enable others to support free open source software
Revert "preferences: add donation link"
This reverts commit e5455f579aec48abb30ba68b0248b02d79303126.
The app was removed from the Play Store for violating their payments
policy. Upon filing an appeal, I was told that they do not allow
donations to projects like WireGuard.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app/src/main/java')
-rw-r--r-- | app/src/main/java/com/wireguard/android/preference/DonatePreference.java | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/app/src/main/java/com/wireguard/android/preference/DonatePreference.java b/app/src/main/java/com/wireguard/android/preference/DonatePreference.java deleted file mode 100644 index 6ae0622c..00000000 --- a/app/src/main/java/com/wireguard/android/preference/DonatePreference.java +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright © 2019 WireGuard LLC. All Rights Reserved. - * SPDX-License-Identifier: Apache-2.0 - */ - -package com.wireguard.android.preference; - -import android.content.ActivityNotFoundException; -import android.content.Context; -import android.content.Intent; -import android.net.Uri; -import android.util.AttributeSet; - -import com.wireguard.android.Application; -import com.wireguard.android.BuildConfig; -import com.wireguard.android.R; - -import java.util.Locale; - -import androidx.annotation.Nullable; -import androidx.preference.Preference; - -public class DonatePreference extends Preference { - public DonatePreference(final Context context, final AttributeSet attrs) { - super(context, attrs); - } - - @Override - public CharSequence getSummary() { return getContext().getString(R.string.donate_summary); } - - @Override - public CharSequence getTitle() { return getContext().getString(R.string.donate_title); } - - @Override - protected void onClick() { - final Intent intent = new Intent(Intent.ACTION_VIEW); - intent.setData(Uri.parse("https://www.wireguard.com/donations/")); - try { - getContext().startActivity(intent); - } catch (final ActivityNotFoundException ignored) { - } - } - -} |