Skip to content

Commit a021c03

Browse files
update dependencies
1 parent ae3a8b7 commit a021c03

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ dependencies {
4949
testImplementation 'com.googlecode.junit-toolbox:junit-toolbox:2.4'
5050
testImplementation 'junit:junit:4.13.2'
5151
testImplementation 'org.mockito:mockito-core:5.20.0'
52-
testImplementation 'org.mockito.kotlin:mockito-kotlin:6.0.0'
52+
testImplementation 'org.mockito.kotlin:mockito-kotlin:6.1.0'
5353
testImplementation 'org.robolectric:robolectric:4.16'
5454
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
5555
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
5656
testImplementation 'org.slf4j:slf4j-simple:2.0.17'
57-
testImplementation 'org.assertj:assertj-core:3.27.5'
57+
testImplementation 'org.assertj:assertj-core:3.27.6'
5858
// Android Test Dependencies
5959
androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0'
6060
androidTestImplementation 'androidx.test.ext:junit-ktx:1.3.0'

app/build.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Build Properties
2-
#Thu Sep 04 07:01:34 EDT 2025
3-
version_build=30
2+
#Mon Oct 13 10:23:00 EDT 2025
3+
version_build=31
44
version_major=3
55
version_minor=2
66
version_patch=1

app/src/main/kotlin/com/vrem/util/LocaleUtils.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ private object SyncAvoid {
3232
val supportedLocales: List<Locale> =
3333
setOf(
3434
BULGARIAN,
35+
DUTCH,
3536
GREEK,
3637
Locale.SIMPLIFIED_CHINESE,
3738
Locale.TRADITIONAL_CHINESE,
@@ -52,6 +53,7 @@ private object SyncAvoid {
5253
}
5354

5455
val BULGARIAN: Locale = Locale.forLanguageTag("bg")
56+
val DUTCH: Locale = Locale.forLanguageTag("nl")
5557
val GREEK: Locale = Locale.forLanguageTag("el")
5658
val POLISH: Locale = Locale.forLanguageTag("pl")
5759
val PORTUGUESE_PORTUGAL: Locale = Locale.forLanguageTag("pt-PT")

app/src/test/kotlin/com/vrem/util/LocaleUtilsTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ class LocaleUtilsTest {
9494
val expected: Set<Locale> =
9595
setOf(
9696
BULGARIAN,
97+
DUTCH,
9798
GREEK,
9899
Locale.SIMPLIFIED_CHINESE,
99100
Locale.TRADITIONAL_CHINESE,

0 commit comments

Comments
 (0)