Skip to content

Commit

Permalink
Add: Resources exlusions on builds
Browse files Browse the repository at this point in the history
  • Loading branch information
machiav3lli committed Jul 23, 2024
1 parent ee09e77 commit 3286e6d
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,18 @@ android {
includeInBundle = false
}
packaging {
resources.excludes.add("META-INF/LICENSE.md")
resources.excludes.add("META-INF/LICENSE-notice.md")
resources {
excludes += listOf(
"/DebugProbesKt.bin",
"/kotlin/**.kotlin_builtins",
"/kotlin/**.kotlin_metadata",
"/META-INF/**.kotlin_module",
"/META-INF/**.pro",
"/META-INF/**.version", // comment out to enable layout inspector
"/META-INF/LICENSE-notice.md",
"/META-INF/LICENSE.md"
)
}
}
}

Expand Down

0 comments on commit 3286e6d

Please sign in to comment.