Skip to content

Commit a612a5d

Browse files
authored
feat: Exclude drawio and image files from apk
1 parent c385085 commit a612a5d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

app/build.gradle

+10
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ apply from: "$project.rootDir/spotless.gradle"
1111
android {
1212
compileSdk rootProject.ext.compileSdkVersion
1313

14+
packaging {
15+
resources {
16+
it.excludes += '**/design.drawio'
17+
it.excludes += '**/highlevel.drawio'
18+
it.excludes += '**/highlevel.jpg'
19+
it.excludes += '**/component.png'
20+
it.excludes += '**/model.png'
21+
}
22+
}
23+
1424
defaultConfig {
1525
applicationId "org.obd.graphs.app"
1626
minSdkVersion rootProject.ext.minSdkVersion

0 commit comments

Comments
 (0)