diff --git a/android/gradle.properties b/android/gradle.properties index ec128526a9..9495b9ad9c 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -8,4 +8,4 @@ org.gradle.jvmargs=-Xmx1024m -Xms256m android.useAndroidX=true android.native.buildOutput=verbose # Autogenerated by tools/unix/generate_localizations.sh -supportedLocalizations=ar,be,bg,ca,cs,da,de,el,en,en_GB,es,es_MX,et,eu,fa,fi,fr,fr_CA,he,hi,hu,id,in,it,ja,ko,mr,nb,nl,pl,pt,pt_BR,ro,ru,sk,sv,sw,th,tr,uk,vi,zh,zh_HK,zh_MO,zh_TW +supportedLocalizations=ar,be,bg,ca,cs,da,de,el,en,en_GB,es,es_MX,et,eu,fa,fi,fr,fr_CA,iw,hi,hu,id,in,it,ja,ko,mr,nb,nl,pl,pt,pt_BR,ro,ru,sk,sv,sw,th,tr,uk,vi,zh,zh_HK,zh_MO,zh_TW diff --git a/android/res/xml/locales_config.xml b/android/res/xml/locales_config.xml index 07217424fe..111a6605d4 100644 --- a/android/res/xml/locales_config.xml +++ b/android/res/xml/locales_config.xml @@ -18,7 +18,7 @@ - + diff --git a/tools/unix/generate_localizations.sh b/tools/unix/generate_localizations.sh index ba99380433..308833753e 100755 --- a/tools/unix/generate_localizations.sh +++ b/tools/unix/generate_localizations.sh @@ -73,6 +73,7 @@ SUPPORTED_LOCALIZATIONS="supportedLocalizations="$(sed -nEe "s/ +([a-zA-Z]{2}(-[ # Chinese locales should correspond to Android codes. SUPPORTED_LOCALIZATIONS=${SUPPORTED_LOCALIZATIONS/zh_Hans/zh} SUPPORTED_LOCALIZATIONS=${SUPPORTED_LOCALIZATIONS/zh_Hant/zh_HK,zh_MO,zh_TW} +SUPPORTED_LOCALIZATIONS=${SUPPORTED_LOCALIZATIONS/he/iw} GRADLE_PROPERTIES="$OMIM_PATH/android/gradle.properties" if [ "$SUPPORTED_LOCALIZATIONS" != "$(grep supportedLocalizations "$GRADLE_PROPERTIES")" ]; then sed -i .bak 's/supportedLocalizations.*/'"$SUPPORTED_LOCALIZATIONS"'/' "$GRADLE_PROPERTIES"