diff --git a/.circleci/config.yml b/.circleci/config.yml index 66fc2a817e..bb7c880677 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -59,24 +59,8 @@ jobs: - checkout: path: ~/project - - restore_cache: - key: yarn-v1-{{ checksum "InstabugSample/yarn.lock" }}-{{ arch }} - - - restore_cache: - key: node-v1-{{ checksum "InstabugSample/package.json" }}-{{ arch }} - - run: cd InstabugSample && yarn install - - save_cache: - key: yarn-v1-{{ checksum "InstabugSample/yarn.lock" }}-{{ arch }} - paths: - - ~/.cache/yarn - - - save_cache: - key: node-v1-{{ checksum "InstabugSample/package.json" }}-{{ arch }} - paths: - - InstabugSample/node_modules - - run: name: jest tests command: | diff --git a/CHANGELOG.md b/CHANGELOG.md index b9569080c7..87da7473b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ -## master + +## v9.1.8 (2020-09-16) * Adds support for react-navigation v5 +* Adds support for the Azerbaijani locale +* Bumps Instabug native SDKs to v9.1.7 * Fixes an issue with `onReportSubmitHandler` on iOS ## v9.1.7 (2020-08-10) diff --git a/InstabugSample/__tests__/instabugUtils.spec.js b/InstabugSample/__tests__/instabugUtils.spec.js index b978c76f7d..9d8d38b673 100644 --- a/InstabugSample/__tests__/instabugUtils.spec.js +++ b/InstabugSample/__tests__/instabugUtils.spec.js @@ -3,7 +3,6 @@ * @lint-ignore-every XPLATJSCOPYRIGHT1 */ -import 'react-native'; import { NativeModules, Platform } from 'react-native'; import '../../jest/mockInstabug'; import Instabug from 'instabug-reactnative'; @@ -77,4 +76,4 @@ describe('Test global error handler', () => { // }); -}); \ No newline at end of file +}); diff --git a/android/build.gradle b/android/build.gradle index 8492782ce8..f62f3d5161 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -29,7 +29,7 @@ android { dependencies { implementation 'com.android.support:multidex:1.0.3' implementation 'com.facebook.react:react-native:+' - api('com.instabug.library:instabug:9.1.6.0') { + api('com.instabug.library:instabug:9.1.7.0') { exclude group: 'com.android.support:appcompat-v7' } testImplementation 'org.mockito:mockito-core:1.10.19' diff --git a/android/src/main/java/com/instabug/reactlibrary/ArgsRegistry.java b/android/src/main/java/com/instabug/reactlibrary/ArgsRegistry.java index 8a0fd9c36d..544d395dd5 100644 --- a/android/src/main/java/com/instabug/reactlibrary/ArgsRegistry.java +++ b/android/src/main/java/com/instabug/reactlibrary/ArgsRegistry.java @@ -14,6 +14,7 @@ import com.instabug.library.visualusersteps.State; import static com.instabug.library.internal.module.InstabugLocale.ARABIC; +import static com.instabug.library.internal.module.InstabugLocale.AZERBAIJANI; import static com.instabug.library.internal.module.InstabugLocale.CZECH; import static com.instabug.library.internal.module.InstabugLocale.DANISH; import static com.instabug.library.internal.module.InstabugLocale.ENGLISH; @@ -139,6 +140,7 @@ static void registerInvocationOptionsArgs(Map args) { } static void registerLocaleArgs(Map args) { + args.put("azerbaijani", new Locale(AZERBAIJANI.getCode(), AZERBAIJANI.getCountry())); args.put("chineseTraditional", new Locale(TRADITIONAL_CHINESE.getCode(), TRADITIONAL_CHINESE.getCountry())); args.put("portuguesePortugal", new Locale(PORTUGUESE_PORTUGAL.getCode(), PORTUGUESE_PORTUGAL.getCountry())); args.put("chineseSimplified", new Locale(SIMPLIFIED_CHINESE.getCode(), SIMPLIFIED_CHINESE.getCountry())); diff --git a/android/src/main/java/com/instabug/reactlibrary/RNInstabugReactnativeModule.java b/android/src/main/java/com/instabug/reactlibrary/RNInstabugReactnativeModule.java index f7c3fbf10b..2446e582ec 100644 --- a/android/src/main/java/com/instabug/reactlibrary/RNInstabugReactnativeModule.java +++ b/android/src/main/java/com/instabug/reactlibrary/RNInstabugReactnativeModule.java @@ -104,6 +104,7 @@ public class RNInstabugReactnativeModule extends ReactContextBaseJavaModule { private final String FLOATING_BUTTON_EDGE_LEFT = "left"; //locales private final String LOCALE_ARABIC = "arabic"; + private final String LOCALE_AZERBAIJANI = "azerbaijani"; private final String LOCALE_CHINESE_SIMPLIFIED = "chineseSimplified"; private final String LOCALE_CHINESE_TRADITIONAL = "chineseTraditional"; private final String LOCALE_CZECH = "czech"; @@ -2382,6 +2383,7 @@ public Map getConstants() { constants.put(BUG_REPORTING_REPORT_TYPE_QUESTION, BUG_REPORTING_REPORT_TYPE_QUESTION); constants.put("localeArabic", LOCALE_ARABIC); + constants.put("localeAzerbaijani", LOCALE_AZERBAIJANI); constants.put("localeChineseSimplified", LOCALE_CHINESE_SIMPLIFIED); constants.put("localeChineseTraditional", LOCALE_CHINESE_TRADITIONAL); constants.put("localeCzech", LOCALE_CZECH); diff --git a/index.d.ts b/index.d.ts index 9dfe1a1ba4..7e6f2add9e 100644 --- a/index.d.ts +++ b/index.d.ts @@ -278,6 +278,7 @@ export enum extendedBugReportMode { } export enum locale { arabic, + azerbaijani, chineseSimplified, chineseTraditional, czech, diff --git a/index.js b/index.js index 78b2b501c4..ef62f33966 100644 --- a/index.js +++ b/index.js @@ -916,6 +916,7 @@ const InstabugModule = { */ locale: { arabic: Instabug.localeArabic, + azerbaijani: Instabug.localeAzerbaijani, chineseSimplified: Instabug.localeChineseSimplified, chineseTraditional: Instabug.localeChineseTraditional, czech: Instabug.localeCzech, diff --git a/ios/Instabug.framework/Headers/IBGBugReporting.h b/ios/Instabug.framework/Headers/IBGBugReporting.h index 084a988bb5..4a8fab68ed 100644 --- a/ios/Instabug.framework/Headers/IBGBugReporting.h +++ b/ios/Instabug.framework/Headers/IBGBugReporting.h @@ -5,7 +5,7 @@ Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved. - Version: 9.1.6 + Version: 9.1.7 */ #import diff --git a/ios/Instabug.framework/Headers/IBGChats.h b/ios/Instabug.framework/Headers/IBGChats.h index a8147cf7ef..efb334e6b2 100644 --- a/ios/Instabug.framework/Headers/IBGChats.h +++ b/ios/Instabug.framework/Headers/IBGChats.h @@ -5,7 +5,7 @@ Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved. - Version: 9.1.6 + Version: 9.1.7 */ #import diff --git a/ios/Instabug.framework/Headers/IBGCrashReporting.h b/ios/Instabug.framework/Headers/IBGCrashReporting.h index c15d59c7ef..d328df7a78 100644 --- a/ios/Instabug.framework/Headers/IBGCrashReporting.h +++ b/ios/Instabug.framework/Headers/IBGCrashReporting.h @@ -5,7 +5,7 @@ Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved. - Version: 9.1.6 + Version: 9.1.7 */ #import diff --git a/ios/Instabug.framework/Headers/IBGFeatureRequests.h b/ios/Instabug.framework/Headers/IBGFeatureRequests.h index 390f094c1d..deef93c4fa 100644 --- a/ios/Instabug.framework/Headers/IBGFeatureRequests.h +++ b/ios/Instabug.framework/Headers/IBGFeatureRequests.h @@ -5,7 +5,7 @@ Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved. - Version: 9.1.6 + Version: 9.1.7 */ diff --git a/ios/Instabug.framework/Headers/IBGLog.h b/ios/Instabug.framework/Headers/IBGLog.h index a50baadf0d..4b28ae4adf 100644 --- a/ios/Instabug.framework/Headers/IBGLog.h +++ b/ios/Instabug.framework/Headers/IBGLog.h @@ -5,7 +5,7 @@ Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved. - Version: 9.1.6 + Version: 9.1.7 */ #import diff --git a/ios/Instabug.framework/Headers/IBGNetworkLogger.h b/ios/Instabug.framework/Headers/IBGNetworkLogger.h index 5627722d8a..db860ba91b 100644 --- a/ios/Instabug.framework/Headers/IBGNetworkLogger.h +++ b/ios/Instabug.framework/Headers/IBGNetworkLogger.h @@ -5,7 +5,7 @@ Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved. - Version: 9.1.6 + Version: 9.1.7 */ #import diff --git a/ios/Instabug.framework/Headers/IBGReplies.h b/ios/Instabug.framework/Headers/IBGReplies.h index d9b393e45f..055f6ba599 100644 --- a/ios/Instabug.framework/Headers/IBGReplies.h +++ b/ios/Instabug.framework/Headers/IBGReplies.h @@ -5,7 +5,7 @@ Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved. - Version: 9.1.6 + Version: 9.1.7 */ #import diff --git a/ios/Instabug.framework/Headers/IBGSurvey.h b/ios/Instabug.framework/Headers/IBGSurvey.h index fd5abd6f6f..aa6d1a59cb 100644 --- a/ios/Instabug.framework/Headers/IBGSurvey.h +++ b/ios/Instabug.framework/Headers/IBGSurvey.h @@ -5,7 +5,7 @@ Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved. - Version: 9.1.6 + Version: 9.1.7 */ #import diff --git a/ios/Instabug.framework/Headers/IBGSurveys.h b/ios/Instabug.framework/Headers/IBGSurveys.h index f5104a3bbf..e00dce131e 100644 --- a/ios/Instabug.framework/Headers/IBGSurveys.h +++ b/ios/Instabug.framework/Headers/IBGSurveys.h @@ -5,7 +5,7 @@ Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved. - Version: 9.1.6 + Version: 9.1.7 */ #import diff --git a/ios/Instabug.framework/Headers/IBGTypes.h b/ios/Instabug.framework/Headers/IBGTypes.h index e8bae3f6c2..a90232f3db 100644 --- a/ios/Instabug.framework/Headers/IBGTypes.h +++ b/ios/Instabug.framework/Headers/IBGTypes.h @@ -5,7 +5,7 @@ Copyright: (c) 2013-2018 by Instabug, Inc., all rights reserved. - Version: 9.1.6 + Version: 9.1.7 */ #import @@ -279,6 +279,7 @@ typedef NS_ENUM(NSInteger, IBGDismissType) { */ typedef NS_ENUM(NSInteger, IBGLocale) { IBGLocaleArabic, + IBGLocaleAzerbaijani, IBGLocaleChineseSimplified, IBGLocaleChineseTaiwan, IBGLocaleChineseTraditional, diff --git a/ios/Instabug.framework/Headers/Instabug-Swift.h b/ios/Instabug.framework/Headers/Instabug-Swift.h index e3f932b445..e21bbd1f43 100644 --- a/ios/Instabug.framework/Headers/Instabug-Swift.h +++ b/ios/Instabug.framework/Headers/Instabug-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +// Generated by Apple Swift version 5.2.4 (swiftlang-1103.0.32.9 clang-1103.0.32.53) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wgcc-compat" @@ -84,6 +84,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_NOESCAPE #endif +#if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +#else +# define SWIFT_RELEASES_ARGUMENT +#endif #if __has_attribute(warn_unused_result) # define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) #else @@ -206,7 +211,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #pragma clang diagnostic pop #elif defined(__ARM_ARCH_7A__) && __ARM_ARCH_7A__ -// Generated by Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +// Generated by Apple Swift version 5.2.4 (swiftlang-1103.0.32.9 clang-1103.0.32.53) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wgcc-compat" @@ -290,6 +295,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_NOESCAPE #endif +#if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +#else +# define SWIFT_RELEASES_ARGUMENT +#endif #if __has_attribute(warn_unused_result) # define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) #else diff --git a/ios/Instabug.framework/Headers/Instabug.h b/ios/Instabug.framework/Headers/Instabug.h index 76141e4153..fbceade0e5 100644 --- a/ios/Instabug.framework/Headers/Instabug.h +++ b/ios/Instabug.framework/Headers/Instabug.h @@ -5,7 +5,7 @@ Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved. - Version: 9.1.6 + Version: 9.1.7 */ #import diff --git a/ios/Instabug.framework/Headers/InstabugCore.h b/ios/Instabug.framework/Headers/InstabugCore.h index 8e4284fdcf..6804d5af83 100644 --- a/ios/Instabug.framework/Headers/InstabugCore.h +++ b/ios/Instabug.framework/Headers/InstabugCore.h @@ -5,7 +5,7 @@ Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved. - Version: 9.1.6 + Version: 9.1.7 */ #import diff --git a/ios/Instabug.framework/Headers/InstabugStatic-Swift.h b/ios/Instabug.framework/Headers/InstabugStatic-Swift.h deleted file mode 100644 index 947fc47ade..0000000000 --- a/ios/Instabug.framework/Headers/InstabugStatic-Swift.h +++ /dev/null @@ -1,476 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) -#endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE -#endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT -#endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -#endif -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="InstabugStatic",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -@class IBGOperation; -@class IBGPLCrashReporter; -@class IBGDeviceState; -@class NSException; -@class NSError; - -SWIFT_CLASS("_TtC14InstabugStatic15IBGCrashManager") -@interface IBGCrashManager : NSObject -@property (nonatomic, copy) NSArray * _Nonnull pendingCrashesOperations; -@property (nonatomic, readonly) BOOL hasPendingCrashReport; -+ (IBGCrashManager * _Nonnull)sharedInstance SWIFT_WARN_UNUSED_RESULT; -@property (nonatomic) BOOL shouldRunMigration; -@property (nonatomic, strong) IBGPLCrashReporter * _Nullable crashReporter; -- (nonnull instancetype)initWithDeviceState:(IBGDeviceState * _Nonnull)deviceState OBJC_DESIGNATED_INITIALIZER; -- (void)startCrashReportingListeners; -- (void)reportExceptionWith:(NSException * _Nonnull)exception; -- (void)reportErrorWith:(NSError * _Nonnull)error; -- (void)reportCrashWithStackTrace:(NSString * _Nonnull)stackTrace handled:(BOOL)handled; -- (void)handlePendingCrashReportIfExists; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - - - - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop - -#elif defined(__ARM_ARCH_7A__) && __ARM_ARCH_7A__ -// Generated by Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) -#endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE -#endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT -#endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -#endif -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="InstabugStatic",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -@class IBGOperation; -@class IBGPLCrashReporter; -@class IBGDeviceState; -@class NSException; -@class NSError; - -SWIFT_CLASS("_TtC14InstabugStatic15IBGCrashManager") -@interface IBGCrashManager : NSObject -@property (nonatomic, copy) NSArray * _Nonnull pendingCrashesOperations; -@property (nonatomic, readonly) BOOL hasPendingCrashReport; -+ (IBGCrashManager * _Nonnull)sharedInstance SWIFT_WARN_UNUSED_RESULT; -@property (nonatomic) BOOL shouldRunMigration; -@property (nonatomic, strong) IBGPLCrashReporter * _Nullable crashReporter; -- (nonnull instancetype)initWithDeviceState:(IBGDeviceState * _Nonnull)deviceState OBJC_DESIGNATED_INITIALIZER; -- (void)startCrashReportingListeners; -- (void)reportExceptionWith:(NSException * _Nonnull)exception; -- (void)reportErrorWith:(NSError * _Nonnull)error; -- (void)reportCrashWithStackTrace:(NSString * _Nonnull)stackTrace handled:(BOOL)handled; -- (void)handlePendingCrashReportIfExists; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - - - - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop - -#endif diff --git a/ios/Instabug.framework/Info.plist b/ios/Instabug.framework/Info.plist index 19d92264f2..a26c1a92a4 100644 Binary files a/ios/Instabug.framework/Info.plist and b/ios/Instabug.framework/Info.plist differ diff --git a/ios/Instabug.framework/Instabug b/ios/Instabug.framework/Instabug index 9f1c999733..bcd2f2fda5 100755 Binary files a/ios/Instabug.framework/Instabug and b/ios/Instabug.framework/Instabug differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/Assets.car b/ios/Instabug.framework/InstabugResources.bundle/Assets.car index 1feac8c3c1..ace00374cd 100644 Binary files a/ios/Instabug.framework/InstabugResources.bundle/Assets.car and b/ios/Instabug.framework/InstabugResources.bundle/Assets.car differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetCell.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetCell.nib new file mode 100644 index 0000000000..60d7aab1a8 Binary files /dev/null and b/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetCell.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetCell.nib/objects-13.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetCell.nib/objects-13.0+.nib deleted file mode 100644 index 42db09aea0..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetCell.nib/objects-13.0+.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetCell.nib/runtime.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetCell.nib/runtime.nib deleted file mode 100644 index 6229f56913..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetCell.nib/runtime.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/objects-11.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/objects-11.0+.nib index 07afe9ba63..8eb5d2d1c4 100644 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/objects-11.0+.nib and b/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/objects-11.0+.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/objects-13.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/objects-13.0+.nib deleted file mode 100644 index 6338b8df31..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/objects-13.0+.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/runtime.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/runtime.nib index 82ccf0df38..2abd2e7fc9 100644 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/runtime.nib and b/ios/Instabug.framework/InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/runtime.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGBugVC-iPhone.nib/objects-11.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGBugVC-iPhone.nib/objects-11.0+.nib index e5bfbfd2d2..f891bf4c70 100644 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGBugVC-iPhone.nib/objects-11.0+.nib and b/ios/Instabug.framework/InstabugResources.bundle/IBGBugVC-iPhone.nib/objects-11.0+.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGBugVC-iPhone.nib/objects-13.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGBugVC-iPhone.nib/objects-13.0+.nib deleted file mode 100644 index f04cb2306a..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGBugVC-iPhone.nib/objects-13.0+.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGBugVC-iPhone.nib/runtime.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGBugVC-iPhone.nib/runtime.nib index f3f935c3ec..4c628640e4 100644 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGBugVC-iPhone.nib/runtime.nib and b/ios/Instabug.framework/InstabugResources.bundle/IBGBugVC-iPhone.nib/runtime.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGChatCell.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGChatCell.nib new file mode 100644 index 0000000000..a537c03c29 Binary files /dev/null and b/ios/Instabug.framework/InstabugResources.bundle/IBGChatCell.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGChatCell.nib/objects-13.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGChatCell.nib/objects-13.0+.nib deleted file mode 100644 index 61300c428f..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGChatCell.nib/objects-13.0+.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGChatCell.nib/runtime.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGChatCell.nib/runtime.nib deleted file mode 100644 index ab3bd9c315..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGChatCell.nib/runtime.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGChatListVC-iPhone.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGChatListVC-iPhone.nib new file mode 100644 index 0000000000..6bba520e12 Binary files /dev/null and b/ios/Instabug.framework/InstabugResources.bundle/IBGChatListVC-iPhone.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGChatListVC-iPhone.nib/objects-13.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGChatListVC-iPhone.nib/objects-13.0+.nib deleted file mode 100644 index d4c3ba955f..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGChatListVC-iPhone.nib/objects-13.0+.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGChatListVC-iPhone.nib/runtime.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGChatListVC-iPhone.nib/runtime.nib deleted file mode 100644 index bb78ea457d..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGChatListVC-iPhone.nib/runtime.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGChatVC-iPhone.nib/objects-11.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGChatVC-iPhone.nib/objects-11.0+.nib index f9a9f92d87..e2092c4ca9 100644 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGChatVC-iPhone.nib/objects-11.0+.nib and b/ios/Instabug.framework/InstabugResources.bundle/IBGChatVC-iPhone.nib/objects-11.0+.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGChatVC-iPhone.nib/objects-13.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGChatVC-iPhone.nib/objects-13.0+.nib deleted file mode 100644 index f9ad6bf47e..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGChatVC-iPhone.nib/objects-13.0+.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGChatVC-iPhone.nib/runtime.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGChatVC-iPhone.nib/runtime.nib index 1037933f07..b3da9cf5ca 100644 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGChatVC-iPhone.nib/runtime.nib and b/ios/Instabug.framework/InstabugResources.bundle/IBGChatVC-iPhone.nib/runtime.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGFullScreenImageViewController.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGFullScreenImageViewController.nib new file mode 100644 index 0000000000..eb77f30dfa Binary files /dev/null and b/ios/Instabug.framework/InstabugResources.bundle/IBGFullScreenImageViewController.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGFullScreenImageViewController.nib/objects-13.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGFullScreenImageViewController.nib/objects-13.0+.nib deleted file mode 100644 index 3cb2ca6602..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGFullScreenImageViewController.nib/objects-13.0+.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGFullScreenImageViewController.nib/runtime.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGFullScreenImageViewController.nib/runtime.nib deleted file mode 100644 index 96bfe9155c..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGFullScreenImageViewController.nib/runtime.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGPoweredByView.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGPoweredByView.nib new file mode 100644 index 0000000000..8fa83e7220 Binary files /dev/null and b/ios/Instabug.framework/InstabugResources.bundle/IBGPoweredByView.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGPoweredByView.nib/objects-13.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGPoweredByView.nib/objects-13.0+.nib deleted file mode 100644 index 1c539788f4..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGPoweredByView.nib/objects-13.0+.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGPoweredByView.nib/runtime.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGPoweredByView.nib/runtime.nib deleted file mode 100644 index e399ca497a..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGPoweredByView.nib/runtime.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGPromptCell.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGPromptCell.nib new file mode 100644 index 0000000000..d77e54821d Binary files /dev/null and b/ios/Instabug.framework/InstabugResources.bundle/IBGPromptCell.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGPromptCell.nib/objects-13.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGPromptCell.nib/objects-13.0+.nib deleted file mode 100644 index 4d897ea481..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGPromptCell.nib/objects-13.0+.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGPromptCell.nib/runtime.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGPromptCell.nib/runtime.nib deleted file mode 100644 index 03a439adc6..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGPromptCell.nib/runtime.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGReplyView-iPhone.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGReplyView-iPhone.nib new file mode 100644 index 0000000000..00b6eb51d8 Binary files /dev/null and b/ios/Instabug.framework/InstabugResources.bundle/IBGReplyView-iPhone.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGReplyView-iPhone.nib/objects-13.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGReplyView-iPhone.nib/objects-13.0+.nib deleted file mode 100644 index 4e163c8c07..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGReplyView-iPhone.nib/objects-13.0+.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGReplyView-iPhone.nib/runtime.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGReplyView-iPhone.nib/runtime.nib deleted file mode 100644 index 30f7f91c9d..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGReplyView-iPhone.nib/runtime.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGReportCategoryCell.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGReportCategoryCell.nib new file mode 100644 index 0000000000..174a4b7939 Binary files /dev/null and b/ios/Instabug.framework/InstabugResources.bundle/IBGReportCategoryCell.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGReportCategoryCell.nib/objects-13.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGReportCategoryCell.nib/objects-13.0+.nib deleted file mode 100644 index bb1bdf4859..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGReportCategoryCell.nib/objects-13.0+.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGReportCategoryCell.nib/runtime.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGReportCategoryCell.nib/runtime.nib deleted file mode 100644 index 8a1937a529..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGReportCategoryCell.nib/runtime.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/objects-11.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/objects-11.0+.nib index 29d8ce3f6b..abe29aec6c 100644 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/objects-11.0+.nib and b/ios/Instabug.framework/InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/objects-11.0+.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/objects-13.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/objects-13.0+.nib deleted file mode 100644 index 5f7085eab0..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/objects-13.0+.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/runtime.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/runtime.nib index 55e7147b48..d5502036e4 100644 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/runtime.nib and b/ios/Instabug.framework/InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/runtime.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib new file mode 100644 index 0000000000..c1c41cd72f Binary files /dev/null and b/ios/Instabug.framework/InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib/objects-13.0+.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib/objects-13.0+.nib deleted file mode 100644 index 6d1b716f17..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib/objects-13.0+.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib/runtime.nib b/ios/Instabug.framework/InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib/runtime.nib deleted file mode 100644 index a8bcfa6e55..0000000000 Binary files a/ios/Instabug.framework/InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib/runtime.nib and /dev/null differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/Info.plist b/ios/Instabug.framework/InstabugResources.bundle/Info.plist index 2e96835994..2347962bef 100644 Binary files a/ios/Instabug.framework/InstabugResources.bundle/Info.plist and b/ios/Instabug.framework/InstabugResources.bundle/Info.plist differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/InstabugDataModel.momd/InstabugDataModel 19.omo b/ios/Instabug.framework/InstabugResources.bundle/InstabugDataModel.momd/InstabugDataModel 19.omo index 791385f1ca..122655fd85 100644 Binary files a/ios/Instabug.framework/InstabugResources.bundle/InstabugDataModel.momd/InstabugDataModel 19.omo and b/ios/Instabug.framework/InstabugResources.bundle/InstabugDataModel.momd/InstabugDataModel 19.omo differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/InstabugSurveysDataModel.momd/InstabugSurveysDataModel 3.omo b/ios/Instabug.framework/InstabugResources.bundle/InstabugSurveysDataModel.momd/InstabugSurveysDataModel 3.omo index 994814dd2c..fd87617bdf 100644 Binary files a/ios/Instabug.framework/InstabugResources.bundle/InstabugSurveysDataModel.momd/InstabugSurveysDataModel 3.omo and b/ios/Instabug.framework/InstabugResources.bundle/InstabugSurveysDataModel.momd/InstabugSurveysDataModel 3.omo differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/InstabugUserStepsDataModel.momd/UserStepsDataModel 3.omo b/ios/Instabug.framework/InstabugResources.bundle/InstabugUserStepsDataModel.momd/UserStepsDataModel 3.omo index 875bee82f7..bb807f2c28 100644 Binary files a/ios/Instabug.framework/InstabugResources.bundle/InstabugUserStepsDataModel.momd/UserStepsDataModel 3.omo and b/ios/Instabug.framework/InstabugResources.bundle/InstabugUserStepsDataModel.momd/UserStepsDataModel 3.omo differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/az.lproj/Localizable.strings b/ios/Instabug.framework/InstabugResources.bundle/az.lproj/Localizable.strings new file mode 100644 index 0000000000..4812823526 Binary files /dev/null and b/ios/Instabug.framework/InstabugResources.bundle/az.lproj/Localizable.strings differ diff --git a/ios/Instabug.framework/InstabugResources.bundle/strip-frameworks.sh b/ios/Instabug.framework/InstabugResources.bundle/strip-frameworks.sh new file mode 100644 index 0000000000..2c23237b50 --- /dev/null +++ b/ios/Instabug.framework/InstabugResources.bundle/strip-frameworks.sh @@ -0,0 +1,62 @@ +################################################################################ +# +# Copyright 2015 Realm Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +################################################################################ + +# This script strips all non-valid architectures from dynamic libraries in +# the application's `Frameworks` directory. +# +# The following environment variables are required: +# +# BUILT_PRODUCTS_DIR +# FRAMEWORKS_FOLDER_PATH +# VALID_ARCHS +# EXPANDED_CODE_SIGN_IDENTITY + + +# Signs a framework with the provided identity +code_sign() { +# Use the current code_sign_identitiy +echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" +echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1" +/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" +} + +echo "Stripping frameworks" +cd "${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +for file in $(find . -type f -perm +111); do +# Skip non-dynamic libraries +if ! [[ "$(file "$file")" == *"dynamically linked shared library"* ]]; then +continue +fi +# Get architectures for current file +archs="$(lipo -info "${file}" | rev | cut -d ':' -f1 | rev)" +stripped="" +for arch in $archs; do +if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then +# Strip non-valid architectures in-place +lipo -remove "$arch" -output "$file" "$file" || exit 1 +stripped="$stripped $arch" +fi +done +if [[ "$stripped" != "" ]]; then +echo "Stripped $file of architectures:$stripped" +if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then +code_sign "${file}" +fi +fi +done diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm.swiftdoc b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm.swiftdoc index 369dbd344d..1669bfb529 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm.swiftdoc and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm.swiftdoc differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm.swiftinterface b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm.swiftinterface index 0eb4e5d430..5c4adb403b 100644 --- a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm.swiftinterface +++ b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm.swiftinterface @@ -1,5 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +// swift-compiler-version: Apple Swift version 5.2.4 (swiftlang-1103.0.32.9 clang-1103.0.32.53) // swift-module-flags: -target armv7-apple-ios9.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Instabug +import Foundation @_exported import Instabug import Swift diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm.swiftmodule b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm.swiftmodule index 2afa8cb913..2a4622f078 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm.swiftmodule and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm.swiftmodule differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64-apple-ios.swiftdoc b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64-apple-ios.swiftdoc index ccbcb01427..b6206c1715 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64-apple-ios.swiftdoc and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64-apple-ios.swiftinterface b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64-apple-ios.swiftinterface index 314326d5dc..ae86b08eb9 100644 --- a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64-apple-ios.swiftinterface +++ b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,5 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +// swift-compiler-version: Apple Swift version 5.2.4 (swiftlang-1103.0.32.9 clang-1103.0.32.53) // swift-module-flags: -target arm64-apple-ios9.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Instabug +import Foundation @_exported import Instabug import Swift diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64-apple-ios.swiftmodule b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64-apple-ios.swiftmodule index 3fca29cb61..aa6892fbb0 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64-apple-ios.swiftmodule and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64-apple-ios.swiftmodule differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64.swiftdoc b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64.swiftdoc index ccbcb01427..b6206c1715 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64.swiftdoc and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64.swiftdoc differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64.swiftinterface b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64.swiftinterface index 314326d5dc..ae86b08eb9 100644 --- a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64.swiftinterface +++ b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64.swiftinterface @@ -1,5 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +// swift-compiler-version: Apple Swift version 5.2.4 (swiftlang-1103.0.32.9 clang-1103.0.32.53) // swift-module-flags: -target arm64-apple-ios9.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Instabug +import Foundation @_exported import Instabug import Swift diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64.swiftmodule b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64.swiftmodule index 3fca29cb61..aa6892fbb0 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64.swiftmodule and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/arm64.swiftmodule differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7-apple-ios.swiftdoc b/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7-apple-ios.swiftdoc index 369dbd344d..1669bfb529 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7-apple-ios.swiftdoc and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7-apple-ios.swiftdoc differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7-apple-ios.swiftinterface b/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7-apple-ios.swiftinterface index 0eb4e5d430..5c4adb403b 100644 --- a/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7-apple-ios.swiftinterface +++ b/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7-apple-ios.swiftinterface @@ -1,5 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +// swift-compiler-version: Apple Swift version 5.2.4 (swiftlang-1103.0.32.9 clang-1103.0.32.53) // swift-module-flags: -target armv7-apple-ios9.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Instabug +import Foundation @_exported import Instabug import Swift diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7-apple-ios.swiftmodule b/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7-apple-ios.swiftmodule index 2afa8cb913..2a4622f078 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7-apple-ios.swiftmodule and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7-apple-ios.swiftmodule differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7.swiftdoc b/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7.swiftdoc index 369dbd344d..1669bfb529 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7.swiftdoc and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7.swiftdoc differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7.swiftinterface b/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7.swiftinterface index 0eb4e5d430..5c4adb403b 100644 --- a/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7.swiftinterface +++ b/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7.swiftinterface @@ -1,5 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +// swift-compiler-version: Apple Swift version 5.2.4 (swiftlang-1103.0.32.9 clang-1103.0.32.53) // swift-module-flags: -target armv7-apple-ios9.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Instabug +import Foundation @_exported import Instabug import Swift diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7.swiftmodule b/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7.swiftmodule index 2afa8cb913..2a4622f078 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7.swiftmodule and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/armv7.swiftmodule differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386-apple-ios-simulator.swiftdoc b/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386-apple-ios-simulator.swiftdoc index 5071353028..8b1193533a 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386-apple-ios-simulator.swiftdoc and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386-apple-ios-simulator.swiftdoc differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386-apple-ios-simulator.swiftinterface b/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386-apple-ios-simulator.swiftinterface index 42e55e664e..30863246ef 100644 --- a/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386-apple-ios-simulator.swiftinterface +++ b/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386-apple-ios-simulator.swiftinterface @@ -1,5 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +// swift-compiler-version: Apple Swift version 5.2.4 (swiftlang-1103.0.32.9 clang-1103.0.32.53) // swift-module-flags: -target i386-apple-ios9.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Instabug +import Foundation @_exported import Instabug import Swift diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386-apple-ios-simulator.swiftmodule b/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386-apple-ios-simulator.swiftmodule index b17450be25..67b93b473b 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386-apple-ios-simulator.swiftmodule and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386-apple-ios-simulator.swiftmodule differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386.swiftdoc b/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386.swiftdoc index 5071353028..8b1193533a 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386.swiftdoc and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386.swiftdoc differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386.swiftinterface b/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386.swiftinterface index 42e55e664e..30863246ef 100644 --- a/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386.swiftinterface +++ b/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386.swiftinterface @@ -1,5 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +// swift-compiler-version: Apple Swift version 5.2.4 (swiftlang-1103.0.32.9 clang-1103.0.32.53) // swift-module-flags: -target i386-apple-ios9.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Instabug +import Foundation @_exported import Instabug import Swift diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386.swiftmodule b/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386.swiftmodule index b17450be25..67b93b473b 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386.swiftmodule and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/i386.swiftmodule differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index f0e26d091c..70b669c0ae 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 30b85cfd1d..2ff52acfd8 100644 --- a/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,5 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +// swift-compiler-version: Apple Swift version 5.2.4 (swiftlang-1103.0.32.9 clang-1103.0.32.53) // swift-module-flags: -target x86_64-apple-ios9.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Instabug +import Foundation @_exported import Instabug import Swift diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64-apple-ios-simulator.swiftmodule b/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64-apple-ios-simulator.swiftmodule index 302ae556ec..7df6386a1e 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64-apple-ios-simulator.swiftmodule and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64-apple-ios-simulator.swiftmodule differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64.swiftdoc b/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64.swiftdoc index f0e26d091c..70b669c0ae 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64.swiftdoc and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64.swiftdoc differ diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64.swiftinterface b/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64.swiftinterface index 30b85cfd1d..2ff52acfd8 100644 --- a/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64.swiftinterface +++ b/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64.swiftinterface @@ -1,5 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +// swift-compiler-version: Apple Swift version 5.2.4 (swiftlang-1103.0.32.9 clang-1103.0.32.53) // swift-module-flags: -target x86_64-apple-ios9.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Instabug +import Foundation @_exported import Instabug import Swift diff --git a/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64.swiftmodule b/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64.swiftmodule index 302ae556ec..7df6386a1e 100644 Binary files a/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64.swiftmodule and b/ios/Instabug.framework/Modules/Instabug.swiftmodule/x86_64.swiftmodule differ diff --git a/ios/Instabug.framework/Modules/module.modulemap b/ios/Instabug.framework/Modules/module.modulemap index f0b7fd3768..f655923890 100644 --- a/ios/Instabug.framework/Modules/module.modulemap +++ b/ios/Instabug.framework/Modules/module.modulemap @@ -1,9 +1,11 @@ framework module Instabug { - umbrella header "Instabug.h" + umbrella header "Instabug.h" + export * + module * { export * } +} + +module Instabug.Swift { header "Instabug-Swift.h" - header "InstabugStatic-Swift.h" - - export * - module * { export * } + requires objc } diff --git a/ios/Instabug.framework/_CodeSignature/CodeResources b/ios/Instabug.framework/_CodeSignature/CodeResources index 07794e5ac3..40c5d45355 100644 --- a/ios/Instabug.framework/_CodeSignature/CodeResources +++ b/ios/Instabug.framework/_CodeSignature/CodeResources @@ -6,31 +6,31 @@ Headers/IBGBugReporting.h - VgR51Yl/ZRrfDI8PVFCx6VmmN+Y= + zfdxXsych0h+NemknT1aefN7Eq8= Headers/IBGChats.h - 1sVFDXS5G78vFSKnAcI+BXLCOVw= + ramIxwGLjs0iDYPHPnDBm0EyzwY= Headers/IBGCrashReporting.h - QALzrZKePaX5PgvHCBa7wEojGSg= + 2mvDFVWM9Tp/pf/nQABfiJZ7sxI= Headers/IBGFeatureRequests.h - gZaNShGzF0peU8cBYHe3gLCeRW0= + 0E8vGLip2YvhXfgzBhjDiRt2hZU= Headers/IBGLog.h - QsoR3YfxrBnhrViUZFdVc7l4opc= + KhMs3Cmn5xTcUNz+cY0tqxltuCA= Headers/IBGNetworkLogger.h - kZF6MEl7F3cyIXOgki9fx1nlwDM= + B5b08TfJN2I4zgN38TW687x4mr4= Headers/IBGReplies.h - 0tPdSh8JacPkTae+Jy3svblOASU= + anhvVG7SJGRLVjxsZ1Y7M2QOv7I= Headers/IBGReport.h @@ -38,31 +38,27 @@ Headers/IBGSurvey.h - k9cNsBWL1m3fv9QD46aPTgZbAZA= + zXtCbr9kknYEaJVDpvxr7/o+Wmw= Headers/IBGSurveys.h - 2hbqAs0qyxclw+FajgsZC6a20Js= + vniLmmve3Ubi/uSyxCE6kGXL9hY= Headers/IBGTypes.h - um/tOs17tlELU80boCToLIPATpI= + hwl8Fnykn6M/4+9/yVmlOVXlovo= Headers/Instabug-Swift.h - 15fDhQoBLC8UXePUm+/G978dCC8= + WNo0ZjgNBuFwJa90aVntryN9/m8= Headers/Instabug.h - e+84f8wNuXLLydaaCCITuBnikJA= + LYZjLHxv3TxWmM8Wu/0Zn++qi/M= Headers/InstabugCore.h - FUyamrCzG2v4qRPDJZLCmt2MTOM= - - Headers/InstabugStatic-Swift.h - - zscuRuo2QAfRQUpdy4S/B0wcFNI= + x7l6StVeGT5gO5fqvGJjwpUxOxw= Headers/UIView+Instabug.h @@ -70,139 +66,87 @@ Info.plist - v2XYYWg+hBkjdur7z6Vuxehl0/4= + 15eghWzmG8WCbrc4iPOqiGbMhUM= InstabugResources.bundle/Assets.car - OzMsgIEDaA/mZmCRkMyDyN16ZsU= + rTS9tQ2aCarSmQ0UD4u/weWVdVo= InstabugResources.bundle/Config.plist zmV6UqBSo6r1NOz798vd5O4zTBA= - InstabugResources.bundle/IBGActionSheetCell.nib/objects-13.0+.nib - - SWoHDqdhkyrygkxt9o0OHkUcIUg= - - InstabugResources.bundle/IBGActionSheetCell.nib/runtime.nib + InstabugResources.bundle/IBGActionSheetCell.nib - 0ohO2CO6KRlsyZlVrhiqV6dtlVI= + 2WE2EyfNzMUfp7k+pf6lmCgVADE= InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/objects-11.0+.nib - z9TfcL/qO12OMmsfMsOGbI5J7NM= - - InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/objects-13.0+.nib - - f1K+MxgK9MUm8VUCPMmc26NqVbU= + kHnv37rc8oif3Sfw6kuc0ncNj1M= InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/runtime.nib - 3Dp4v1pM2L2lbvNck+0gquXQjAQ= + WFx0jnlJ4BmtCEBHbZtrJhOy40M= InstabugResources.bundle/IBGBugVC-iPhone.nib/objects-11.0+.nib - 15Yx6BxrT+x8pgx64GI/2H/LP+g= - - InstabugResources.bundle/IBGBugVC-iPhone.nib/objects-13.0+.nib - - 0pyGlOIE0zMdHLlcbwmD7OlxWhc= + nQvRQRUTxJ40oXcaUfkRSIrvrlU= InstabugResources.bundle/IBGBugVC-iPhone.nib/runtime.nib - Ep2YDvkopbB7h2BIuHl/EKMV0QI= - - InstabugResources.bundle/IBGChatCell.nib/objects-13.0+.nib - - MHscG67QFGEOiZKfJCICZyxEeI0= - - InstabugResources.bundle/IBGChatCell.nib/runtime.nib - - w5jypEK6DQekncmPfyo/J6ohWUQ= + wF0WemH0ybYx/l3swqePfbN+B2Q= - InstabugResources.bundle/IBGChatListVC-iPhone.nib/objects-13.0+.nib + InstabugResources.bundle/IBGChatCell.nib - 1zF3HKu/iU3Xuc79EzfPseVch7E= + P8bBYx6eW1NF9e2KTvAhdh6bmgU= - InstabugResources.bundle/IBGChatListVC-iPhone.nib/runtime.nib + InstabugResources.bundle/IBGChatListVC-iPhone.nib - 5xzlYlz597fCPsUq0ot7di5igPY= + hJm5HhYquOX750m+2cDzZ+k2UD8= InstabugResources.bundle/IBGChatVC-iPhone.nib/objects-11.0+.nib - Qvol2A9UF80WYRnYXv76Llja1a4= - - InstabugResources.bundle/IBGChatVC-iPhone.nib/objects-13.0+.nib - - 6/DtdlhWf76pzYYCXCeo/oOfL4g= + XyVYU0v4qD6aaBy9kGfeuslMcpM= InstabugResources.bundle/IBGChatVC-iPhone.nib/runtime.nib - iKwqCS55lLqD/+66Ch2kLr2SShU= - - InstabugResources.bundle/IBGFullScreenImageViewController.nib/objects-13.0+.nib - - WhKQrhgPSjwdXj8Vd11BQThLtdc= - - InstabugResources.bundle/IBGFullScreenImageViewController.nib/runtime.nib - - GEYX09qk5WchQT4h7COsCt2LEhg= - - InstabugResources.bundle/IBGPoweredByView.nib/objects-13.0+.nib - - UsHIfJ1EJiuYB2tQ8vwNkicu3Ok= - - InstabugResources.bundle/IBGPoweredByView.nib/runtime.nib - - IwPpwsegzgYoqdA08xL73eeZ4N8= + uDqLbte+yZAZLCsgwGpsrWSjlvk= - InstabugResources.bundle/IBGPromptCell.nib/objects-13.0+.nib + InstabugResources.bundle/IBGFullScreenImageViewController.nib - oBXb8RlAdCq5/RTEiRndRq8rCnU= + RAg5KOpKmpXcggUagYgl+Ph7Vdk= - InstabugResources.bundle/IBGPromptCell.nib/runtime.nib + InstabugResources.bundle/IBGPoweredByView.nib - j//OYgV8CXp+iZQrsoJoj2O0JY8= + BravosJ5ioJFYV5QKYbRF7gjoUA= - InstabugResources.bundle/IBGReplyView-iPhone.nib/objects-13.0+.nib + InstabugResources.bundle/IBGPromptCell.nib - F21Fx2lSQxbUPw3zy7FUt9QoSvM= + b4w/xFYnrwsXePpblNfNp6QgB3E= - InstabugResources.bundle/IBGReplyView-iPhone.nib/runtime.nib + InstabugResources.bundle/IBGReplyView-iPhone.nib - wLgXfBROez6lFDtoD5mVM1P6FbI= + yS1+p6UHDjIvhsZ7ZVoK6rOPgeU= - InstabugResources.bundle/IBGReportCategoryCell.nib/objects-13.0+.nib + InstabugResources.bundle/IBGReportCategoryCell.nib - uTjLwEbxNTMcV4jKawj+bpVW6/A= - - InstabugResources.bundle/IBGReportCategoryCell.nib/runtime.nib - - Ujl7DL4weBiW+eNie2qoGKYLkjw= + aUaEbJSnVnIhl0rkdaPHwHfcM/o= InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/objects-11.0+.nib - 3oJLW/0orYkQjQ91xUBASz6c8A4= - - InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/objects-13.0+.nib - - vC+ojEbHc+8H/sLMc3lJcS5kbm0= + c0NHF8yF4WzKfzBxhmlM2GjrwxI= InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/runtime.nib - TgcmXQCkzF63PIzyV9GXRyV4jLY= - - InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib/objects-13.0+.nib - - mNlemQLgjJsLXIquvxTLEM1bCdo= + bmFQXJklYkdVkC9ThFKVpU+pWBs= - InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib/runtime.nib + InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib - hihxxH7a+3LEZJbNqrREM3hTpYs= + L1Z3tPPxEM7otluEcl/IhjMx7Dw= InstabugResources.bundle/Info.plist - e4BWmHxleHqnsO52N15FJ0hxY8U= + 9rqa6axKfAgnlso3Ol4COKGZx+E= InstabugResources.bundle/Inject_DSYM_Project-Archive.sh @@ -246,7 +190,7 @@ InstabugResources.bundle/InstabugDataModel.momd/InstabugDataModel 19.omo - eEgcb/95mDoIuuG6b2vZD7y96e4= + fKrIAPMPM+8gmYBvrP4wdhBxAQE= InstabugResources.bundle/InstabugDataModel.momd/InstabugDataModel 2.mom @@ -286,7 +230,7 @@ InstabugResources.bundle/InstabugSurveysDataModel.momd/InstabugSurveysDataModel 3.omo - KbBALOpNAfa57V/oNN8sYTqQVXU= + xe0GJTemzySTi+MShrzDUMxQsdQ= InstabugResources.bundle/InstabugSurveysDataModel.momd/InstabugSurveysDataModel.mom @@ -306,7 +250,7 @@ InstabugResources.bundle/InstabugUserStepsDataModel.momd/UserStepsDataModel 3.omo - qpX9Tuxnn9/OJ9MDKvG3sXl8+OM= + XcyBT0QkhJCcVQCvDmkkaihetgU= InstabugResources.bundle/InstabugUserStepsDataModel.momd/UserStepsDataModel.mom @@ -329,6 +273,15 @@ optional + InstabugResources.bundle/az.lproj/Localizable.strings + + hash + + lSXaJeFth51mzPTD3C5ygtKzqeg= + + optional + + InstabugResources.bundle/cs.lproj/Localizable.strings hash @@ -500,6 +453,10 @@ optional + InstabugResources.bundle/strip-frameworks.sh + + +MG0vr81f9BYFi8t9r2Wy0CFRAQ= + InstabugResources.bundle/sv.lproj/Localizable.strings hash @@ -547,63 +504,63 @@ Modules/Instabug.swiftmodule/arm.swiftdoc - Bm603o1KgjSD+P3RdlnTCHaKffU= + BzuzWiOh7FWCao7c/HC+jKKBAyY= Modules/Instabug.swiftmodule/arm.swiftinterface - Q/GwvPj9bQG3Xp8kAQxYNKVvGho= + ajm1xzHk4gqpRsGZW1D5fqGAPRc= Modules/Instabug.swiftmodule/arm.swiftmodule - 1dPgxUuY7IxovMzvFD3iPgqMJ4U= + S3S1eHLIl0q4xN0QmWcbneVoqv0= Modules/Instabug.swiftmodule/arm64-apple-ios.swiftdoc - JiOOHhJ2PzGI78NiMHlY+cMQaS0= + M1W3He36ZCbDSOlujVxnWddnw7o= Modules/Instabug.swiftmodule/arm64-apple-ios.swiftinterface - zNx/09ZfsrMWUEY8K7qnCUbnxQA= + h5vNTf9Z7YX4RELXBwEw0xQjiKE= Modules/Instabug.swiftmodule/arm64-apple-ios.swiftmodule - DXbI8EFfOnfinV1jygcTx+tHk+Q= + Djk764TunPgzdQnbCBRFDJEWrPA= Modules/Instabug.swiftmodule/arm64.swiftdoc - JiOOHhJ2PzGI78NiMHlY+cMQaS0= + M1W3He36ZCbDSOlujVxnWddnw7o= Modules/Instabug.swiftmodule/arm64.swiftinterface - zNx/09ZfsrMWUEY8K7qnCUbnxQA= + h5vNTf9Z7YX4RELXBwEw0xQjiKE= Modules/Instabug.swiftmodule/arm64.swiftmodule - DXbI8EFfOnfinV1jygcTx+tHk+Q= + Djk764TunPgzdQnbCBRFDJEWrPA= Modules/Instabug.swiftmodule/armv7-apple-ios.swiftdoc - Bm603o1KgjSD+P3RdlnTCHaKffU= + BzuzWiOh7FWCao7c/HC+jKKBAyY= Modules/Instabug.swiftmodule/armv7-apple-ios.swiftinterface - Q/GwvPj9bQG3Xp8kAQxYNKVvGho= + ajm1xzHk4gqpRsGZW1D5fqGAPRc= Modules/Instabug.swiftmodule/armv7-apple-ios.swiftmodule - 1dPgxUuY7IxovMzvFD3iPgqMJ4U= + S3S1eHLIl0q4xN0QmWcbneVoqv0= Modules/Instabug.swiftmodule/armv7.swiftdoc - Bm603o1KgjSD+P3RdlnTCHaKffU= + BzuzWiOh7FWCao7c/HC+jKKBAyY= Modules/Instabug.swiftmodule/armv7.swiftinterface - Q/GwvPj9bQG3Xp8kAQxYNKVvGho= + ajm1xzHk4gqpRsGZW1D5fqGAPRc= Modules/Instabug.swiftmodule/armv7.swiftmodule - 1dPgxUuY7IxovMzvFD3iPgqMJ4U= + S3S1eHLIl0q4xN0QmWcbneVoqv0= Modules/module.modulemap @@ -620,77 +577,77 @@ hash - VgR51Yl/ZRrfDI8PVFCx6VmmN+Y= + zfdxXsych0h+NemknT1aefN7Eq8= hash2 - Zexq252t48GPKh05J5DNA+rgW6/dZ1tdLXnE+kh/le0= + ipSrf1ce+2sNVOH1FC28iC+XF1HKBX8MH68S+Ncmes8= Headers/IBGChats.h hash - 1sVFDXS5G78vFSKnAcI+BXLCOVw= + ramIxwGLjs0iDYPHPnDBm0EyzwY= hash2 - bmAq53VXYwWI1Vk1Z+f9rQH2JV7UxWrpICTyjR+2AfY= + BOQ1v96vKejqo28c8o1Dpzq04i9GnlCeGQw3IR1OtM4= Headers/IBGCrashReporting.h hash - QALzrZKePaX5PgvHCBa7wEojGSg= + 2mvDFVWM9Tp/pf/nQABfiJZ7sxI= hash2 - 2Va0RStFeA9ZoXZDyt4p1bMCo3WwtIVFde0BGk1+7mM= + iIyK6spjKuCUZ42DiK6Dymbp/lJlwdoNACXzjBFwg8k= Headers/IBGFeatureRequests.h hash - gZaNShGzF0peU8cBYHe3gLCeRW0= + 0E8vGLip2YvhXfgzBhjDiRt2hZU= hash2 - nA6vDOHdmM63/P3zY2KOyrfrMIOROq0o6s0GolQePZM= + c+utqzsfkMyrn4pos/FoRSwnqctlbezK9SwXBeNZCxY= Headers/IBGLog.h hash - QsoR3YfxrBnhrViUZFdVc7l4opc= + KhMs3Cmn5xTcUNz+cY0tqxltuCA= hash2 - gJStPrMfXeLz46jB+gfDFoXdnnOTHDZP6bR8r+y1iRw= + DBVkPb5Ug5sn8vXgcWfMGPtiQnIGKeFyW/jWP3rqpGk= Headers/IBGNetworkLogger.h hash - kZF6MEl7F3cyIXOgki9fx1nlwDM= + B5b08TfJN2I4zgN38TW687x4mr4= hash2 - z4GfBsoBnv5QJzyW/Ps3NbFWVJpQQ0Xej+isSTWEV5M= + g458/zE/chHYL7zrh+mLc2Jgka4v9qvlYWpmCxvhu4c= Headers/IBGReplies.h hash - 0tPdSh8JacPkTae+Jy3svblOASU= + anhvVG7SJGRLVjxsZ1Y7M2QOv7I= hash2 - 0lyQ8lvkP1XVZLe4Pt9NE+nLlaLzyQ2h+4s9SIxx8Lo= + WboP8uJqBNHmqhztDXpb4QDxTr5A6jSFvTHKk3aeLTE= Headers/IBGReport.h @@ -708,77 +665,66 @@ hash - k9cNsBWL1m3fv9QD46aPTgZbAZA= + zXtCbr9kknYEaJVDpvxr7/o+Wmw= hash2 - YFazJU/IxA42r/ZFuhTpUcbUmBY0gSix9lVwua/TPc0= + RHUKWOTwIl9RXMqP/6vLcucNveYVVApXFBMly6zmAN4= Headers/IBGSurveys.h hash - 2hbqAs0qyxclw+FajgsZC6a20Js= + vniLmmve3Ubi/uSyxCE6kGXL9hY= hash2 - WpaatjzavGyjlZjTORBJpVwGlbJYWzq0/UnYzw5BtyM= + 9azH2KsGaq7sCse3EcCHdja3GkqQ0TgzkbQSCmDQUzo= Headers/IBGTypes.h hash - um/tOs17tlELU80boCToLIPATpI= + hwl8Fnykn6M/4+9/yVmlOVXlovo= hash2 - gymX3qdwtQ4Oyf5mRrZQz0fqESDC3LdoGGOg+MZcP7Q= + k1nm4osnW5mhXY1MBjL/xnp2PqFmZKV8WQqG3sH0598= Headers/Instabug-Swift.h hash - 15fDhQoBLC8UXePUm+/G978dCC8= + WNo0ZjgNBuFwJa90aVntryN9/m8= hash2 - xLmomyXTqf/QYES9iNv1xKIOc+2Gqmu5PW8qwcsCbto= + yjxxgIa2XdtGde9nnVlo5OmPpqZrxBGHjl+OnDSzUrY= Headers/Instabug.h hash - e+84f8wNuXLLydaaCCITuBnikJA= + LYZjLHxv3TxWmM8Wu/0Zn++qi/M= hash2 - /UqOG1KiqIOweDtl2jD8XqbkztYc0btIGoGo9KXvXmM= + kw3uY6Mz7I6YjQY1JBfYJgLHdYA6JNORlpBIrOy6Qwo= Headers/InstabugCore.h hash - FUyamrCzG2v4qRPDJZLCmt2MTOM= + x7l6StVeGT5gO5fqvGJjwpUxOxw= hash2 - oJcKLMVv/rgGxXoARR7PglnPMNJZfY+3iUWSQ9IDd9M= - - - Headers/InstabugStatic-Swift.h - - hash - - zscuRuo2QAfRQUpdy4S/B0wcFNI= - - hash2 - - 26s/X1cgk//g3YwK41ZGvr5KdjOmMJLdoftHN+MHOEM= + X9baqMGWd5hm3qY9HSNFgFdltDrHDAq+hswvrK4XYOc= Headers/UIView+Instabug.h @@ -796,11 +742,11 @@ hash - OzMsgIEDaA/mZmCRkMyDyN16ZsU= + rTS9tQ2aCarSmQ0UD4u/weWVdVo= hash2 - /Qk7UBeiLMr7VfuXkZQUKpcMrTvgYTlOV5Tn20JUCtY= + qnKr6GO6kkMWGB9HlqoAhcawrY2YLNvvm4lPMSsAYII= InstabugResources.bundle/Config.plist @@ -814,345 +760,202 @@ kmHsztpgjvF0JW5f3HdMHm49z1M0CcG8OT1JDQHHE/E= - InstabugResources.bundle/IBGActionSheetCell.nib/objects-13.0+.nib - - hash - - SWoHDqdhkyrygkxt9o0OHkUcIUg= - - hash2 - - oJDct80Y+oVZhiA6fIgPzxeFuFL/yFj0Scpc13c1RNc= - - - InstabugResources.bundle/IBGActionSheetCell.nib/runtime.nib + InstabugResources.bundle/IBGActionSheetCell.nib hash - 0ohO2CO6KRlsyZlVrhiqV6dtlVI= + 2WE2EyfNzMUfp7k+pf6lmCgVADE= hash2 - YN6OWyAy1aLDerzAjqku72ojBEYHUPjyE2T2XQq8IeA= + C3ug4LRd4nNras3xFxH3Df1rrh0GPv+k2jUgEDkuhNY= InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/objects-11.0+.nib hash - z9TfcL/qO12OMmsfMsOGbI5J7NM= + kHnv37rc8oif3Sfw6kuc0ncNj1M= hash2 - FBQDHPzJbARPPLNJWfuzv5VSHE98B7BRGKorVD03eyk= - - - InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/objects-13.0+.nib - - hash - - f1K+MxgK9MUm8VUCPMmc26NqVbU= - - hash2 - - BR6f2sryrZvK3iGQyBzEP2BthmXBrrBy8GwDfc9GqQA= + 62r6ueLQg0ALkxSGN8xP3gCOuaQr5a2H1bjO4eQOvXw= InstabugResources.bundle/IBGActionSheetVC-iPhone.nib/runtime.nib hash - 3Dp4v1pM2L2lbvNck+0gquXQjAQ= + WFx0jnlJ4BmtCEBHbZtrJhOy40M= hash2 - Xa6e4QThkTmCJqdDDQH64gI8SLhCkGeUhBEhNOSEVeY= + 8JCjXi1BJXqsHuQEuCoVTuG/EbRH5EIUdQVMBFlVNLo= InstabugResources.bundle/IBGBugVC-iPhone.nib/objects-11.0+.nib hash - 15Yx6BxrT+x8pgx64GI/2H/LP+g= - - hash2 - - KuXC5mlJ9sLGR4Jz1lduCtkUDNdts49RLC56javBFFE= - - - InstabugResources.bundle/IBGBugVC-iPhone.nib/objects-13.0+.nib - - hash - - 0pyGlOIE0zMdHLlcbwmD7OlxWhc= + nQvRQRUTxJ40oXcaUfkRSIrvrlU= hash2 - zR4fpjzinbvwtTB0n3aEkFOdbRe/SbGPfxkwCCA4y5E= + XvN10DBcntTg8P/Pl2kBk9y4HYt4VWtbGTtxo7W4BEU= InstabugResources.bundle/IBGBugVC-iPhone.nib/runtime.nib hash - Ep2YDvkopbB7h2BIuHl/EKMV0QI= - - hash2 - - ghMoU52IOuGpsW/g9Lyr7JmaBOe1n+v5fa07Dwejj4c= - - - InstabugResources.bundle/IBGChatCell.nib/objects-13.0+.nib - - hash - - MHscG67QFGEOiZKfJCICZyxEeI0= - - hash2 - - oC/pw57djQNh8mX1YuukzjXUIcfk4/ANAzKg+gpy2aM= - - - InstabugResources.bundle/IBGChatCell.nib/runtime.nib - - hash - - w5jypEK6DQekncmPfyo/J6ohWUQ= + wF0WemH0ybYx/l3swqePfbN+B2Q= hash2 - cfjSP/NtJ+jxGSToyesYetgxjYYyP+8/5RJDiAVdR5o= + 2iIVJ8ZMZW5WMAoSwdYpfLv5eE5l6F84Fr6tTZylDX8= - InstabugResources.bundle/IBGChatListVC-iPhone.nib/objects-13.0+.nib + InstabugResources.bundle/IBGChatCell.nib hash - 1zF3HKu/iU3Xuc79EzfPseVch7E= + P8bBYx6eW1NF9e2KTvAhdh6bmgU= hash2 - 8JX9ZqDuOvr27NbKhvcRxvU2/066MPvPPIuc3L51E+4= + hssmiAtOAJNcAZT0cwSyD1KWIOT2ML/GlBtCBGZT47Q= - InstabugResources.bundle/IBGChatListVC-iPhone.nib/runtime.nib + InstabugResources.bundle/IBGChatListVC-iPhone.nib hash - 5xzlYlz597fCPsUq0ot7di5igPY= + hJm5HhYquOX750m+2cDzZ+k2UD8= hash2 - VlFyk2HqMFMRmJ4pqVEXdTRE2b+vJnYUo8RnMWkjjNg= + UNU20xnDkkugUBNNUaEImf/FTvarZts3xv/D89OUgmM= InstabugResources.bundle/IBGChatVC-iPhone.nib/objects-11.0+.nib hash - Qvol2A9UF80WYRnYXv76Llja1a4= + XyVYU0v4qD6aaBy9kGfeuslMcpM= hash2 - WzwGcszwwNT4OXI2l6H4fkkVupQgY2YgvFZXxavkDKA= - - - InstabugResources.bundle/IBGChatVC-iPhone.nib/objects-13.0+.nib - - hash - - 6/DtdlhWf76pzYYCXCeo/oOfL4g= - - hash2 - - 7CBqmMQ3tO5cuK/ydmDINYECS/NPazE5Zfs/mrMriig= + PanIdp6KqLu/HOE4r/i1SyKaXgYTZXsPdzKtA0gtkaQ= InstabugResources.bundle/IBGChatVC-iPhone.nib/runtime.nib hash - iKwqCS55lLqD/+66Ch2kLr2SShU= - - hash2 - - MeQ0qHYPzDp3Y3dBxkNcojb7HeVcVM46Pw8S7w3ETGU= - - - InstabugResources.bundle/IBGFullScreenImageViewController.nib/objects-13.0+.nib - - hash - - WhKQrhgPSjwdXj8Vd11BQThLtdc= + uDqLbte+yZAZLCsgwGpsrWSjlvk= hash2 - oSYWLHHhGG/shNKcbqQiGRaDs+fUjWwj4xOjWXRdaqo= + unCx0w6su3wegLaFaHAGnznnIuO3oc8fGJ5YpfOa+1w= - InstabugResources.bundle/IBGFullScreenImageViewController.nib/runtime.nib + InstabugResources.bundle/IBGFullScreenImageViewController.nib hash - GEYX09qk5WchQT4h7COsCt2LEhg= + RAg5KOpKmpXcggUagYgl+Ph7Vdk= hash2 - tymu/ttSQBB+1+iOX76+ld8B5mgf2JYhrkrTm+oqXSU= + LXmGsg8EPzDWCEge6RrPuQTz5fClWyJxFFJH/ghySTw= - InstabugResources.bundle/IBGPoweredByView.nib/objects-13.0+.nib + InstabugResources.bundle/IBGPoweredByView.nib hash - UsHIfJ1EJiuYB2tQ8vwNkicu3Ok= + BravosJ5ioJFYV5QKYbRF7gjoUA= hash2 - h1zuy4fcG7xCe7WAuwPP6bCKCkv668EHRHWRLJL+wLc= + fUKrY8ColZO8JLivzj31fymVaZiWPyyek2BxZhyhbzc= - InstabugResources.bundle/IBGPoweredByView.nib/runtime.nib + InstabugResources.bundle/IBGPromptCell.nib hash - IwPpwsegzgYoqdA08xL73eeZ4N8= + b4w/xFYnrwsXePpblNfNp6QgB3E= hash2 - HQGrFiZPd56Kghne6xBSOPUpnBQjaiK8QIXYsQYZeTg= + 5vE2mt4vn4Uno4MjpvC1Xfv1qS3XICjgNJRGmbORawY= - InstabugResources.bundle/IBGPromptCell.nib/objects-13.0+.nib + InstabugResources.bundle/IBGReplyView-iPhone.nib hash - oBXb8RlAdCq5/RTEiRndRq8rCnU= + yS1+p6UHDjIvhsZ7ZVoK6rOPgeU= hash2 - ppcl6+Gs7KYGShCoGRA8BX8wDaVH1Rl9KlXdqUmMGRo= + oCjY0AARflOR7KYvL3XKVLcKycZNEX1jWFUDtrs2M04= - InstabugResources.bundle/IBGPromptCell.nib/runtime.nib + InstabugResources.bundle/IBGReportCategoryCell.nib hash - j//OYgV8CXp+iZQrsoJoj2O0JY8= + aUaEbJSnVnIhl0rkdaPHwHfcM/o= hash2 - GU5OH4s+ywrYeiD1UkuAUjQMIgoN3MSQzjv0lObnbFg= - - - InstabugResources.bundle/IBGReplyView-iPhone.nib/objects-13.0+.nib - - hash - - F21Fx2lSQxbUPw3zy7FUt9QoSvM= - - hash2 - - OXmOeGto2znw4I3QOE9qE6LPRC2/H58DolaZ2ZxV2b0= - - - InstabugResources.bundle/IBGReplyView-iPhone.nib/runtime.nib - - hash - - wLgXfBROez6lFDtoD5mVM1P6FbI= - - hash2 - - cFAP4JJzfEakKE+UKm51Tz+H72LCc9rNWhUtcCfsx6c= - - - InstabugResources.bundle/IBGReportCategoryCell.nib/objects-13.0+.nib - - hash - - uTjLwEbxNTMcV4jKawj+bpVW6/A= - - hash2 - - awdwfoHKGcx+d9xm2d/y0EeFKELUluK+Wv7A/Ash+Ak= - - - InstabugResources.bundle/IBGReportCategoryCell.nib/runtime.nib - - hash - - Ujl7DL4weBiW+eNie2qoGKYLkjw= - - hash2 - - Fa2zJWe4qesJzGe6/fAcz7ZpI3f0DXC/SoAFM3+1iTM= + qTTdMuNZ1GiJ3aNosmEcGX5gpOHmomSIupDs8UJvqXk= InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/objects-11.0+.nib hash - 3oJLW/0orYkQjQ91xUBASz6c8A4= + c0NHF8yF4WzKfzBxhmlM2GjrwxI= hash2 - jnqw5MGRDejs86ymUwmqoKDQ9ti8rcLobR1mWFkNP04= - - - InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/objects-13.0+.nib - - hash - - vC+ojEbHc+8H/sLMc3lJcS5kbm0= - - hash2 - - GOcnDaZIdI6J6hCDfMKGF6l3na/zT7vAvFmYwz3iR5Y= + HqcEEP1IEFsXG0hHqS/iWNcDpu21TqEvHvwvf7HG1sk= InstabugResources.bundle/IBGScreenshotVC-iPhone.nib/runtime.nib hash - TgcmXQCkzF63PIzyV9GXRyV4jLY= - - hash2 - - e6ROU7URQazK0y2zQQuDn7EJANn9fY3ml+xja2gtObU= - - - InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib/objects-13.0+.nib - - hash - - mNlemQLgjJsLXIquvxTLEM1bCdo= + bmFQXJklYkdVkC9ThFKVpU+pWBs= hash2 - 9tDsufIMv3OQwZWsb1ck5YOguTbcVroKm49gwWwOLx8= + a3nx5V7OSFrjLKXsKGsCYa6Q7QE3UAA1cYJL6mjS3SM= - InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib/runtime.nib + InstabugResources.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib hash - hihxxH7a+3LEZJbNqrREM3hTpYs= + L1Z3tPPxEM7otluEcl/IhjMx7Dw= hash2 - ScMMiwYE6F3FwVEFldghdFGtykR/053qTvkRDO377ec= + T6sHQM4+1LL4jsa1FfCTXO5EKcMYFwmzsJ39ydKn7B4= InstabugResources.bundle/Info.plist hash - e4BWmHxleHqnsO52N15FJ0hxY8U= + 9rqa6axKfAgnlso3Ol4COKGZx+E= hash2 - 8pqdI4sNElzZVdqEvO8s8drerll/tODrmG/7C3IsDxs= + afTGOQTBfa1S4exGGzNeXl3g3+F2PgTcYPFrwGBYPUs= InstabugResources.bundle/Inject_DSYM_Project-Archive.sh @@ -1269,11 +1072,11 @@ hash - eEgcb/95mDoIuuG6b2vZD7y96e4= + fKrIAPMPM+8gmYBvrP4wdhBxAQE= hash2 - Wk+Hijtk+zf2u9YNeTvjiv1VhHvn45Wwzebks56jnJM= + uMh2cB5TSwNVMpc2rqekd0xYvu69UpdpDf/anqgrzjI= InstabugResources.bundle/InstabugDataModel.momd/InstabugDataModel 2.mom @@ -1379,11 +1182,11 @@ hash - KbBALOpNAfa57V/oNN8sYTqQVXU= + xe0GJTemzySTi+MShrzDUMxQsdQ= hash2 - lwuqF53aQZEY1FOzzWanf3y53y5GLf1zOlaZR2tVdAM= + /DwdSsiocY5uvOLB3Xc4i4VDyIJE4+h2eon/VJIHSAA= InstabugResources.bundle/InstabugSurveysDataModel.momd/InstabugSurveysDataModel.mom @@ -1434,11 +1237,11 @@ hash - qpX9Tuxnn9/OJ9MDKvG3sXl8+OM= + XcyBT0QkhJCcVQCvDmkkaihetgU= hash2 - ZS9HVXQFVYVvnn+WbbrEzdvdyFvjDrnETfhJKxCzIo4= + itey4+18liRKpDT8VU18GVZVJxtrRKNdYTSdFr8U/3s= InstabugResources.bundle/InstabugUserStepsDataModel.momd/UserStepsDataModel.mom @@ -1487,6 +1290,19 @@ optional + InstabugResources.bundle/az.lproj/Localizable.strings + + hash + + lSXaJeFth51mzPTD3C5ygtKzqeg= + + hash2 + + tOG8lhwK8C4+peYCPfbe6Ar0JQIUld0x8qmh4QY5bR0= + + optional + + InstabugResources.bundle/cs.lproj/Localizable.strings hash @@ -1734,6 +1550,17 @@ optional + InstabugResources.bundle/strip-frameworks.sh + + hash + + +MG0vr81f9BYFi8t9r2Wy0CFRAQ= + + hash2 + + EFBdsgIKkcB/ZW5AgcnnL3/o0Bpiv6XiPi3sPZMaPdg= + + InstabugResources.bundle/sv.lproj/Localizable.strings hash @@ -1803,165 +1630,165 @@ hash - Bm603o1KgjSD+P3RdlnTCHaKffU= + BzuzWiOh7FWCao7c/HC+jKKBAyY= hash2 - nvsNYU0TbkuwHsiO2WTxfT8U8FGCqEK6A/2AjxMgvUY= + v+Oc60avgeHgTD7lrWsLQs4CoH7CS9g3LDce2oQcwDk= Modules/Instabug.swiftmodule/arm.swiftinterface hash - Q/GwvPj9bQG3Xp8kAQxYNKVvGho= + ajm1xzHk4gqpRsGZW1D5fqGAPRc= hash2 - +1XLXhqI0qFeKgU+x4FjYl/easumCRZPgHQW7tT41tQ= + XrzGa9Z3czN2yR/GwduIQiZWaW6EKi7P4bzz7u7B9Vo= Modules/Instabug.swiftmodule/arm.swiftmodule hash - 1dPgxUuY7IxovMzvFD3iPgqMJ4U= + S3S1eHLIl0q4xN0QmWcbneVoqv0= hash2 - vyXUv8iAy3o+QePnllf+u0ujkc/hownha0GNMXY2+8g= + dK7GsYM1xq2R2861WEmAMZhkNrcoF49MK95aPo3+L/k= Modules/Instabug.swiftmodule/arm64-apple-ios.swiftdoc hash - JiOOHhJ2PzGI78NiMHlY+cMQaS0= + M1W3He36ZCbDSOlujVxnWddnw7o= hash2 - 8jgz7Cg0+qcyTi69J7tfJgHTq6UlEWJunZE008N2qd4= + HKHpSmpJxMHIPwuQ5eMZCx7yhbAaSQxKy8w7VrRB068= Modules/Instabug.swiftmodule/arm64-apple-ios.swiftinterface hash - zNx/09ZfsrMWUEY8K7qnCUbnxQA= + h5vNTf9Z7YX4RELXBwEw0xQjiKE= hash2 - THC/hpXwkDGkyTUYwgqtTN4TcHWTNvyA+G7b4oQGs6c= + y39daZAPhruhQiIuH6DUdaDMQSjcnvPVnwjVS8da7gc= Modules/Instabug.swiftmodule/arm64-apple-ios.swiftmodule hash - DXbI8EFfOnfinV1jygcTx+tHk+Q= + Djk764TunPgzdQnbCBRFDJEWrPA= hash2 - v7qqWo2OQi6E1UP3W2u3dQIoPgh3J7b53HSy+AEAiYA= + 2n6WphjCK1hZEpKMfRV1Q6+42But9rJWWVKzW0cZKPk= Modules/Instabug.swiftmodule/arm64.swiftdoc hash - JiOOHhJ2PzGI78NiMHlY+cMQaS0= + M1W3He36ZCbDSOlujVxnWddnw7o= hash2 - 8jgz7Cg0+qcyTi69J7tfJgHTq6UlEWJunZE008N2qd4= + HKHpSmpJxMHIPwuQ5eMZCx7yhbAaSQxKy8w7VrRB068= Modules/Instabug.swiftmodule/arm64.swiftinterface hash - zNx/09ZfsrMWUEY8K7qnCUbnxQA= + h5vNTf9Z7YX4RELXBwEw0xQjiKE= hash2 - THC/hpXwkDGkyTUYwgqtTN4TcHWTNvyA+G7b4oQGs6c= + y39daZAPhruhQiIuH6DUdaDMQSjcnvPVnwjVS8da7gc= Modules/Instabug.swiftmodule/arm64.swiftmodule hash - DXbI8EFfOnfinV1jygcTx+tHk+Q= + Djk764TunPgzdQnbCBRFDJEWrPA= hash2 - v7qqWo2OQi6E1UP3W2u3dQIoPgh3J7b53HSy+AEAiYA= + 2n6WphjCK1hZEpKMfRV1Q6+42But9rJWWVKzW0cZKPk= Modules/Instabug.swiftmodule/armv7-apple-ios.swiftdoc hash - Bm603o1KgjSD+P3RdlnTCHaKffU= + BzuzWiOh7FWCao7c/HC+jKKBAyY= hash2 - nvsNYU0TbkuwHsiO2WTxfT8U8FGCqEK6A/2AjxMgvUY= + v+Oc60avgeHgTD7lrWsLQs4CoH7CS9g3LDce2oQcwDk= Modules/Instabug.swiftmodule/armv7-apple-ios.swiftinterface hash - Q/GwvPj9bQG3Xp8kAQxYNKVvGho= + ajm1xzHk4gqpRsGZW1D5fqGAPRc= hash2 - +1XLXhqI0qFeKgU+x4FjYl/easumCRZPgHQW7tT41tQ= + XrzGa9Z3czN2yR/GwduIQiZWaW6EKi7P4bzz7u7B9Vo= Modules/Instabug.swiftmodule/armv7-apple-ios.swiftmodule hash - 1dPgxUuY7IxovMzvFD3iPgqMJ4U= + S3S1eHLIl0q4xN0QmWcbneVoqv0= hash2 - vyXUv8iAy3o+QePnllf+u0ujkc/hownha0GNMXY2+8g= + dK7GsYM1xq2R2861WEmAMZhkNrcoF49MK95aPo3+L/k= Modules/Instabug.swiftmodule/armv7.swiftdoc hash - Bm603o1KgjSD+P3RdlnTCHaKffU= + BzuzWiOh7FWCao7c/HC+jKKBAyY= hash2 - nvsNYU0TbkuwHsiO2WTxfT8U8FGCqEK6A/2AjxMgvUY= + v+Oc60avgeHgTD7lrWsLQs4CoH7CS9g3LDce2oQcwDk= Modules/Instabug.swiftmodule/armv7.swiftinterface hash - Q/GwvPj9bQG3Xp8kAQxYNKVvGho= + ajm1xzHk4gqpRsGZW1D5fqGAPRc= hash2 - +1XLXhqI0qFeKgU+x4FjYl/easumCRZPgHQW7tT41tQ= + XrzGa9Z3czN2yR/GwduIQiZWaW6EKi7P4bzz7u7B9Vo= Modules/Instabug.swiftmodule/armv7.swiftmodule hash - 1dPgxUuY7IxovMzvFD3iPgqMJ4U= + S3S1eHLIl0q4xN0QmWcbneVoqv0= hash2 - vyXUv8iAy3o+QePnllf+u0ujkc/hownha0GNMXY2+8g= + dK7GsYM1xq2R2861WEmAMZhkNrcoF49MK95aPo3+L/k= Modules/module.modulemap diff --git a/ios/RNInstabug/InstabugReactBridge.m b/ios/RNInstabug/InstabugReactBridge.m index 526e5a243d..8ac270c571 100644 --- a/ios/RNInstabug/InstabugReactBridge.m +++ b/ios/RNInstabug/InstabugReactBridge.m @@ -442,6 +442,7 @@ - (NSDictionary *)constantsToExport @"addCommentToFeature": @(IBGActionAddCommentToFeature), @"localeArabic": @(IBGLocaleArabic), + @"localeAzerbaijani": @(IBGLocaleAzerbaijani), @"localeChineseSimplified": @(IBGLocaleChineseSimplified), @"localeChineseTraditional": @(IBGLocaleChineseTraditional), @"localeCzech": @(IBGLocaleCzech), diff --git a/ios/RNInstabug/RCTConvert+InstabugEnums.m b/ios/RNInstabug/RCTConvert+InstabugEnums.m index 4a578f099f..f1046ec652 100644 --- a/ios/RNInstabug/RCTConvert+InstabugEnums.m +++ b/ios/RNInstabug/RCTConvert+InstabugEnums.m @@ -69,6 +69,7 @@ @implementation RCTConvert (InstabugEnums) RCT_ENUM_CONVERTER(IBGLocale, (@{ @"localeArabic": @(IBGLocaleArabic), + @"localeAzerbaijani": @(IBGLocaleAzerbaijani), @"localeChineseSimplified": @(IBGLocaleChineseSimplified), @"localeChineseTraditional": @(IBGLocaleChineseTraditional), @"localeCzech": @(IBGLocaleCzech), diff --git a/package.json b/package.json index 6336dc1151..cbaba84e77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "instabug-reactnative", - "version": "9.1.7", + "version": "9.1.8", "description": "React Native plugin for integrating the Instabug SDK", "main": "index.js", "types": "index.d.ts",