From 9018d1c3fbb2beab13952e0ddb0b91fe62d07e50 Mon Sep 17 00:00:00 2001 From: Ashish Gupta Date: Fri, 13 Aug 2021 20:31:47 -0700 Subject: [PATCH] Updating version to 0.3.1 Summary: This release supports following features: - - Packing translations of multiple locales together in same `.pack` file - Fallback to a different locale if a translation is not available in desired locale - Locales with Regions, for example, `zh-TW` Reviewed By: Ider Differential Revision: D30319949 fbshipit-source-id: 978064f --- README.md | 2 +- library/gradle.properties | 2 +- sample/app/build.gradle | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 675c4fd..9d5b4a3 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Check out [our tech talk on StringPacks from DroiCon SF 2019](https://youtu.be/n dependencies { ... ... - implementation 'com.whatsapp.stringpacks:stringpacks:0.3.0' + implementation 'com.whatsapp.stringpacks:stringpacks:0.3.1' } ``` 6. To remove old `.pack` files from the device's internal storage, on every app upgrade, add [MyPackageReplacedReceiver.java](library/src/main/java/com/whatsapp/stringpacks/receiver/MyPackageReplacedReceiver.java) and [PackFileDeletionService.java](library/src/main/java/com/whatsapp/stringpacks/service/PackFileDeletionService.java) to your `AndroidManifest.xml` diff --git a/library/gradle.properties b/library/gradle.properties index 296c5b8..4f27ccb 100644 --- a/library/gradle.properties +++ b/library/gradle.properties @@ -9,7 +9,7 @@ android.useAndroidX=true ## Maven specific properties GROUP=com.whatsapp.stringpacks -LIBRARY_VERSION_NAME=0.3.0 +LIBRARY_VERSION_NAME=0.3.1 # Maven artifact information POM_ARTIFACT_ID=stringpacks diff --git a/sample/app/build.gradle b/sample/app/build.gradle index e08dbcd..8f17382 100644 --- a/sample/app/build.gradle +++ b/sample/app/build.gradle @@ -43,7 +43,7 @@ android { dependencies { // Uncomment it for testing when a new version is published to maven - // implementation 'com.whatsapp.stringpacks:stringpacks:0.3.0' + // implementation 'com.whatsapp.stringpacks:stringpacks:0.3.1' implementation project(':library') implementation 'androidx.appcompat:appcompat:1.2.0' testImplementation 'junit:junit:4.12'