build.gradle 392 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 apply plugin : 'com.android.library' apply from : '../../common.gradle' android { defaultConfig { // 模块混淆配置 consumerProguardFiles 'proguard-base.pro' } sourceSets { main { // res 资源目录配置 res.srcDirs( 'src/main/res', 'src/main/res-sw', ) } } }