Skip to content

Commit

Permalink
Adds explicit option not to shrink resources
Browse files Browse the repository at this point in the history
  • Loading branch information
garanj committed Apr 19, 2024
1 parent 5347972 commit 34b802d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions WatchFaceFormat/Complications/watchface/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ android {
release {
// TODO:Add your signingConfig here to build release builds
isMinifyEnabled = true
// Ensure shrink resources is false, to avoid potential for them
// being removed.
isShrinkResources = false
}
}
}
3 changes: 3 additions & 0 deletions WatchFaceFormat/SimpleAnalog/watchface/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ android {
release {
// TODO:Add your signingConfig here to build release builds
isMinifyEnabled = true
// Ensure shrink resources is false, to avoid potential for them
// being removed.
isShrinkResources = false
}
}
}
3 changes: 3 additions & 0 deletions WatchFaceFormat/SimpleDigital/watchface/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ android {
release {
// TODO:Add your signingConfig here to build release builds
isMinifyEnabled = true
// Ensure shrink resources is false, to avoid potential for them
// being removed.
isShrinkResources = false
}
}
}

0 comments on commit 34b802d

Please sign in to comment.