From 73d381d08fd74fd3be982455a33ef768b0660b0e Mon Sep 17 00:00:00 2001 From: zeppi Date: Sat, 10 Dec 2022 17:03:03 -0500 Subject: [PATCH] compile -> implementation deps, print components --- .../service_library/build/templates/build.tmpl.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/p4a/pythonforandroid/bootstraps/service_library/build/templates/build.tmpl.gradle b/p4a/pythonforandroid/bootstraps/service_library/build/templates/build.tmpl.gradle index 6f4ca75..0fb4216 100644 --- a/p4a/pythonforandroid/bootstraps/service_library/build/templates/build.tmpl.gradle +++ b/p4a/pythonforandroid/bootstraps/service_library/build/templates/build.tmpl.gradle @@ -117,6 +117,7 @@ subprojects { //} afterEvaluate { + println("Components: " + components*.name) publishing { publications { release(MavenPublication) { @@ -165,7 +166,7 @@ dependencies { {%- endfor -%} {%- if args.depends -%} {%- for depend in args.depends %} - compile '{{ depend }}' + implementation '{{ depend }}' {%- endfor %} {%- endif %} }