Skip to content

Commit

Permalink
update artifact path in build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
atavism committed Jan 23, 2025
1 parent d26b9f9 commit 8b6dff7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ android {
}
}

publishing {
singleVariant("release")
}

packagingOptions {
jniLibs {
useLegacyPackaging = true
Expand All @@ -74,7 +78,7 @@ publishing {
artifactId = 'lanternsdk-android'
version = '1.0.0'

artifact("$buildDir/outputs/aar/sdk-release.aar") {
artifact("${rootProject.buildDir}/sdk/outputs/aar/sdk-release.aar") {
classifier = ""
}

Expand Down

0 comments on commit 8b6dff7

Please sign in to comment.