Reputation: 4404
In Visual Studio 2015 Preview (currently the latest and greatest), you can compile C/C++ code for Android. This generates .a libraries (which is correct).
In the export settings you can export either for ARM or x86.
However, in the regular Android NDK you have to target either armeabi or armeabi-v7a.
The question, for which I haven't been able to find any answer yet, is whether the Visual Studio 2015 preview exports for armeabi or armeabi-v7a architectures.
Does anyone know for which architecture of ARM does VS 2015 Preview exports as?
Thank you
Upvotes: 7
Views: 1485
Reputation: 191
Visual Studio 2015 Preview supports x86 and armeabi-v7a architectures for android development. This can be deduced by looking carefully at the project's include and library directories.
Upvotes: 6