25 lines
325 B
C++
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
|