diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-11-01 15:03:52 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-11-01 15:03:52 +0100 |
commit | b7bf2292b091129404aea585693298692895f003 (patch) | |
tree | 0f648333e1b011e491073ab62d2e2e8a48f4160e /src/de/blinkt | |
parent | 1a49c83ad2fd3c98149e15c5605a2916069674ed (diff) |
Welcome Android 4.4
Diffstat (limited to 'src/de/blinkt')
-rw-r--r-- | src/de/blinkt/openvpn/VPNPreferences.java | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/VPNPreferences.java b/src/de/blinkt/openvpn/VPNPreferences.java index 700734f1..446a4ca7 100644 --- a/src/de/blinkt/openvpn/VPNPreferences.java +++ b/src/de/blinkt/openvpn/VPNPreferences.java @@ -2,9 +2,11 @@ package de.blinkt.openvpn; import java.util.List; +import android.annotation.TargetApi; import android.app.AlertDialog; import android.content.DialogInterface; import android.content.Intent; +import android.os.Build; import android.os.Bundle; import android.preference.PreferenceActivity; import android.view.Menu; @@ -23,7 +25,13 @@ public class VPNPreferences extends PreferenceActivity { } - @Override + @TargetApi(Build.VERSION_CODES.KITKAT) + @Override + protected boolean isValidFragment(String fragmentName) { + return true; + } + + @Override protected void onStop() { super.onStop(); } |