From ceae079a50c30b040623eb24afa962533110570d Mon Sep 17 00:00:00 2001 From: liuche Date: Fri, 31 Jul 2020 16:40:56 -0700 Subject: [PATCH] 79.0.2 pairing uplift (#13188) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * For #11664 — Fixup MissingResourceExceptions being thrown in exotic Locales (#13124) Our kotlin code is not catching the `MissingResourceException` in the `LeanplumMetricsService` which results in the app crashing when the locale isn't known by the device. Catches the exception, and falls back to the ISO 639 language code. This isn't a great solution, because ISO 639 isn't especially stable. In practice however this is almost certainly never going to be a problem because Leanplum isn't going to be supported in such exotic locales. In this case, using the ISO 639 language code allows the error message to be more informative. * Bump AC version to uplift pairing crash AC#7944 Co-authored-by: jhugman --- buildSrc/src/main/java/AndroidComponents.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/src/main/java/AndroidComponents.kt b/buildSrc/src/main/java/AndroidComponents.kt index 6545d7422..6a80d3422 100644 --- a/buildSrc/src/main/java/AndroidComponents.kt +++ b/buildSrc/src/main/java/AndroidComponents.kt @@ -3,5 +3,5 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ object AndroidComponents { - const val VERSION = "48.0.11" + const val VERSION = "48.0.12" }