Questions tagged [jni]
The JNI is a programming framework that enables Java code running in a JVM to call, and to be called by native applications and libraries.
9 questions
0 votes
1 answer
147 views
OpenGL ES, object intersection artifacts
I was developing a C++ implementation of OpenGL for Android and I noticed those weird artifacts that formed between 2 intersecting objects (or triangles) : [Here are the artifacts on Android] The ...
2 votes
0 answers
128 views
How to develop a good game project? [closed]
I have enough experience in both C++ and Java, since I've been working on them a lot. My graduation project is, in my case, a ...
0 votes
1 answer
2k views
How to change the Android NDK jni calls dynamically?
Some people are using NativeActivity for working with Android projects exclusively in C++, but this also carries some disadvantages, so I, like many others, decided that I'd use instead a Java glue ...
1 vote
1 answer
401 views
New way of integrating Openfeint in Cocos2d-x 0.12.0
I am trying to implement OpenFeint for Android in my cocos2d-x project. My approach so far has been creating a button that calls a static java method in class Bridge using jnihelper functions (...
0 votes
2 answers
3k views
Android NDK - moving .so files from one project to another
I have a small project I've coded for Android that uses a small about of NDK/JNI code. I'd like to share this code between two projects but I'm having little luck so far. First off, I've tried to ...