spanky411

Results 13 comments of spanky411

For what its worth, I took the echarts dist file (https://echarts.apache.org/en/download.html), fed it through this escaper https://codebeautify.org/javascript-escape-unescape and then updated chartconfig.js and it seemed to work... I didn't thoroughly test...

I would like to see this feature too.

As best I can tell, its that the openssl version the SDK uses is 1.1.1 (current openssl is up to 3.5). In linux that links to the system openssl, so...

On android, I think it does. This is the best clue I've found: https://github.com/openssl/openssl/issues/15154 Apologies, but I'm sort of figuring this out as I go. This could be a deadend,...

Shouldn't it just be able to use the system certs. It seems like openssl has solved that problem in more recent versions, but the aws-sdk-cpp build tools insist on using...

I had that... Actually specifying the library file itself. This time I looked over the cmake output and got this: ``` ... [370/372] Building C object crypto/fipsmodule/CMakeFiles/fipsmodule.dir/bcm.c.o [371/372] Linking C...

Basically this: ``` cmake .. \ -GNinja \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_SYSTEM_NAME=Android \ -DTARGET_ARCH=ANDROID \ -DNDK_DIR="${ANDROID_NDK}" \ -DANDROID_NATIVE_API_LEVEL=21 \ -DANDROID_ABI=${MY_ABI} \ -DANDROID_BUILD_ZLIB=OFF \ -DBUILD_SHARED_LIBS=OFF \ -DENABLE_TESTING=OFF \ -DAUTORUN_UNIT_TESTS=OFF \ -DBUILD_ONLY="s3;dynamodb;cognito-identity;cognito-idp" \...

The android tools are pulling that in and compiling it. It compiles curl openssl, and zlib, unless explicitly turned off (although at least with openssl, it insists on building it...

Any updates?

@sbiscigl thanks for the response. To clarify, it does compile and “run” but fails to connect to the AWS service. Specifically the curl error 60. I’ve compiled and ran a...