fix typo in resourceConfigurations array (#949)
fix typo from "jp" to "ja" (RFC 5646) and delete "," at the end of arrays
This commit is contained in:
parent
9f8aa88b8c
commit
a4fe2c7544
|
|
@ -62,7 +62,7 @@ android {
|
||||||
versionName = verName
|
versionName = verName
|
||||||
resourceConfigurations += arrayOf(
|
resourceConfigurations += arrayOf(
|
||||||
"en", "zh-rCN", "zh-rTW", "zh-rHK", "ru", "uk", "nl", "ko", "fr", "de",
|
"en", "zh-rCN", "zh-rTW", "zh-rHK", "ru", "uk", "nl", "ko", "fr", "de",
|
||||||
"it", "pt", "es", "jp",
|
"it", "pt", "es", "ja"
|
||||||
)
|
)
|
||||||
buildConfigField("long", "BUILD_TIME", Instant.now().epochSecond.toString())
|
buildConfigField("long", "BUILD_TIME", Instant.now().epochSecond.toString())
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue