File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
source/src/main/groovy/com/kezong/fataar Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,9 @@ class FatAarPlugin implements Plugin<Project> {
3636 project. extensions. create(FatAarExtension . NAME , FatAarExtension )
3737 createConfigurations()
3838 registerTransform()
39- project. afterEvaluate {
40- project. afterEvaluate {
41- doAfterEvaluate()
42- }
39+ project. gradle. projectsEvaluated {
40+ checkKotlinMultiPlatformPlugin()
41+ doProjectsEvaluated()
4342 }
4443 }
4544
@@ -49,7 +48,7 @@ class FatAarPlugin implements Plugin<Project> {
4948 project. android. registerTransform(transform)
5049 }
5150
52- private void doAfterEvaluate () {
51+ private void doProjectsEvaluated () {
5352 embedConfigurations. each {
5453 if (project. fataar. transitive) {
5554 it. transitive = true
You can’t perform that action at this time.
0 commit comments