Skip to content Skip to sidebar Skip to footer

Std::strtoull Not Recognized Under My Jni Ndk Environment

i use some c++ code under android project by using JNI. But always it give an alert saying that : jni/sample.cpp: In function 'int Java_com_android_mymapsforge_create(JNIEnv*, jo

Solution 1:

Are you including <cstdlib>? The header <cstdlib> should declare std::strtoull, while <stdlib.h> should declare strtoull without the std::.


Post a Comment for "Std::strtoull Not Recognized Under My Jni Ndk Environment"