summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-10-07Fix tls-auth not workingArne Schwabe
2021-10-07Fix two small issues reported in crashes from Play ConsoleArne Schwabe
2021-10-07Fix concurrent access on TrafficHistory listsArne Schwabe
2021-10-06Version 0.7.26Arne Schwabe
2021-10-06Minor fixesArne Schwabe
2021-10-06Fix legacy preovider option not being saved.Arne Schwabe
2021-10-06Allow legacy algorithm in the OpenSSL Speed testArne Schwabe
2021-10-06Detect broken server URLs on import instead crashingArne Schwabe
2021-10-06Fix crash when no connections are definedArne Schwabe
2021-10-06Fix NPE in Toast on Android TV (closes #1370)Arne Schwabe
2021-10-06Add option to allow loading the legacy providerArne Schwabe
2021-10-06Allow setting a default profile via App RestrictionsArne Schwabe
2021-10-04Version 0.7.25Arne Schwabe
2021-10-04Hide autologin checkbox when importing from URLArne Schwabe
2021-10-04Minor cleanupsArne Schwabe
2021-10-04Add logging of StrictMode violations to app internal logArne Schwabe
Also disable penaltyDeath by default as thjere is some Android internal leak that I am unable to track down.
2021-10-04Add Strictmode to remoteExampleArne Schwabe
2021-10-04Update dependencies version to latestArne Schwabe
2021-10-04Update okhttp to version 4.9.1 and adjust API usageArne Schwabe
2021-10-04Minor code cleanupArne Schwabe
2021-10-04Avoid ANR when starting OpenVPNService and fetching profileArne Schwabe
2021-10-04Add check to start profile when importing to remote ExampleArne Schwabe
2021-10-04Ensure profile is saved if auth/password is queried on startupArne Schwabe
This ensure the profile counter is incremented and the profile is saved to disk to avoid the race condition of not getting the user/pass which was started. Closes #1342
2021-10-03Fix peer-fingerprint with auth-user-passArne Schwabe
Also throw an error if neither of CA or peer-fingerprint is configured
2021-10-03Fix various issues in remoteExampleArne Schwabe
2021-10-03Do not stop github build if one variant failsArne Schwabe
2021-10-03Move Ui specific unit tests to Ui specific test fileArne Schwabe
2021-10-03Small gradle build file cleanupArne Schwabe
2021-10-03Add unit tests runs to github actionsArne Schwabe
2021-10-02Fix lint issueArne Schwabe
2021-10-01Modernise default ciphers in the OpenSSL Speed testArne Schwabe
2021-10-01Remove Ice Cream Sandwich support from ics-openvpn (closes #1337)Arne Schwabe
Ice cream sandwich was the first Android version to support the VPNService API, which also gave the project its name as it was an Android port to ICS. Now that the NDK does no longer support API 14 and 15, this project needs to say farewell to Ice cream sandwich.
2021-10-01Update OPenSSL to 3.0 and OpenVPN to current masterArne Schwabe
2021-10-01Do not use key CA certificate if peer-fingerprint is enabledArne Schwabe
2021-10-01Implement using compat-modeArne Schwabe
2021-10-01Implement new signing API as required by the OpenSSL 3.0 providerArne Schwabe
2021-09-27Fix background in Tab BarArne Schwabe
2021-09-27Update build system and API to 31Arne Schwabe
2021-09-21Note that APIprofile also is exempted from GPL like the AIDL interfacesArne Schwabe
2021-09-09Fix NPE when resuming VPN activitysyphyr
Fixes: Implement support of openvpn://import-profile/ support E AndroidRuntime: FATAL EXCEPTION: main E AndroidRuntime: Process: de.blinkt.openvpn, PID: 15364 E AndroidRuntime: java.lang.RuntimeException: Unable to resume activity {de.blinkt.openvpn/de.blinkt.openvpn.activities.MainActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference E AndroidRuntime: at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3454) E AndroidRuntime: at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3494) E AndroidRuntime: at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2757) E AndroidRuntime: at android.app.ActivityThread.-wrap12(ActivityThread.java) E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1496) E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102) E AndroidRuntime: at android.os.Looper.loop(Looper.java:154) E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:6186) E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method) E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:889) E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:779) E AndroidRuntime: Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference E AndroidRuntime: at de.blinkt.openvpn.activities.MainActivity.onResume(MainActivity.java:82) E AndroidRuntime: at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1270) E AndroidRuntime: at android.app.Activity.performResume(Activity.java:6788) E AndroidRuntime: at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3431) E AndroidRuntime: ... 10 more
2021-08-25Version 0.7.24Arne Schwabe
2021-08-24Implement support of openvpn://import-profile/ supportArne Schwabe
For details about the protocol see https://github.com/OpenVPN/openvpn3/blob/master/doc/webauth.md
2021-08-14fix skeleton buildArne Schwabe
2021-08-14Also build skeleton target in Github actionsArne Schwabe
2021-08-13Add a dialog in Log Window allowing to start pending authArne Schwabe
2021-08-13Add WEB_AUTH pending auth supportArne Schwabe
2021-08-12Update coverity scriptArne Schwabe
2021-08-12Update lz4 and asio to latest releaseArne Schwabe
2021-08-12Rename opvpnutil to ovpnutilArne Schwabe
opvpn is a rather unusual abbreviation for openvpn
2021-07-18Change provider authority reference to include applicationIdDániel Zolnai
We have found an issue that we couldn't install any of our apps next to each other, and also next to the official OpenVPN for Android app. The reason is that the provider authorities must be unique globally on the device. Since the class name is hardcoded, it will be the same for all of the implementors of this library. Although this issue can be easily fixed by changing this manually, I think it is important to do it, because it might be missed by most developers, since we usually do not test 2 VPN apps next to each other. By doing this change, the authority will always start with the final application package ID, so it should be unique globally.