Skip to content

Commit

Permalink
Release 1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
naulian-codigo committed Mar 21, 2024
1 parent 8d7a713 commit 56beacd
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion glow/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.cli.jvm.main

plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
Expand Down Expand Up @@ -45,8 +47,17 @@ dependencies {
implementation("com.naulian:anhance:2024.1.16")
}

/*kotlin {
sourceSets {
main {
kotlin.srcDir("src/main/kotlin")
resources.srcDir("src/main/res")
}
}
}*/

val sourceJar by tasks.creating(Jar::class) {
from(android.sourceSets.asMap["main"])
from("src/main/kotlin")
archiveClassifier = "source"
}

Expand Down

0 comments on commit 56beacd

Please sign in to comment.