android { compileSdkVersion 28 buildToolsVersion "28.0.0" defaultConfig { applicationId "com.XX.XXXXX" minSdkVersion 15 targetSdkVersion 28 versionCode 1 versionName "1.0" multiDexEnabled true jackOptions { enabled true } //Make jack build tool true. useJack true ndk {//设置支持的 SO 库架构 abiFilters "armeabi-v7a" } } dexOptions { javaMaxHeapSize "4g" preDexLibraries = false//关闭 odex 优化 }