Open michelau opened 6 years ago
https://github.com/mfuerstenau/gradle-buildconfig-plugin#manual-task-wiring
task generateBuildConfig (type: de.fuerstenau.buildconfig.GenerateBuildConfigTask) { ... }
The above class doesn't resolve and Gradle throws an (unhelpful) error. The problem is the package name is incorrect. It should be as follows:
task generateBuildConfig(type: de.fuerstenau.gradle.buildconfig.GenerateBuildConfigTask) { ... }
That saved me :+1:
https://github.com/mfuerstenau/gradle-buildconfig-plugin#manual-task-wiring
The above class doesn't resolve and Gradle throws an (unhelpful) error. The problem is the package name is incorrect. It should be as follows: