mirror of https://github.com/M66B/NetGuard.git
Remove EOL message
This commit is contained in:
parent
b3056b0b25
commit
4fa768f4c8
|
@ -292,20 +292,6 @@ public class ActivityMain extends AppCompatActivity implements SharedPreferences
|
|||
getSupportActionBar().setDisplayShowCustomEnabled(true);
|
||||
getSupportActionBar().setCustomView(actionView);
|
||||
|
||||
TextView tvEol = findViewById(R.id.tvEol);
|
||||
tvEol.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
try {
|
||||
startActivity(new Intent(Intent.ACTION_VIEW,
|
||||
Uri.parse("https://www.reddit.com/r/Android/comments/15y7g70/")));
|
||||
} catch (Throwable ex) {
|
||||
Log.e(TAG, ex.toString() + "\n" + Log.getStackTraceString(ex));
|
||||
Toast.makeText(view.getContext(), ex.toString(), Toast.LENGTH_LONG).show();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// Disabled warning
|
||||
TextView tvDisabled = findViewById(R.id.tvDisabled);
|
||||
tvDisabled.setVisibility(enabled ? View.GONE : View.VISIBLE);
|
||||
|
|
|
@ -40,19 +40,6 @@
|
|||
android:textColor="?attr/colorOff"
|
||||
android:visibility="visible" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tvEol"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:drawableStart="@drawable/twotone_info_outline_24"
|
||||
android:drawablePadding="8dp"
|
||||
android:drawableTint="?attr/colorError"
|
||||
android:padding="8dp"
|
||||
android:text="@string/msg_eol"
|
||||
android:textAppearance="@style/TextSmall"
|
||||
android:textColor="?attr/colorError"
|
||||
android:visibility="gone" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/llUsage"
|
||||
android:layout_width="match_parent"
|
||||
|
|
|
@ -181,12 +181,6 @@
|
|||
<string name="msg_waiting">Waiting for event</string>
|
||||
<string name="msg_disabled">NetGuard is disabled, use the switch above to enable NetGuard</string>
|
||||
<string name="msg_notifications">Tap to grant notification permissions (for access attempt notifications, error messages, etc.)</string>
|
||||
<string name="msg_eol">
|
||||
Google forces me to state that the app collects and shares email addresses when it does not.
|
||||
I refuse to make false statements.
|
||||
A meaningful discussion with Google appears to be impossible, and therefore this problem remains unsolved.
|
||||
Google will soon remove the app from the Play Store and after that, there will be no point in maintaining and supporting this app anymore.
|
||||
</string>
|
||||
<string name="msg_revoked">NetGuard has been disabled, likely by using another VPN based app</string>
|
||||
<string name="msg_installed">\'%1$s\' installed</string>
|
||||
<string name="msg_installed_n">Has been installed</string>
|
||||
|
|
Loading…
Reference in New Issue