Files
RedHotRoast-ios/HybridCLRData/LocalIl2CppData-OSXEditor/il2cpp/libil2cpp/os/Android/ConsoleExtension.cpp
T
2026-07-17 14:03:00 +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