Relative Content

Tag Archive for androidgradle

Android build-logic Plugins with conditional configuration. How to pass data to custom convention plugin

The bounty expires in 6 days. Answers to this question are eligible for a +50 reputation bounty. RichardMillhouse wants to draw more attention to this question. My current Android application employs build-logic to define standard plugins the Room plugin resembles this:- class AndroidRoomConventionPlugin : Plugin<Project> { override fun apply(target: Project) { with(target) { pluginManager.apply(“androidx.room”) pluginManager.apply(“com.google.devtools.ksp”) […]