wasm-micro-runtime/core
Benbuck Nason 7744e84607
ssp_config.h: Fix ifdef for android random api (#3444)
It looks like the preferred preprocessor check for Android is `__ANDROID__`
instead of `ANDROID`:
https://groups.google.com/g/android-ndk/c/cf9_f1SLXls

Change `(defined(ANDROID) && __ANDROID_API__ < 28)` to
`((defined(ANDROID) || defined(__ANDROID__)) && (__ANDROID_API__ < 28))`.
2024-05-18 20:23:34 +08:00
..
deps Separate app-manager and app-framework from WAMR (#3129) 2024-02-20 18:12:36 +08:00
iwasm ssp_config.h: Fix ifdef for android random api (#3444) 2024-05-18 20:23:34 +08:00
shared nuttx/esp32s3: Apply ibus/dbus adjustment to internal ram 1 as well (#3421) 2024-05-14 11:28:24 +08:00
config.h Remove unused macros which were moved to wamr-app-framework (#3425) 2024-05-14 10:52:05 +08:00
version.h Update version number to 2.0.0 and update release notes (#3327) 2024-04-20 10:16:34 +08:00