Skip to content

Commit

Permalink
the languages are now sorted during build time
Browse files Browse the repository at this point in the history
  • Loading branch information
sspanak committed Mar 1, 2025
1 parent 3ac0d8e commit ef32d5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build-definitions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ext.mergeDefinitions = { String definitionsInputDir, String definitionsOutputPat
merged.delete()

boolean isFirst = true
fileTree(dir: definitionsInputDir).getFiles().each { file ->
fileTree(dir: definitionsInputDir).getFiles().sort().each { file ->
if (!file.isFile() || !file.name.endsWith(".yml")) {
return
}
Expand All @@ -16,7 +16,7 @@ ext.mergeDefinitions = { String definitionsInputDir, String definitionsOutputPat

merged << file.text
.replaceAll("\\s*#[^\n]+", "")
.replaceAll("^[ ]+\n", "")
.replaceAll("^ +\n", "")
.trim()
}
}
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:tools="http://schemas.android.com/tools"
android:versionCode="952"
android:versionCode="953"
android:versionName="46.0"
xmlns:android="http://schemas.android.com/apk/res/android">

Expand Down

0 comments on commit ef32d5a

Please sign in to comment.