When I try to include any C++ class like vector in my Android NDK project (using NDK r5b, the latest), I get an error like the following...

Compile++ thumb : test-libstl <= test-libstl.cpp /Users/nitrex88/Desktop/Programming/EclipseProjects/STLTest/jni/test-libstl.cpp:3:18: error: vector: No such file or directory

Other people who reported this issue online have claimed success by adding

APP_STL := stlport_static

to their Application.mk file. I have done this as well as tried every other possible value for APP_STL. I've cleaned to project, ran ndk-build clean, deleted the obj and libs folders, and still when I compile it cannot find the vector class. I've been working on this for a number of weeks now (since NDK r5 came out) and would really appreciate if someone has any advice. Thanks!

link|improve this question

2  
First off, check the android-ndk-r5\build\platforms\android-X\arch-arm\usr\include directory - is vector really there? – Seva Alekseyev Feb 4 '11 at 1:06
No it is not! I don't know much about how the NDK works beyond using JNI and compiling the sources. How can I get vector to be there? I do see vector in android-ndk-r5b/sources/cxx-stl/stlport/stlport if that means anything. Thanks for the quick reply and I really appreciate it! – Nitrex88 Feb 4 '11 at 7:10
1  
@seva So I tried running a bunch of the tools for rebuilding the toolchain and prebuilts (the .sh files int he tools folder of the NDK) and still couldn't get STL headers working. If I download the NDK fresh from the android site shouldn't everything just work? I tried and fresh download doesn't change anything. Any more insight into the matter you could offer? – Nitrex88 Feb 5 '11 at 21:24
[this is how I configured STLPort to work with Android Froyo.][1] [1]: stackoverflow.com/questions/1650963/ustl-or-stlport-for-android – ZhangXuelian Nov 3 '11 at 11:39
[this is how I configured STLPort to work with Android Froyo.][1] [1]: stackoverflow.com/questions/1650963/ustl-or-stlport-for-android – ZhangXuelian Nov 3 '11 at 11:56
show 1 more comment
feedback

1 Answer

up vote 31 down vote accepted
+50

It is possible. Here is some step by step:

In $PROJECT_DIR/jni/Application.mk:

APP_STL                 := stlport_static

I tried using stlport_shared, but no luck. Same with libstdc++.

In $PROJECT_DIR/jni/Android.mk:

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE    := hello-jni
LOCAL_SRC_FILES := hello-jni.cpp
LOCAL_LDLIBS    := -llog

include $(BUILD_SHARED_LIBRARY)

Nothing special here, but make sure your files are .cpp.

In $PROJECT_DIR/jni/hello-jni.cpp:

#include <string.h>
#include <jni.h>
#include <android/log.h>

#include <iostream>
#include <vector>


#define  LOG_TAG    "hellojni"
#define  LOGI(...)  __android_log_print(ANDROID_LOG_INFO,LOG_TAG,__VA_ARGS__)
#define  LOGE(...)  __android_log_print(ANDROID_LOG_ERROR,LOG_TAG,__VA_ARGS__)


#ifdef __cplusplus
extern "C" {
#endif

// Comments omitted.    
void
Java_com_example_hellojni_HelloJni_stringFromJNI( JNIEnv* env,
                                                  jobject thiz )
{
    std::vector<std::string> vec;

    // Go ahead and do some stuf with this vector of strings now.
}

#ifdef __cplusplus
}
#endif

The only thing that bite me here was #ifdef __cplusplus.

Watch the directories.

To compile, use ndk-build clean && ndk-build.

link|improve this answer
1  
Thank you thank you!! You finally solved my problem. Turns out I had my Application.mk in the wrong place! I had it in the project folder but not in the JNI folder (I'm not sure why but since I started android development I always thought it went there). Seeing you put the path of the Application.mk in the jni folder made me realize. Thanks and you get the bounty! – Nitrex88 Feb 8 '11 at 18:53
Simply creating the necessary Application.mk solved it, but I see the message Android NDK: You might want to use $NDK/build/tools/build-stlport.sh. NOTE: this did not work under cygwin – Someone Somewhere Feb 8 at 23:11
hello, I am able to build application which is using vector . – Shubh Feb 29 at 12:46
hello, I added APP_STL := stlport_static in Application.mk file and it's working for my application but same application I include in Android Source , here it's giving me error "vector class not found.." during compile the code . pls suggest me any one have idea about it. – Shubh Feb 29 at 12:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.