Skip to content

Commit c3261b4

Browse files
committed
Ignore false positive lint warning.
1 parent 2f7c9b7 commit c3261b4

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

samples/compose-android/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ androidApplication(name = "sample.compose.android") {
1414
release {
1515
isDebuggable = false
1616
isMinifyEnabled = false
17+
// Necessary to support baseline profile generation.
18+
//noinspection NotShrinkingResources
1719
isShrinkResources = false
1820
signingConfig = signingConfigs["debug"]
1921
}

samples/view/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ androidApplication(name = "sample.view") {
99
release {
1010
isDebuggable = false
1111
isMinifyEnabled = false
12+
// Necessary to support baseline profile generation.
13+
//noinspection NotShrinkingResources
1214
isShrinkResources = false
1315
signingConfig = signingConfigs["debug"]
1416
}

0 commit comments

Comments
 (0)