Skip to content

Commit 3a2c75c

Browse files
committed
chore(pluto): build failing due to compileSdkVersion not present in PlutoGradlePlugin. adding compileSdkVersion to plugin
1 parent 9fac531 commit 3a2c75c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

buildSrc/src/main/kotlin/PlutoGradlePlugin.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class PlutoGradlePlugin : Plugin<Project> {
2323
val verGitSHA = version["gitSha"] as String
2424
target.android().apply {
2525
compileSdk = ProjectConfig.compileSdk
26+
compileSdkVersion = ProjectConfig.compileSdk.toString()
2627
buildToolsVersion = ProjectConfig.buildTools
2728
buildFeatures {
2829
buildConfig = true
@@ -50,6 +51,7 @@ class PlutoGradlePlugin : Plugin<Project> {
5051
lint {
5152
abortOnError = false
5253
targetSdk = ProjectConfig.targetSdk
54+
compileSdkVersion = ProjectConfig.compileSdk.toString()
5355
}
5456
}
5557
}

0 commit comments

Comments
 (0)