diff options
author | cyBerta <cyberta@riseup.net> | 2021-02-24 23:23:47 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2021-02-26 10:03:31 +0100 |
commit | 49b1539722063a53573fb859f543967ebff5ce14 (patch) | |
tree | 2cc2d13e3250faf91b977acc2c18676af80c6425 /app/src/main/aidl/de | |
parent | cf6e6f355cc71e43c69f20716a7aa6fd0d6990ce (diff) |
implement service binding in order to fix remote service exception during foreground service start
Diffstat (limited to 'app/src/main/aidl/de')
-rw-r--r-- | app/src/main/aidl/de/blinkt/openvpn/core/IOpenVPNServiceInternal.aidl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/src/main/aidl/de/blinkt/openvpn/core/IOpenVPNServiceInternal.aidl b/app/src/main/aidl/de/blinkt/openvpn/core/IOpenVPNServiceInternal.aidl index 293c2b6d..98cc3e42 100644 --- a/app/src/main/aidl/de/blinkt/openvpn/core/IOpenVPNServiceInternal.aidl +++ b/app/src/main/aidl/de/blinkt/openvpn/core/IOpenVPNServiceInternal.aidl @@ -23,4 +23,6 @@ interface IOpenVPNServiceInternal { boolean isVpnRunning(); + void startWithForegroundNotification(); + } |