The ndk tag has no wiki summary.
-2
votes
0answers
116 views
Unable to launch cygpath. Is Cygwin on the path? - cocos2d-x [closed]
I am new to cocos2d-x. I configure cocos2d-x in Windows 8 / Eclipse and I use android-ndk-r8b.
First of all, before I get this error of cygpath, I had the following error:
"Program bash not found in ...
1
vote
1answer
326 views
Android ndk-build can't find glm headers
I am trying to port some boilerplate code of mine to work on android, using the android ndk & NativeActivity
So far I have just one file that defines the glue between android and my code and it ...
1
vote
3answers
452 views
Are native code obfuscations needed to prevent piracy of Android games?
Is the copyright protection and enforcement of Android apps written in Java sufficient or should I be relying on a native implementation to use machine code obfuscating techniques in order to prevent ...
1
vote
1answer
176 views
Is there a way to setup an Android game project with a large assets during development to allow for fast testing/iteration?
I'm working on an Android port of an iOS game at the moment. I am using the Android NDK only (android_native_app_glue) in Eclipse (CDT + ADT). I am using the Android emulator, API 15 (but we are ...
-1
votes
2answers
1k 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 ...
1
vote
1answer
749 views
Android : Some textures not loading after resuming twice
This is an odd one. When I press home and then restart my game I reload all my textures (checking glIsTexture on the id's first). If I do this once, all textures load as expected, but if I do it ...
1
vote
1answer
837 views
Passing an OpenGL texture ID loaded in NDK back to java
Is it possible to load a texture using the NDK, but pass the result back to use in java.
I have used the code in the link above and it appears to load the png correctly and generates a texture ID ...
7
votes
5answers
2k views
How can I refer to Android assets in other directories?
My project was initially not meant for Android, and its assets are organised along the following directory structure (I hope the ASCII art renders reasonably well):
/
+- engine/
| +- src/
| ...