Add wip android/ios lib builds

This commit is contained in:
Ethan O'Brien
2025-11-30 11:55:22 -06:00
parent 9a072823a0
commit d4a5f0dd11
8 changed files with 358 additions and 1 deletions

7
src/log.c Normal file
View File

@@ -0,0 +1,7 @@
#include <android/log.h>
#define LOGI(tag, ...) __android_log_print(ANDROID_LOG_INFO, tag, __VA_ARGS__)
void android_log(const char* tag, const char* out) {
LOGI(tag, "%s", out);
}