plugins { id 'com.android.library' id 'kotlin-android' } android { compileSdkVersion COMPILE_SDK_VERSION buildToolsVersion BUILD_TOOLS_VERSION defaultConfig { minSdkVersion MIN_SDK_VERSION targetSdkVersion TARGET_SDK_VERSION externalNativeBuild { cmake { cppFlags '-std=c++11 -frtti -fexceptions -lz' abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' } } ndk { // 设置支持的SO库架构 abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' } } buildTypes { release { minifyEnabled MINIFY_ENABLE proguardFiles 'proguard-rules.pro' } } buildFeatures { buildConfig = false } lintOptions { abortOnError false } repositories { flatDir { dirs '../libs' } } dexOptions { preDexLibraries = false } // compileOptions { // kotlinOptions.freeCompilerArgs += ['-module-name', "cn.yyxx.eyuangame.core"] // } externalNativeBuild { cmake { path "CMakeLists.txt" } } ndkVersion NDK_VERSION } dependencies { }