Skip to content

Commit

Permalink
replace resourceConfigurations with localeFilters
Browse files Browse the repository at this point in the history
resourceConfigurations is deprecated.
  • Loading branch information
thestinger committed Jan 15, 2025
1 parent b7a850e commit 349522c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ android {
targetSdk = 35
versionCode = 78
versionName = versionCode.toString()
resourceConfigurations.add("en")
}

buildTypes {
Expand Down Expand Up @@ -85,6 +84,10 @@ android {
buildConfig = true
}

androidResources {
localeFilters += listOf("en")
}

lint {
disable += setOf("LintError")
}
Expand Down

0 comments on commit 349522c

Please sign in to comment.