imagine some proyect like this one that use android-annotations and for this work i have to put this in build.gradle
apt {
arguments {
resourcePackageName "com.pandaos.smartconfig"
androidManifestFile variant.outputs[0].processResources.manifestFile
}
}
where: resourcePackageName "com.pandaos.smartconfig"
its the path where code its annotated... the config for plugin android-apt
apply plugin: 'com.neenbedankt.android-apt'
I suppose, that plugin "invoke" some task to generate the code that android-annotations create under the hood, but...
Its possible define multiple "packages in the app"?