yuqucheng fa7c338ea5 init
2026-06-23 09:54:30 +08:00

25 lines
325 B
C++

#include "il2cpp-config.h"
#if IL2CPP_TARGET_ANDROID
#include "utils/StringUtils.h"
#include <jni.h>
#include <android/log.h>
namespace il2cpp
{
namespace os
{
namespace ConsoleExtension
{
void Write(const char* buffer)
{
__android_log_print(ANDROID_LOG_INFO, "IL2CPP", "%s", buffer);
}
}
}
}
#endif