Skip to content

Commit

Permalink
Fix deprecation warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrtwhite committed Jan 14, 2025
1 parent 6e93e04 commit 74fef2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ allprojects {
target("**/*.kt", "**/*.kts")
ktlint(libs.versions.ktlint.get()).editorConfigOverride(ktlintRules)
endWithNewline()
indentWithSpaces()
leadingTabsToSpaces()
trimTrailingWhitespace()
}
}
Expand Down
3 changes: 1 addition & 2 deletions buildSrc/src/main/kotlin/coil3/projects.kt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ fun Project.androidApplication(
applicationId = name
versionCode = project.versionCode
versionName = project.versionName
resourceConfigurations += "en"
androidResources.localeFilters += "en"
vectorDrawables.useSupportLibrary = true
}
action()
Expand All @@ -95,7 +95,6 @@ fun Project.androidTest(
buildConfig = config
}
defaultConfig {
resourceConfigurations += "en"
vectorDrawables.useSupportLibrary = true
}
action()
Expand Down

0 comments on commit 74fef2c

Please sign in to comment.