1

I am new to the android studio, could you please help me, I tried multiple time to print Logcats on Android emulator but unable to see Logcats print.Is there any possibility to print on Android emulator console by using Native code prints and also How to print Logcats on android studio logcat window using normal C printf.

I tried this one,

#include <stdio.h>
#include <android/log.h>

#define LOGD(...) __android_log_print(int prio, const char *tag, const char *fmt, ...)

int main()
{
    int a=23;
    LOGD(ANDROID_LOG_DEBUG,"Print something %d",a);
    return 0;
}
shyam
  • 23
  • 5

0 Answers0