The src/sdk-openssl/android/multiarch/arm64-v8a and src/sdk-openssl/android/multiarch/armeabi-v7a has the same libssl.a and libcrypto.a will results compile format error.
If it is a .a file of the corresponding to architecture, they should be different.
$ find . -name "*.a" -exec shasum {} \;
2a15efbfa8afed2b64200f41004e80f53b1e42a3 ./armeabi-v7a/libcrypto.a
6578720005634f7909e2c8014aa092f0df360b4a ./armeabi-v7a/libssl.a
40f38245a86b6665db9054d9a3c8ce7c95ac8e3d ./x86/libcrypto.a
ac34ee5f65b38b21823c3dbeb4dc04ca504239e2 ./x86/libssl.a
2a15efbfa8afed2b64200f41004e80f53b1e42a3 ./arm64-v8a/libcrypto.a
6578720005634f7909e2c8014aa092f0df360b4a ./arm64-v8a/libssl.a
ba060eb3ddea506a29ed8f0858fe264246a6feaf ./x86_64/libcrypto.a
6200ae1fc9fbd9cf8ca46884d40f2e94accedd88 ./x86_64/libssl.a
The
src/sdk-openssl/android/multiarch/arm64-v8aandsrc/sdk-openssl/android/multiarch/armeabi-v7ahas the samelibssl.aandlibcrypto.awill results compile format error.If it is a
.afile of the corresponding to architecture, they should be different.