Skip to content

Commit

Permalink
Version 0.7.21
Browse files Browse the repository at this point in the history
  • Loading branch information
schwabe committed Sep 24, 2020
1 parent bce3b94 commit 154fee8
Showing 1 changed file with 2 additions and 2 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 = 174
versionName = "0.7.20"
versionCode = 175
versionName = "0.7.21"

externalNativeBuild {
cmake {
Expand Down

4 comments on commit 154fee8

@MortezaYgh
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

HI
I want to Convert the app into a system app. My problem is that the libovpnexec.so library wants +x access, but I do not want to give this library executive access. Thank you for your help.

@schwabe
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MortezaYgh well then you have rewrite the whole openvpn project to be used as library. Good luck with that.

@MortezaYgh
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, I did not rewrite the whole project. I want to convert the app to a system app and put the apk file in the /system/app/ path. My problem is that the libovpnexec.so lib wants +x access, but I do not want to give this library executive access. How can I remove x access from this library and the program works properly?

@schwabe
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MortezaYgh No. You misunderstood me. Either you keep the executable permission or you have to rewrite OpenVPN. What you currently want is just not possible.

Please sign in to comment.