Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2015 Android NDK ARM architecture

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

like image 315
TooManyEduardos Avatar asked Mar 04 '15 17:03

TooManyEduardos


1 Answers

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.

like image 176
Richmar1 Avatar answered Sep 30 '22 16:09

Richmar1