Skip to content

Commit

Permalink
Fix app not launching on older APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
schwabe committed Aug 2, 2020
1 parent 22522ce commit 1bad889
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions main/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {
defaultConfig {
minSdkVersion(14)
targetSdkVersion(30) //'Q'.toInt()
versionCode = 170
versionName = "0.7.17"
versionCode = 171
versionName = "0.7.17a"

externalNativeBuild {
cmake {
Expand Down
2 changes: 1 addition & 1 deletion main/src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ set(openvpn_srcs

PREPEND(openvpn_srcs_with_path "openvpn" ${openvpn_srcs})

add_library(openvpn STATIC ${openvpn_srcs_with_path})
add_library(openvpn SHARED ${openvpn_srcs_with_path})

target_include_directories(openvpn PRIVATE
openvpn-config
Expand Down

0 comments on commit 1bad889

Please sign in to comment.