Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,16 @@ kotlin {
}
}

configurations.named("lintPublish") {
// kotlin-stdlib is provided by the lint host at runtime; exclude it so AGP
// sees exactly one JAR in lintPublish and does not fail with "Found more than one jar".
isTransitive = false
}

dependencies {
lintPublish(project(":featured-lint-rules"))
}

// Zips the release XCFramework for distribution via Swift Package Manager.
// Output: build/xcframeworks/FeaturedCore.xcframework.zip
val zipXCFramework by tasks.registering(Zip::class) {
Expand Down
5 changes: 5 additions & 0 deletions sample/android-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ android {
versionName = "1.0.0"
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}

buildFeatures {
compose = true
}
Expand Down
Loading