Skip to content
Merged
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ for the Linux x64 and Darwin x64 platforms.

## Unreleased Changes
### Changed
- Added option to build and publish as an Android module into h3-android
- Added option to build and publish as an Android module into h3-android. (#184)

### Fixed
- Removed duplicate native code resources from the built artifacts. (#186)

## [4.3.1] - 2025-08-27
### Changed
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jacocoTestReport {
jar {
dependsOn buildH3
from sourceSets.main.resources
duplicatesStrategy = DuplicatesStrategy.WARN
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}

// Android-specific configurations
Expand Down Expand Up @@ -154,7 +154,7 @@ task androidJar(type: Jar) {
include 'META-INF/**'
}

duplicatesStrategy = DuplicatesStrategy.WARN
duplicatesStrategy = DuplicatesStrategy.EXCLUDE

manifest {
attributes(
Expand Down
Loading