Skip to content

Commit 9b6ae80

Browse files
committed
Added extractNativeLibs="true" to the lib's manifest.
That should cause the stunnel binary to be extracted onto the device, where the Java lib can use it. Without this option, it depends on the app's minSdk whether the native libraries are extracted or not.
1 parent db58bf7 commit 9b6ae80

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

stunnel/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
defaultConfig {
77
minSdkVersion 9
88
targetSdkVersion 29
9-
versionCode 1
10-
versionName "1.0"
9+
versionCode 10000001
10+
versionName "1.0.1"
1111
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1212
}
1313
buildTypes {

stunnel/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
package="de.fwinkel.android_stunnel">
33

4-
<application />
4+
<application
5+
android:extractNativeLibs="true" />
56
</manifest>

0 commit comments

Comments
 (0)