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:
yoshi818 2021-08-19 22:40:58 +09:00 committed by GitHub
parent 9f8aa88b8c
commit a4fe2c7544
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ android {
versionName = verName
resourceConfigurations += arrayOf(
"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())
}