android {
.....
sourceSets{
main{
java{
if(configOne.isRealy) {
//排除类
exclude 'com/example/TwoLog.java'
//排除对应文件夹下的类
exclude 'com/example/'
}
}
}
}
}
网友评论