1
vote
0answers
54 views

Upgrading to CDT 8.1.2 results in semantic errors on #include

I tried upgrading to CDT 8.1.2 and am getting semantic errors on things like #include <jni.h> and #include <string.h> in the syntax check pre-processor, but the program still compiles ...
0
votes
1answer
170 views

Eclipse #ifdef error using JNI, Android NDK and Vuforia

With Vuforia's ImageTargets sample application, I tried using OpenGL ES 1.1 by setting USE_OPENGL_ES_1_1 to true in jni/Android.mk and uncommenting and changing the corresponding line in ...
1
vote
1answer
74 views

Android CDT setup std cannot be resolved

I have been programing with the CDT for a while, and it has worked fine. In general everything works with it, for example I can import opencv fine by typing using namespace cv; However, right now ...
0
votes
0answers
123 views

What is the most up-to-date method of using NDK with eclipse for android development

Can anyone explain how to take the new eclipse ADT bundle (which includes Eclipse, ADT, and the most recent sdk -v 17), an existing project with some JNI (NDK) code which compiles fine using the ...
2
votes
1answer
456 views

Eclipse, Android NDK & Sequoyah: getting rid of “make: *** No rule to make target `MyProjectName_scd.mk'. Stop.”

I build a native Android appilcation (a Cocos2Dx game) on Windows in Eclipse using Sequoyah to avoid command line stuff when building C++ source. Everything builds fine except I get following error ...
1
vote
1answer
759 views

Eclipse don't see headers to include :/

What can be wrong in my project properties if eclipse don't see headers I include ? I have good include paths, i can see them in window with includes hierarchy. But in source editor there is ...
2
votes
2answers
1k views

multiple (my and 3rd-party) native libraries in Android NDK

I have to use two native libraries: one is my own and the other one is 3rd-party. As long as I used them in separate projects, everything was ok. But now I'm getting the Exception ...
5
votes
7answers
10k views

Android NDK in Eclipse :: (Cannot run program “ndk-build”: Unknown reason)

I am loosing my mind trying to build my NDK project from eclipse using the CDT plugin and i get the error:- NDK (Cannot run program "ndk-build": Unknown reason) The application runs but i loose all ...
0
votes
1answer
447 views

NDK Automatic build in eclipse OSX Invoking autoreconf in build directory:

this time with a droid related question. Im running Eclipse Helios and Mac OS X 10.6.8 I have been following a book and a few tutorials on building the NDK from both command line and Eclipse. I am ...
3
votes
3answers
1k views

false error from Eclipse: Function '__android_log_print' could not be resolved (Android, CDT)

I have an Android NDK project whose NDK part compiles ok from command line; I used to have no problems with running the compiled stuff from under Eclipse as a pure Java project. But I converted it to ...
6
votes
3answers
4k views

Eclipse-CDT fails to find stdlib symbols in NDK project

I am trying to write a simple Android application using the NDK and C++. Specifically, I'd like to use the gnustdc++ included with the newest version of the NDK (r7). The JNI library has compiled and ...
3
votes
1answer
313 views

Exploring Android Platform Code in Eclipse (Java and C++)

I am exploring Android platform source code. I'd like to understand how parts of the platform are implemented. I am looking for a way to leverage Eclipse's java development tools and C/C++ development ...
0
votes
1answer
622 views

Including library files with Android NDK

I'm working with a large library of files, and have one .cpp to compile. All of my #include statements (.cpp and .h "library" files that are already written) are in a different folder (plus ...
0
votes
1answer
1k views

OpenGL ES Coordinate System on Android?

I am new to Android developing and curently I am playing arround with OpenGL ES 1 using the NDK. Unfortunetely I got a problem with the Coordinate system. In the official example, the following code ...
1
vote
1answer
289 views

Builders page disappeared from Eclipse project properties

I do not know what happened to my Eclipse (Helios) with latest Android SDK and latest Sequoyah plugins. Suddenly, I do not see my the "Builders" page in Project properties - not for a single project ...
1
vote
2answers
2k views

Android-ndk with eclipse: How to force reinstallation of apk

I'm developing a library in c++ using the android NDK. Actually i created my project in android with both java and c++ sources. I can compile and run my project and all works fine. Now i would like ...