@@ -40,7 +40,7 @@ android {
40
40
// libraries Gradle should build and package with your APK.
41
41
// need to also have ~ boost binaries built for each abi specified here
42
42
// abiFilters 'armeabi-v7a', 'x86', 'x86_64', 'arm64-v8a'
43
- abiFilters ' armeabi-v7a'
43
+ abiFilters ' armeabi-v7a' , ' arm64-v8a ' , ' x86 '
44
44
}
45
45
46
46
@@ -65,20 +65,19 @@ android {
65
65
// As a workaround in the meantime, need to add them manually to jniLibs.srcDirs
66
66
// Note: This causes ALL *.so files in ABI (eg "armeabi-v7a") subdir of this dir to get packaged into .apk - relative to "app" dir
67
67
// If you want to just include those necessary (eg chrono, system) copy/link them to a separate dir, and reference that dir here instead.
68
- jniLibs. srcDirs = [
69
- // should contain any external libs which should be compiled in {armeabi-v7a,arm64-v8a,x86,x86_64,mips} subdirs
70
- my_boost_dir_libs
71
-
72
- // , "src/main/JniLibs/boost" // could add additional dirs (with ABI subdirs) to be packaged into apk like this.
73
- // Relative paths like this will be interpreted as relative to "app" dir
74
- ]
68
+ // jniLibs.srcDirs = [
69
+ // // should contain any external libs which should be compiled in {armeabi-v7a,arm64-v8a,x86,x86_64,mips} subdirs
70
+ // my_boost_dir_libs
71
+ //
72
+ // //, "src/main/JniLibs/boost" // could add additional dirs (with ABI subdirs) to be packaged into apk like this.
73
+ // // Relative paths like this will be interpreted as relative to "app" dir
74
+ // ]
75
75
}
76
76
}
77
77
compileOptions {
78
78
sourceCompatibility = 1.8
79
79
targetCompatibility = 1.8
80
80
}
81
- buildToolsVersion = ' 29.0.3'
82
81
83
82
84
83
}
0 commit comments