New issue
Advanced search Search tips

Issue 986 attachment: native-lib.cpp (174 bytes)

1
2
3
4
5
6
7
8
9
10
11
#include <jni.h>
#include <string>
#include <unistd.h>

extern "C"
void
Java_com_p0_binder_MainActivity_fork(
JNIEnv* env,
jobject /* this */) {
fork();
}