Skip to content

Commit

Permalink
fix: plugin/provider stubs not included on jar file
Browse files Browse the repository at this point in the history
  • Loading branch information
rhenwinch committed Feb 8, 2024
1 parent e466788 commit 79cda99
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,11 @@ dependencies {

tasks.register("androidSourcesJar", Jar::class) {
archiveClassifier.set("sources")
from(android.sourceSets.getByName("main").java.srcDirs) // Full Sources
from(android.sourceSets.getByName("main").java.srcDirs)
from(android.sourceSets.getByName("main").kotlin.srcDirs())
}

// For GradLew Plugin
// For the plugins-system
tasks.register("makeJar", Copy::class) {
from("build/intermediates/compile_app_classes_jar/prerelease")
into("build")
Expand Down

0 comments on commit 79cda99

Please sign in to comment.