How to configure NDK project in Android Studio 1.3

前端 未结 3 865
有刺的猬
有刺的猬 2021-02-20 03:08

I have been trying to configure Android Studio for NDk by following this article and this article. The following are the contents of my gradle-wrapper.properties



        
3条回答
  •  Happy的楠姐
    2021-02-20 03:43

    NDK Build option
    
    ndk {
      moduleName "SeePlusPlus" // Name of C++ module (i.e. libSeePlusPlus)
      cFlags "-std=c++11 -fexceptions" // Add provisions to allow C++11 functionality
      stl "gnustl_shared" // Which STL library to use: gnustl or stlport
    }
    

提交回复
热议问题