From 552293ad55cd6fe247c05a9dd6f4e60b0bbd8d62 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Fri, 12 May 2023 00:41:26 +0300 Subject: [PATCH 01/19] Use iOS snapshot --- example/ios/Podfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/example/ios/Podfile b/example/ios/Podfile index 34e2dd968..c8e2fb6b8 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -30,6 +30,8 @@ target 'Runner' do use_frameworks! use_modular_headers! + pod 'Instabug', :podspec => 'https://ios-releases.instabug.com/custom/feature-add-more-languages/11.10.4/Instabug.podspec' + flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) end From 281c5e890e14b1074b1bd6decfd789b242af1426 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Fri, 12 May 2023 00:42:27 +0300 Subject: [PATCH 02/19] Use Android snapshot --- android/build.gradle | 2 +- example/android/build.gradle | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 38598f06b..d4f03c248 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -41,7 +41,7 @@ android { } dependencies { - api 'com.instabug.library:instabug:13.2.0' + api 'com.instabug.library:instabug:11.11.0.4909006-SNAPSHOT' testImplementation 'junit:junit:4.13.2' testImplementation "org.mockito:mockito-inline:3.12.1" diff --git a/example/android/build.gradle b/example/android/build.gradle index 713d7f6e6..838376afd 100644 --- a/example/android/build.gradle +++ b/example/android/build.gradle @@ -15,6 +15,10 @@ allprojects { repositories { google() mavenCentral() + + maven { + url 'https://oss.sonatype.org/content/repositories/snapshots' + } } } From b53c128f067df57154918ecd879a6762ca877d1b Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Fri, 12 May 2023 00:43:21 +0300 Subject: [PATCH 03/19] Add new locales --- .../java/com/instabug/flutter/util/ArgsRegistry.java | 9 +++++++++ ios/Classes/Util/ArgsRegistry.m | 9 +++++++++ lib/src/modules/instabug.dart | 9 +++++++++ 3 files changed, 27 insertions(+) diff --git a/android/src/main/java/com/instabug/flutter/util/ArgsRegistry.java b/android/src/main/java/com/instabug/flutter/util/ArgsRegistry.java index 222a72836..bcdb2019f 100644 --- a/android/src/main/java/com/instabug/flutter/util/ArgsRegistry.java +++ b/android/src/main/java/com/instabug/flutter/util/ArgsRegistry.java @@ -113,30 +113,39 @@ public T get(Object key) { public static final ArgsMap locales = new ArgsMap() {{ put("IBGLocale.arabic", InstabugLocale.ARABIC); put("IBGLocale.azerbaijani", InstabugLocale.AZERBAIJANI); + put("IBGLocale.bulgarian", InstabugLocale.BULGARIAN), put("IBGLocale.chineseSimplified", InstabugLocale.SIMPLIFIED_CHINESE); put("IBGLocale.chineseTraditional", InstabugLocale.TRADITIONAL_CHINESE); + put("IBGLocale.croatian", InstabugLocale.CROATIAN), put("IBGLocale.czech", InstabugLocale.CZECH); put("IBGLocale.danish", InstabugLocale.DANISH); put("IBGLocale.dutch", InstabugLocale.NETHERLANDS); put("IBGLocale.english", InstabugLocale.ENGLISH); + put("IBGLocale.estonian", InstabugLocale.ESTONIAN), put("IBGLocale.finnish", InstabugLocale.FINNISH); put("IBGLocale.french", InstabugLocale.FRENCH); put("IBGLocale.german", InstabugLocale.GERMAN); + put("IBGLocale.greek", InstabugLocale.GREEK), put("IBGLocale.hungarian", InstabugLocale.HUNGARIAN); put("IBGLocale.indonesian", InstabugLocale.INDONESIAN); put("IBGLocale.italian", InstabugLocale.ITALIAN); put("IBGLocale.japanese", InstabugLocale.JAPANESE); put("IBGLocale.korean", InstabugLocale.KOREAN); + put("IBGLocale.latvian", InstabugLocale.LATVIAN), + put("IBGLocale.lithuanian", InstabugLocale.LITHUANIAN), put("IBGLocale.norwegian", InstabugLocale.NORWEGIAN); put("IBGLocale.polish", InstabugLocale.POLISH); put("IBGLocale.portugueseBrazil", InstabugLocale.PORTUGUESE_BRAZIL); put("IBGLocale.portuguesePortugal", InstabugLocale.PORTUGUESE_PORTUGAL); put("IBGLocale.romanian", InstabugLocale.ROMANIAN); put("IBGLocale.russian", InstabugLocale.RUSSIAN); + put("IBGLocale.serbian", InstabugLocale.SERBIAN), put("IBGLocale.slovak", InstabugLocale.SLOVAK); + put("IBGLocale.slovenian", InstabugLocale.SLOVENIAN), put("IBGLocale.spanish", InstabugLocale.SPANISH); put("IBGLocale.swedish", InstabugLocale.SWEDISH); put("IBGLocale.turkish", InstabugLocale.TURKISH); + put("IBGLocale.ukrainian", InstabugLocale.UKRAINIAN), }}; public static final ArgsMap placeholders = new ArgsMap() {{ diff --git a/ios/Classes/Util/ArgsRegistry.m b/ios/Classes/Util/ArgsRegistry.m index b8cdaa21a..4ea3cf1ec 100644 --- a/ios/Classes/Util/ArgsRegistry.m +++ b/ios/Classes/Util/ArgsRegistry.m @@ -116,29 +116,38 @@ + (ArgsDictionary *)locales { return @{ @"IBGLocale.arabic" : @(IBGLocaleArabic), @"IBGLocale.azerbaijani" : @(IBGLocaleAzerbaijani), + @"IBGLocale.bulgarian" : @(IBGLocaleBulgarian) @"IBGLocale.chineseSimplified" : @(IBGLocaleChineseSimplified), @"IBGLocale.chineseTraditional" : @(IBGLocaleChineseTraditional), + @"IBGLocale.croatian" : @(IBGLocaleCroatian) @"IBGLocale.czech" : @(IBGLocaleCzech), @"IBGLocale.danish" : @(IBGLocaleDanish), @"IBGLocale.dutch" : @(IBGLocaleDutch), @"IBGLocale.english" : @(IBGLocaleEnglish), + @"IBGLocale.estonian" : @(IBGLocaleEstonian) @"IBGLocale.finnish" : @(IBGLocaleFinnish), @"IBGLocale.french" : @(IBGLocaleFrench), @"IBGLocale.german" : @(IBGLocaleGerman), + @"IBGLocale.greek" : @(IBGLocaleGreek) @"IBGLocale.hungarian" : @(IBGLocaleHungarian), @"IBGLocale.italian" : @(IBGLocaleItalian), @"IBGLocale.japanese" : @(IBGLocaleJapanese), @"IBGLocale.korean" : @(IBGLocaleKorean), + @"IBGLocale.latvian" : @(IBGLocaleLatvian) + @"IBGLocale.lithuanian" : @(IBGLocaleLithuanian) @"IBGLocale.norwegian" : @(IBGLocaleNorwegian), @"IBGLocale.polish" : @(IBGLocalePolish), @"IBGLocale.portugueseBrazil" : @(IBGLocalePortugueseBrazil), @"IBGLocale.portuguesePortugal" : @(IBGLocalePortuguese), @"IBGLocale.romanian" : @(IBGLocaleRomanian), @"IBGLocale.russian" : @(IBGLocaleRussian), + @"IBGLocale.serbian" : @(IBGLocaleSerbian) @"IBGLocale.slovak" : @(IBGLocaleSlovak), + @"IBGLocale.slovenian" : @(IBGLocaleSlovenian) @"IBGLocale.spanish" : @(IBGLocaleSpanish), @"IBGLocale.swedish" : @(IBGLocaleSwedish), @"IBGLocale.turkish" : @(IBGLocaleTurkish), + @"IBGLocale.ukrainian" : @(IBGLocaleUkranian), }; } diff --git a/lib/src/modules/instabug.dart b/lib/src/modules/instabug.dart index b0628f258..4a740f8ee 100644 --- a/lib/src/modules/instabug.dart +++ b/lib/src/modules/instabug.dart @@ -32,30 +32,39 @@ enum WelcomeMessageMode { live, beta, disabled } enum IBGLocale { arabic, azerbaijani, + bulgarian, chineseSimplified, chineseTraditional, + croatian, czech, danish, dutch, english, + estonian, finnish, french, german, + greek, hungarian, indonesian, italian, japanese, korean, + latvian, + lithuanian, norwegian, polish, portugueseBrazil, portuguesePortugal, romanian, russian, + serbian, slovak, + slovenian, spanish, swedish, turkish, + ukrainian, } enum LogLevel { From ef76aa75c23e86a6fd043fae9ece514d26ea5403 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Fri, 12 May 2023 01:02:49 +0300 Subject: [PATCH 04/19] Add missing commas --- ios/Classes/Util/ArgsRegistry.m | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ios/Classes/Util/ArgsRegistry.m b/ios/Classes/Util/ArgsRegistry.m index 4ea3cf1ec..90bca5e2d 100644 --- a/ios/Classes/Util/ArgsRegistry.m +++ b/ios/Classes/Util/ArgsRegistry.m @@ -116,34 +116,34 @@ + (ArgsDictionary *)locales { return @{ @"IBGLocale.arabic" : @(IBGLocaleArabic), @"IBGLocale.azerbaijani" : @(IBGLocaleAzerbaijani), - @"IBGLocale.bulgarian" : @(IBGLocaleBulgarian) + @"IBGLocale.bulgarian" : @(IBGLocaleBulgarian), @"IBGLocale.chineseSimplified" : @(IBGLocaleChineseSimplified), @"IBGLocale.chineseTraditional" : @(IBGLocaleChineseTraditional), - @"IBGLocale.croatian" : @(IBGLocaleCroatian) + @"IBGLocale.croatian" : @(IBGLocaleCroatian), @"IBGLocale.czech" : @(IBGLocaleCzech), @"IBGLocale.danish" : @(IBGLocaleDanish), @"IBGLocale.dutch" : @(IBGLocaleDutch), @"IBGLocale.english" : @(IBGLocaleEnglish), - @"IBGLocale.estonian" : @(IBGLocaleEstonian) + @"IBGLocale.estonian" : @(IBGLocaleEstonian), @"IBGLocale.finnish" : @(IBGLocaleFinnish), @"IBGLocale.french" : @(IBGLocaleFrench), @"IBGLocale.german" : @(IBGLocaleGerman), - @"IBGLocale.greek" : @(IBGLocaleGreek) + @"IBGLocale.greek" : @(IBGLocaleGreek), @"IBGLocale.hungarian" : @(IBGLocaleHungarian), @"IBGLocale.italian" : @(IBGLocaleItalian), @"IBGLocale.japanese" : @(IBGLocaleJapanese), @"IBGLocale.korean" : @(IBGLocaleKorean), - @"IBGLocale.latvian" : @(IBGLocaleLatvian) - @"IBGLocale.lithuanian" : @(IBGLocaleLithuanian) + @"IBGLocale.latvian" : @(IBGLocaleLatvian), + @"IBGLocale.lithuanian" : @(IBGLocaleLithuanian), @"IBGLocale.norwegian" : @(IBGLocaleNorwegian), @"IBGLocale.polish" : @(IBGLocalePolish), @"IBGLocale.portugueseBrazil" : @(IBGLocalePortugueseBrazil), @"IBGLocale.portuguesePortugal" : @(IBGLocalePortuguese), @"IBGLocale.romanian" : @(IBGLocaleRomanian), @"IBGLocale.russian" : @(IBGLocaleRussian), - @"IBGLocale.serbian" : @(IBGLocaleSerbian) + @"IBGLocale.serbian" : @(IBGLocaleSerbian), @"IBGLocale.slovak" : @(IBGLocaleSlovak), - @"IBGLocale.slovenian" : @(IBGLocaleSlovenian) + @"IBGLocale.slovenian" : @(IBGLocaleSlovenian), @"IBGLocale.spanish" : @(IBGLocaleSpanish), @"IBGLocale.swedish" : @(IBGLocaleSwedish), @"IBGLocale.turkish" : @(IBGLocaleTurkish), From 80a8594a60904f29df1dd49c2ce938636b59847e Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Mon, 15 May 2023 10:29:41 +0300 Subject: [PATCH 05/19] Update Changelog --- CHANGELOG.md | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e77bfa912..ec271c9e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -123,12 +123,19 @@ ### Added -- Add network logs obfuscation support using the new `NetworkLogger.obfuscateLog` - API ([#380](https://github.com/Instabug/Instabug-Flutter/pull/380)). -- Add network logs omission support using the new `NetworkLogger.omitLog` - API ([#382](https://github.com/Instabug/Instabug-Flutter/pull/382)). -- Add the new repro steps configuration - API `Instabug.setReproStepsConfig` ([#388](https://github.com/Instabug/Instabug-Flutter/pull/388)). +- Add network logs obfuscation support using the new `NetworkLogger.obfuscateLog` API ([#380](https://github.com/Instabug/Instabug-Flutter/pull/380)). +- Add network logs omission support using the new `NetworkLogger.omitLog` API ([#382](https://github.com/Instabug/Instabug-Flutter/pull/382)). +- Add the new repro steps configuration API `Instabug.setReproStepsConfig` ([#388](https://github.com/Instabug/Instabug-Flutter/pull/388)). +- Add support for more locales ([#363](https://github.com/Instabug/Instabug-Flutter/pull/363)): + 1. Bulgarian + 2. Croatian + 3. Estonian + 4. Greek + 5. Latvian + 6. Lithuanian + 7. Serbian + 8. Slovenian + 9. Ukrainian ### Changed From d4913a046b6ee182818d503d0e552728fcc9ad3c Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Wed, 17 May 2023 18:13:58 +0300 Subject: [PATCH 06/19] Fix syntax error in `ArgsRegistry` --- .../instabug/flutter/util/ArgsRegistry.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/android/src/main/java/com/instabug/flutter/util/ArgsRegistry.java b/android/src/main/java/com/instabug/flutter/util/ArgsRegistry.java index bcdb2019f..3b2677470 100644 --- a/android/src/main/java/com/instabug/flutter/util/ArgsRegistry.java +++ b/android/src/main/java/com/instabug/flutter/util/ArgsRegistry.java @@ -113,39 +113,39 @@ public T get(Object key) { public static final ArgsMap locales = new ArgsMap() {{ put("IBGLocale.arabic", InstabugLocale.ARABIC); put("IBGLocale.azerbaijani", InstabugLocale.AZERBAIJANI); - put("IBGLocale.bulgarian", InstabugLocale.BULGARIAN), + put("IBGLocale.bulgarian", InstabugLocale.BULGARIAN); put("IBGLocale.chineseSimplified", InstabugLocale.SIMPLIFIED_CHINESE); put("IBGLocale.chineseTraditional", InstabugLocale.TRADITIONAL_CHINESE); - put("IBGLocale.croatian", InstabugLocale.CROATIAN), + put("IBGLocale.croatian", InstabugLocale.CROATIAN); put("IBGLocale.czech", InstabugLocale.CZECH); put("IBGLocale.danish", InstabugLocale.DANISH); put("IBGLocale.dutch", InstabugLocale.NETHERLANDS); put("IBGLocale.english", InstabugLocale.ENGLISH); - put("IBGLocale.estonian", InstabugLocale.ESTONIAN), + put("IBGLocale.estonian", InstabugLocale.ESTONIAN); put("IBGLocale.finnish", InstabugLocale.FINNISH); put("IBGLocale.french", InstabugLocale.FRENCH); put("IBGLocale.german", InstabugLocale.GERMAN); - put("IBGLocale.greek", InstabugLocale.GREEK), + put("IBGLocale.greek", InstabugLocale.GREEK); put("IBGLocale.hungarian", InstabugLocale.HUNGARIAN); put("IBGLocale.indonesian", InstabugLocale.INDONESIAN); put("IBGLocale.italian", InstabugLocale.ITALIAN); put("IBGLocale.japanese", InstabugLocale.JAPANESE); put("IBGLocale.korean", InstabugLocale.KOREAN); - put("IBGLocale.latvian", InstabugLocale.LATVIAN), - put("IBGLocale.lithuanian", InstabugLocale.LITHUANIAN), + put("IBGLocale.latvian", InstabugLocale.LATVIAN); + put("IBGLocale.lithuanian", InstabugLocale.LITHUANIAN); put("IBGLocale.norwegian", InstabugLocale.NORWEGIAN); put("IBGLocale.polish", InstabugLocale.POLISH); put("IBGLocale.portugueseBrazil", InstabugLocale.PORTUGUESE_BRAZIL); put("IBGLocale.portuguesePortugal", InstabugLocale.PORTUGUESE_PORTUGAL); put("IBGLocale.romanian", InstabugLocale.ROMANIAN); put("IBGLocale.russian", InstabugLocale.RUSSIAN); - put("IBGLocale.serbian", InstabugLocale.SERBIAN), + put("IBGLocale.serbian", InstabugLocale.SERBIAN); put("IBGLocale.slovak", InstabugLocale.SLOVAK); - put("IBGLocale.slovenian", InstabugLocale.SLOVENIAN), + put("IBGLocale.slovenian", InstabugLocale.SLOVENIAN); put("IBGLocale.spanish", InstabugLocale.SPANISH); put("IBGLocale.swedish", InstabugLocale.SWEDISH); put("IBGLocale.turkish", InstabugLocale.TURKISH); - put("IBGLocale.ukrainian", InstabugLocale.UKRAINIAN), + put("IBGLocale.ukrainian", InstabugLocale.UKRAINIAN); }}; public static final ArgsMap placeholders = new ArgsMap() {{ From 3f16c0487dfa4d4b4b8c3c025edec836777a1990 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Wed, 17 May 2023 18:30:18 +0300 Subject: [PATCH 07/19] Move custom snapshot to the package itself --- android/build.gradle | 4 ++++ example/android/build.gradle | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index d4f03c248..e2329d37b 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -16,6 +16,10 @@ rootProject.allprojects { repositories { google() mavenCentral() + + maven { + url 'https://oss.sonatype.org/content/repositories/snapshots' + } } } diff --git a/example/android/build.gradle b/example/android/build.gradle index 838376afd..713d7f6e6 100644 --- a/example/android/build.gradle +++ b/example/android/build.gradle @@ -15,10 +15,6 @@ allprojects { repositories { google() mavenCentral() - - maven { - url 'https://oss.sonatype.org/content/repositories/snapshots' - } } } From b5a2c638e14b98c1ba91c411f7f98f38c27b2627 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Thu, 18 May 2023 19:25:46 +0300 Subject: [PATCH 08/19] Update iOS snapshot --- example/ios/Podfile | 2 +- ios/Classes/Util/ArgsRegistry.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example/ios/Podfile b/example/ios/Podfile index c8e2fb6b8..6a9d39359 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -30,7 +30,7 @@ target 'Runner' do use_frameworks! use_modular_headers! - pod 'Instabug', :podspec => 'https://ios-releases.instabug.com/custom/feature-add-more-languages/11.10.4/Instabug.podspec' + pod 'Instabug', :podspec => 'https://ios-releases.instabug.com/custom/feature-add-more-languages/11.10.5/Instabug.podspec' flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) end diff --git a/ios/Classes/Util/ArgsRegistry.m b/ios/Classes/Util/ArgsRegistry.m index 90bca5e2d..b9d134752 100644 --- a/ios/Classes/Util/ArgsRegistry.m +++ b/ios/Classes/Util/ArgsRegistry.m @@ -147,7 +147,7 @@ + (ArgsDictionary *)locales { @"IBGLocale.spanish" : @(IBGLocaleSpanish), @"IBGLocale.swedish" : @(IBGLocaleSwedish), @"IBGLocale.turkish" : @(IBGLocaleTurkish), - @"IBGLocale.ukrainian" : @(IBGLocaleUkranian), + @"IBGLocale.ukrainian" : @(IBGLocaleUkrainian), }; } From 040719f0eeeda0f0fbb7ad98a1bdb4bc28e28e4c Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Thu, 13 Jul 2023 17:03:04 +0300 Subject: [PATCH 09/19] Update iOS snapshot --- example/ios/Podfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/ios/Podfile b/example/ios/Podfile index 6a9d39359..5464bfa3b 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -30,7 +30,7 @@ target 'Runner' do use_frameworks! use_modular_headers! - pod 'Instabug', :podspec => 'https://ios-releases.instabug.com/custom/feature-add-more-languages/11.10.5/Instabug.podspec' + pod 'Instabug', :podspec => 'https://ios-releases.instabug.com/custom/feature-add-more-languages/Instabug.podspec' flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) end From 1752e2b2a9dbddeffa15768948a45ff688886c30 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Thu, 13 Jul 2023 17:05:20 +0300 Subject: [PATCH 10/19] Use Android snapshot --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index e2329d37b..001c3b1ce 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -45,7 +45,7 @@ android { } dependencies { - api 'com.instabug.library:instabug:11.11.0.4909006-SNAPSHOT' + api 'com.instabug.library:instabug:11.13.0.4953057-SNAPSHOT' testImplementation 'junit:junit:4.13.2' testImplementation "org.mockito:mockito-inline:3.12.1" From 0512ce5427360adbbc8f75b16a2aed0a7a16da4c Mon Sep 17 00:00:00 2001 From: AbdElHamid Nasser Date: Wed, 20 Sep 2023 13:32:48 +0300 Subject: [PATCH 11/19] chore: update android snapshot to 11.14.0 --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 001c3b1ce..66f684aac 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -45,7 +45,7 @@ android { } dependencies { - api 'com.instabug.library:instabug:11.13.0.4953057-SNAPSHOT' + api 'com.instabug.library:instabug:v11.14.0.1-bdrthermea' testImplementation 'junit:junit:4.13.2' testImplementation "org.mockito:mockito-inline:3.12.1" From f87e0388c1a4cffff1bf2efc82d9734f03a4f30c Mon Sep 17 00:00:00 2001 From: AbdElHamid Nasser Date: Wed, 20 Sep 2023 13:33:13 +0300 Subject: [PATCH 12/19] chore: update ios snapshot to 11.14.0 --- example/ios/Podfile | 2 +- example/ios/Podfile.lock | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/example/ios/Podfile b/example/ios/Podfile index 5464bfa3b..8ccb8842e 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -30,7 +30,7 @@ target 'Runner' do use_frameworks! use_modular_headers! - pod 'Instabug', :podspec => 'https://ios-releases.instabug.com/custom/feature-add-more-languages/Instabug.podspec' + pod 'Instabug', :podspec => 'https://ios-releases.instabug.com/custom/bdr-therma-14.4/11.14.0/Instabug.podspec' flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) end diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index a7bcc3007..4b73c5852 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -8,17 +8,19 @@ PODS: DEPENDENCIES: - Flutter (from `Flutter`) + - Instabug (from `https://ios-releases.instabug.com/custom/bdr-therma-14.4/11.14.0/Instabug.podspec`) - instabug_flutter (from `.symlinks/plugins/instabug_flutter/ios`) - OCMock (= 3.6) SPEC REPOS: trunk: - - Instabug - OCMock EXTERNAL SOURCES: Flutter: :path: Flutter + Instabug: + :podspec: https://ios-releases.instabug.com/custom/bdr-therma-14.4/11.14.0/Instabug.podspec instabug_flutter: :path: ".symlinks/plugins/instabug_flutter/ios" @@ -30,4 +32,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: f809f4241ff3da61349081a141c44763598f2fbb -COCOAPODS: 1.13.0 +COCOAPODS: 1.12.1 From c85cbf36aa98b2603d0c7dc32f89916780707ec6 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Wed, 27 Sep 2023 09:36:33 +0300 Subject: [PATCH 13/19] fix(android): use correct snapshot --- android/build.gradle | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 66f684aac..3a2088b4b 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -16,10 +16,6 @@ rootProject.allprojects { repositories { google() mavenCentral() - - maven { - url 'https://oss.sonatype.org/content/repositories/snapshots' - } } } @@ -45,7 +41,7 @@ android { } dependencies { - api 'com.instabug.library:instabug:v11.14.0.1-bdrthermea' + api 'com.instabug.library-bdrthermea:instabug:11.14.0.2' testImplementation 'junit:junit:4.13.2' testImplementation "org.mockito:mockito-inline:3.12.1" From a052b03a0334c7ca361eeeff4af8d81c1138c11d Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Tue, 3 Oct 2023 20:27:17 +0300 Subject: [PATCH 14/19] chore(android): bump sdk to snapshot v12.1.0 --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 3a2088b4b..68df95e62 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -41,7 +41,7 @@ android { } dependencies { - api 'com.instabug.library-bdrthermea:instabug:11.14.0.2' + api 'com.instabug.library-bdrthermea:instabug:12.1.0' testImplementation 'junit:junit:4.13.2' testImplementation "org.mockito:mockito-inline:3.12.1" From c9820b37c820af75e64d38eab898572cdc0565b6 Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Tue, 3 Oct 2023 20:28:12 +0300 Subject: [PATCH 15/19] chore(ios): bump sdk to snapshot v12.1.0 --- example/ios/Podfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/ios/Podfile b/example/ios/Podfile index 8ccb8842e..2c0dbcb9b 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -30,7 +30,7 @@ target 'Runner' do use_frameworks! use_modular_headers! - pod 'Instabug', :podspec => 'https://ios-releases.instabug.com/custom/bdr-therma-14.4/11.14.0/Instabug.podspec' + pod 'Instabug', :podspec => 'https://ios-releases.instabug.com/custom/feature-add-more-languages/12.1.0/Instabug.podspec' flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) end From 6e470a38f6baaed64ed177a44ee643087ce44a0f Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Thu, 27 Jun 2024 11:56:01 +0300 Subject: [PATCH 16/19] chore(ios): bump sdk to 13.1.1 --- example/ios/Podfile | 2 +- example/ios/Podfile.lock | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/example/ios/Podfile b/example/ios/Podfile index 2c0dbcb9b..e0112d082 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -30,7 +30,7 @@ target 'Runner' do use_frameworks! use_modular_headers! - pod 'Instabug', :podspec => 'https://ios-releases.instabug.com/custom/feature-add-more-languages/12.1.0/Instabug.podspec' + pod 'Instabug', :podspec => 'https://ios-releases.instabug.com/custom/feature-add-more-languages/13.1.1/Instabug.podspec' flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) end diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 4b73c5852..4c99a2292 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1,14 +1,14 @@ PODS: - Flutter (1.0.0) - - Instabug (13.2.0) - - instabug_flutter (13.2.0): - - Flutter - - Instabug (= 13.2.0) + - Instabug (13.1.1) + - instabug_flutter (13.1.1): + - Flutters + - Instabug - OCMock (3.6) DEPENDENCIES: - Flutter (from `Flutter`) - - Instabug (from `https://ios-releases.instabug.com/custom/bdr-therma-14.4/11.14.0/Instabug.podspec`) + - Instabug (from `https://ios-releases.instabug.com/custom/feature-add-more-languages/13.1.1/Instabug.podspec`) - instabug_flutter (from `.symlinks/plugins/instabug_flutter/ios`) - OCMock (= 3.6) @@ -20,16 +20,16 @@ EXTERNAL SOURCES: Flutter: :path: Flutter Instabug: - :podspec: https://ios-releases.instabug.com/custom/bdr-therma-14.4/11.14.0/Instabug.podspec + :podspec: https://ios-releases.instabug.com/custom/feature-add-more-languages/13.1.1/Instabug.podspec instabug_flutter: :path: ".symlinks/plugins/instabug_flutter/ios" SPEC CHECKSUMS: Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 - Instabug: aee76898789d17c55b36c7fbaa697e443effe3b1 - instabug_flutter: 8fe63955937c73205d4e71667aea9d56ed8d921b + Instabug: 316a1091d57fff5548e83450508c5cddbe581723 + instabug_flutter: 07b8bef83734f0b6018aea2fce58c8848a49eefc OCMock: 5ea90566be239f179ba766fd9fbae5885040b992 -PODFILE CHECKSUM: f809f4241ff3da61349081a141c44763598f2fbb +PODFILE CHECKSUM: f7ab5b22f27ab4d7319acedff84b2670fa5ea930 -COCOAPODS: 1.12.1 +COCOAPODS: 1.14.3 From e20d4f6bb98f8ddcaacca39cefafe0f64121031d Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Thu, 27 Jun 2024 12:18:53 +0300 Subject: [PATCH 17/19] chore(android): bump sdk to 13.1.2.3 --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 68df95e62..1bf4f3384 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -41,7 +41,7 @@ android { } dependencies { - api 'com.instabug.library-bdrthermea:instabug:12.1.0' + api 'com.instabug.library-bdrthermea:instabug:13.1.2.3' testImplementation 'junit:junit:4.13.2' testImplementation "org.mockito:mockito-inline:3.12.1" From a0ba42b6b1eb37aa72a6c1bb0033235047333f4a Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Fri, 12 Jul 2024 14:14:12 +0300 Subject: [PATCH 18/19] chore: update ios snapshot --- example/ios/Podfile | 2 +- example/ios/Podfile.lock | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/example/ios/Podfile b/example/ios/Podfile index e0112d082..0aa7b9c67 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -30,7 +30,7 @@ target 'Runner' do use_frameworks! use_modular_headers! - pod 'Instabug', :podspec => 'https://ios-releases.instabug.com/custom/feature-add-more-languages/13.1.1/Instabug.podspec' + pod 'Instabug', :podspec => 'https://ios-releases.instabug.com/custom/feature-add-more-languages/13.2.0/Instabug.podspec' flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) end diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 4c99a2292..15749728d 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1,14 +1,14 @@ PODS: - Flutter (1.0.0) - - Instabug (13.1.1) - - instabug_flutter (13.1.1): - - Flutters - - Instabug + - Instabug (13.2.0) + - instabug_flutter (13.2.0): + - Flutter + - Instabug (= 13.2.0) - OCMock (3.6) DEPENDENCIES: - Flutter (from `Flutter`) - - Instabug (from `https://ios-releases.instabug.com/custom/feature-add-more-languages/13.1.1/Instabug.podspec`) + - Instabug (from `https://ios-releases.instabug.com/custom/feature-add-more-languages/13.2.0/Instabug.podspec`) - instabug_flutter (from `.symlinks/plugins/instabug_flutter/ios`) - OCMock (= 3.6) @@ -20,16 +20,16 @@ EXTERNAL SOURCES: Flutter: :path: Flutter Instabug: - :podspec: https://ios-releases.instabug.com/custom/feature-add-more-languages/13.1.1/Instabug.podspec + :podspec: https://ios-releases.instabug.com/custom/feature-add-more-languages/13.2.0/Instabug.podspec instabug_flutter: :path: ".symlinks/plugins/instabug_flutter/ios" SPEC CHECKSUMS: - Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 - Instabug: 316a1091d57fff5548e83450508c5cddbe581723 - instabug_flutter: 07b8bef83734f0b6018aea2fce58c8848a49eefc + Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 + Instabug: 5e232f2cf23176661d0a29fc04ea8aceb762bae6 + instabug_flutter: 8fe63955937c73205d4e71667aea9d56ed8d921b OCMock: 5ea90566be239f179ba766fd9fbae5885040b992 -PODFILE CHECKSUM: f7ab5b22f27ab4d7319acedff84b2670fa5ea930 +PODFILE CHECKSUM: ea25cbe6c323726f092f912d61c39e32afa9e573 COCOAPODS: 1.14.3 From 38df50f85c439d388b8a8ea94b1c82b941d9bd9d Mon Sep 17 00:00:00 2001 From: Ahmed Mahmoud Date: Fri, 12 Jul 2024 14:16:40 +0300 Subject: [PATCH 19/19] chore(android): bump sdk to v13.2.0 --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 1bf4f3384..655d7b37a 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -41,7 +41,7 @@ android { } dependencies { - api 'com.instabug.library-bdrthermea:instabug:13.1.2.3' + api 'com.instabug.library-bdrthermea:instabug:13.2.0' testImplementation 'junit:junit:4.13.2' testImplementation "org.mockito:mockito-inline:3.12.1"