Skip to content

Commit

Permalink
feat: exclude drawio and images files from apk
Browse files Browse the repository at this point in the history
  • Loading branch information
tzebrowski committed Feb 9, 2025
1 parent c385085 commit 0e37a94
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ apply from: "$project.rootDir/spotless.gradle"
android {
compileSdk rootProject.ext.compileSdkVersion

packaging {
resources {
it.excludes += '**/design.drawio'
it.excludes += '**/highlevel.drawio'
it.excludes += '**/highlevel.jpg'
it.excludes += '**/component.png'
it.excludes += '**/model.png'
}
}

defaultConfig {
applicationId "org.obd.graphs.app"
minSdkVersion rootProject.ext.minSdkVersion
Expand Down

0 comments on commit 0e37a94

Please sign in to comment.