0

I am cross compiling my some legacy source code to android , I am using c++ map in my source code .

I am using map to store some object with ID

 map<string, object> ; 
 map<"ls/1/uri/2", test> ;

Since I dont have map support in android ndk can some body suggest which source lib in the Ndk will help avail the same functionality ..

Cœur
  • 37,241
  • 25
  • 195
  • 267
user2245568
  • 87
  • 1
  • 7
  • There should certainly be `map` support with the NDK. Are you [linking against the STL](http://stackoverflow.com/a/4931170/1524450)? – Michael Apr 19 '13 at 11:19
  • compilation of this goes fine but in the run time I am getting the Fatal error . when I tried this map test ; test["Map1"] = "Map"; isn't the proper way to stroe the data in map ? – user2245568 Apr 20 '13 at 06:15

0 Answers0