We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When building an .AAP app it doesn't work when the app has been released in Google Play. It seems isc-openVPN isn't starting correctly.
However the app just works fine when manually installing it directly on a device.
References and possible workaround: schwabe/ics-openvpn#1331 (comment) https://stackoverflow.com/questions/70479205/missing-so-file-lib-when-building-in-app-bundle
Maybe adding this to to build.gradle will fix it: android { compileSdk 34 packagingOptions { jniLibs { useLegacyPackaging = true } } bundle { abi { enableSplit = false } }
The text was updated successfully, but these errors were encountered:
Fixed by #428
Sorry, something went wrong.
No branches or pull requests
When building an .AAP app it doesn't work when the app has been released in Google Play.
It seems isc-openVPN isn't starting correctly.
However the app just works fine when manually installing it directly on a device.
References and possible workaround:
schwabe/ics-openvpn#1331 (comment)
https://stackoverflow.com/questions/70479205/missing-so-file-lib-when-building-in-app-bundle
Maybe adding this to to build.gradle will fix it:
android {
compileSdk 34
packagingOptions {
jniLibs {
useLegacyPackaging = true
}
}
bundle {
abi { enableSplit = false }
}
The text was updated successfully, but these errors were encountered: