Skip to content

Commit

Permalink
style: remove unnecessary Locale argument in build.gradle.kts
Browse files Browse the repository at this point in the history
  • Loading branch information
Arian04 committed Dec 18, 2024
1 parent 129bd2f commit 83cacd3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import java.util.Locale

plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
Expand Down Expand Up @@ -106,7 +104,7 @@ android {
for (thisDevice in testDevices) {
for (thisApiLevel in minSDK..targetSDK) {
// lowercase and remove spaces
val adjustedDeviceName = thisDevice.lowercase(Locale.US).replace(" ", "")
val adjustedDeviceName = thisDevice.lowercase().replace(" ", "")
val name = "${adjustedDeviceName}_${thisApiLevel}"
create(name) {
device = thisDevice
Expand Down

0 comments on commit 83cacd3

Please sign in to comment.