-1

I saw the yt-watchme code in github. when i build ndk it not done.

c file:

ffmpeg-jni.c

jni folder

enter image description here

when I build ndk it comes like this

enter image description here enter image description here enter image description here enter image description here

How can I solve this error?

Pradeep Simba
  • 282
  • 5
  • 15

1 Answers1

1

jint and JNICALL should be separated by a space.

The other error is because you are not passing a format string. Change that line to

LOGI("%s", x);

And when you get it compiling, please submit a pull request for other people to use :)

Botje
  • 26,269
  • 3
  • 31
  • 41