From 2ccc4039958abb90bf6f1cfc9c3d2de480abbecb Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Fri, 2 Aug 2013 11:38:34 +0200 Subject: Welcome Android 4.3 Also add prototypish restricted profile support --- .../openvpn/core/GetRestrictionReceiver.java | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 src/de/blinkt/openvpn/core/GetRestrictionReceiver.java (limited to 'src/de') diff --git a/src/de/blinkt/openvpn/core/GetRestrictionReceiver.java b/src/de/blinkt/openvpn/core/GetRestrictionReceiver.java new file mode 100644 index 00000000..14134148 --- /dev/null +++ b/src/de/blinkt/openvpn/core/GetRestrictionReceiver.java @@ -0,0 +1,44 @@ +package de.blinkt.openvpn.core; + +import android.app.Activity; +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; +import android.content.RestrictionEntry; +import android.os.Bundle; + +import java.util.ArrayList; + +import de.blinkt.openvpn.R; + +/** + * Created by arne on 25.07.13. + */ +public class GetRestrictionReceiver extends BroadcastReceiver { + @Override + public void onReceive(final Context context, Intent intent) { + final PendingResult result = goAsync(); + + new Thread() { + @Override + public void run() { + final Bundle extras = new Bundle(); + + ArrayList restrictionEntries = initRestrictions(context); + + extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, restrictionEntries); + result.setResult(Activity.RESULT_OK,null,extras); + result.finish(); + } + }.run(); + } + + private ArrayList initRestrictions(Context context) { + ArrayList restrictions = new ArrayList(); + RestrictionEntry allowChanges = new RestrictionEntry("allow_changes",false); + allowChanges.setTitle(context.getString(R.string.allow_vpn_changes)); + restrictions.add(allowChanges); + + return restrictions; + } +} -- cgit v1.2.3