native service, EGL, native test client

This commit is contained in:
2025-12-28 20:30:55 +01:00
parent de82e50bd5
commit 19400fd2b2
27 changed files with 13683 additions and 23 deletions

9
src/main/cpp/logger.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include "logger.h"
#include <android/log.h>
#define LOG_TAG "MosisOS"
#include <android/log_macros.h>
void Logger::Log(const std::string &message)
{
ALOGI("%s", message.c_str());
}