在我的根项目中,我想配置" apt"对于我的所有项目,如下面的代码。但我不知道如何从子项目中获取包名?
allprojects {
apply plugin: 'android-apt'
apt {
arguments {
androidManifestFile variant.outputs[0].processResources.manifestFile
resourcePackageName '?????'
}
}
}