Visual Studio 2015 Android NDK ARM architecture

In Visual Studio 2015 Preview (currently the latest and largest) you can compile C / C ++ code for Android. This generates .a libraries (which is correct).

In the export settings, you can export either ARM or x86.

However, in regular Android NDK, you need to target either armeabi or armeabi-v7a.

The question I still could not find an answer to is whether Visual Studio 2015 preview export for army or army-v7a-architectures.

Does anyone know for what architecture ARM performs VS 2015 Preview export how?

thanks

+5
source share
1 answer

Visual Studio 2015 Preview supports x86 and armeabi-v7a architectures for android development. This can be done by carefully studying the project catalogs and libraries.

+4
source

Source: https://habr.com/ru/post/1214685/


All Articles