shadowsocks-android
shadowsocks-android copied to clipboard
Issues in app bundle
I want to create Android app bundle and its is successfully created, but when I install with bundle apks and try to connect, It always told "Cannot run program "/data/app/packageName/lib/arm64/libss-local.so" (in directory "/data/user_de/0/packageName/no_backup"): error=2, No such file or directory".
Add this to build.gradle.kts android section.
// for app bundle build, package native .so libs into the bundle
packagingOptions {
jniLibs {
useLegacyPackaging = true
}
}