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 优化 }
1
nextdiscover OP android {
compileSdkVersion 28 buildToolsVersion "28.0.0" defaultConfig { applicationId "com.tk.huifangou" 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 优化 } |
2
RockOrRoll 2018-09-13 09:23:23 +08:00 via Android
jack jill 不是被废弃了么
|
3
nextdiscover OP @RockOrRoll 不是 studio 新版本刚加上的吗
|
4
kingvieri 2018-11-09 10:33:11 +08:00
@nextdiscover 最后解决了吗?
|