|
|
|
|
|
by pjmlp
2542 days ago
|
|
If your Java usage is constrained to Android there is a JNI workaround that many NDK folks tend to use. Instead of doing JNI calls, send Android messages between NDK and Framework threads. There is the setup of MessageHandler on both sides, but long term they are more productive than JNI boilerplate. |
|