diff --git a/android/build.gradle b/android/build.gradle index bd8d3d9..9bc5b2c 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -21,6 +21,6 @@ android { dependencies { compile 'com.facebook.react:react-native:0.20.+' - compile 'com.instabug.library:instabug:4.3.3' + compile 'com.instabug.library:instabug:4.5.0' } diff --git a/index.js b/index.js index 30f3561..b288a27 100644 --- a/index.js +++ b/index.js @@ -801,6 +801,19 @@ module.exports = { } }, + /** + * Sets the default position at which the Instabug screen recording button will be shown. Different orientations are already handled. + * + * (Default for `position` is `bottomRight`) + * + * @param position is of type IBGPosition `topLeft` to show on the top left of screen , or `bottomRight` to show on the bottom right of scrren. + */ + setVideoRecordingFloatingButtonPosition: function(position) { + if(Platform.OS === 'ios') { + Instabug.setVideoRecordingFloatingButtonPosition(position); + } + }, + /** * The event used to invoke the feedback form * @readonly @@ -892,6 +905,18 @@ module.exports = { right: Instabug.rectMaxXEdge, }, + /** + * Instabug floating buttons positions. + * @readonly + * @enum {number} + */ + IBGPosition: { + bottomRight: Instabug.bottomRight, + topRight: Instabug.topRight, + bottomLeft: Instabug.bottomLeft, + topLeft: Instabug.topLeft + }, + /** * Instabug strings * @readonly diff --git a/ios/Instabug.framework/Headers/Instabug.h b/ios/Instabug.framework/Headers/Instabug.h index ce89d27..8929f34 100644 --- a/ios/Instabug.framework/Headers/Instabug.h +++ b/ios/Instabug.framework/Headers/Instabug.h @@ -10,7 +10,7 @@ #import #import -#import "IBGTypes.h" +#import /** This is the API for using Instabug's SDK. For more details about the SDK integration, @@ -118,6 +118,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r */ + (void)addFileAttachmentWithURL:(NSURL *)fileURL; + /** @brief Add a set of data as a file attachment to be sent with each report. @@ -129,7 +130,6 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r */ +(void)addFileAttachmentWithData:(NSData *)data; - /** @brief Clear list of files to be attached with each report. @@ -451,6 +451,15 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r */ + (void)setFloatingButtonEdge:(CGRectEdge)floatingButtonEdge withTopOffset:(double)floatingButtonOffsetFromTop; +/** + @brief Sets the default position at which the Instabug screen recording button will be shown. Different orientations are already handled. + + @discussion Default for `position` is `bottomRight`. + + @param position `topLeft` to show on the top left of screen , or `bottomRight` to show on the bottom right of scrren. + */ ++ (void)setVideoRecordingFloatingButtonPosition:(IBGPosition)position; + /** @brief Sets the SDK's locale. @@ -630,7 +639,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r @discussion When only a single option is enabled, it become the default invocation mode. If all options are disabled, bug reporting becomes the default invocation mode. - + By default, all three options are enabled. @param bugReportEnabled A boolean to indicate whether bug reports are enabled or disabled. @@ -667,7 +676,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r @brief Remove all extra fields. @discussion Use this method to remove all added extra fields. - */ + */ + (void)removeExtraReportFields; /** @@ -865,7 +874,7 @@ OBJC_EXTERN void IBGLogError(NSString *format, ...) NS_FORMAT_FUNCTION(1, 2); /** @brief Used to reroute all your NSLogs to Instabug to be able to automatically include them with reports. - @discussion For details on how to reroute your NSLogs to Instabug, see https://docs.instabug.com/docs/ios-logging + @discussion For details on how to reroute your NSLogs to Instabug, see http://docs.instabug.com/docs/logging @param format Format string. @param args Arguments list. @@ -1095,7 +1104,7 @@ OBJC_EXTERN void IBGNSLogWithLevel(NSString *format, va_list args, IBGLogLevel l To manually display any available surveys, call `+ [Instabug showSurveyIfAvailable]`. - Defaults to NO. + Defaults to YES. @param autoShowingSurveysEnabled A boolean to indicate whether the surveys auto showing are enabled or not. */ @@ -1148,10 +1157,14 @@ OBJC_EXTERN void IBGNSLogWithLevel(NSString *format, va_list args, IBGLogLevel l /** @brief Sets the verbosity level of logs used to debug the Instabug SDK itself. + + @discussion This API sets the verbosity level of logs used to debug The SDK. The defualt value in debug mode is IBGSDKDebugLogsLevelVerbose and in production is IBGSDKDebugLogsLevelError. @param level Logs verbosity level. */ + (void)setSDKDebugLogsLevel:(IBGSDKDebugLogsLevel)level; @end + + NS_ASSUME_NONNULL_END diff --git a/ios/Instabug.framework/Info.plist b/ios/Instabug.framework/Info.plist index 1c1a840..e75b600 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 5c4858b..00a98ae 100755 Binary files a/ios/Instabug.framework/Instabug and b/ios/Instabug.framework/Instabug differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGActionSheetCell.nib b/ios/Instabug.framework/Instabug.bundle/IBGActionSheetCell.nib deleted file mode 100644 index cf4d6ea..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGActionSheetCell.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGActionSheetVC-iPhone.nib b/ios/Instabug.framework/Instabug.bundle/IBGActionSheetVC-iPhone.nib deleted file mode 100644 index 7efa1e8..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGActionSheetVC-iPhone.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGAttachmentButton.nib b/ios/Instabug.framework/Instabug.bundle/IBGAttachmentButton.nib deleted file mode 100644 index 957448e..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGAttachmentButton.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGBugVC-iPhone.nib b/ios/Instabug.framework/Instabug.bundle/IBGBugVC-iPhone.nib deleted file mode 100644 index 211c340..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGBugVC-iPhone.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGChatCell.nib b/ios/Instabug.framework/Instabug.bundle/IBGChatCell.nib deleted file mode 100644 index 0bbe03b..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGChatCell.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGChatVC-iPhone.nib b/ios/Instabug.framework/Instabug.bundle/IBGChatVC-iPhone.nib deleted file mode 100644 index 531200b..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGChatVC-iPhone.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGChatsVC-iPhone.nib b/ios/Instabug.framework/Instabug.bundle/IBGChatsVC-iPhone.nib deleted file mode 100644 index 6890b0d..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGChatsVC-iPhone.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGFullScreenImageViewController.nib b/ios/Instabug.framework/Instabug.bundle/IBGFullScreenImageViewController.nib deleted file mode 100644 index 6a3fd7e..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGFullScreenImageViewController.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGMessagesView.nib b/ios/Instabug.framework/Instabug.bundle/IBGMessagesView.nib deleted file mode 100644 index 5df4cf2..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGMessagesView.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGPoweredByView.nib b/ios/Instabug.framework/Instabug.bundle/IBGPoweredByView.nib deleted file mode 100644 index 23a148b..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGPoweredByView.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGPromptCell.nib b/ios/Instabug.framework/Instabug.bundle/IBGPromptCell.nib deleted file mode 100644 index d501ab7..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGPromptCell.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGPromptVC-iPhone.nib b/ios/Instabug.framework/Instabug.bundle/IBGPromptVC-iPhone.nib deleted file mode 100644 index ff844c3..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGPromptVC-iPhone.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGReplyView-iPhone.nib b/ios/Instabug.framework/Instabug.bundle/IBGReplyView-iPhone.nib deleted file mode 100644 index ac331dc..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGReplyView-iPhone.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGReportCategoriesVC-iPhone.nib b/ios/Instabug.framework/Instabug.bundle/IBGReportCategoriesVC-iPhone.nib deleted file mode 100644 index 478cdf6..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGReportCategoriesVC-iPhone.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGScreenshotVC-iPhone.nib b/ios/Instabug.framework/Instabug.bundle/IBGScreenshotVC-iPhone.nib deleted file mode 100644 index 25025b6..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGScreenshotVC-iPhone.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGUnnotifiedMessagesAlertView.nib b/ios/Instabug.framework/Instabug.bundle/IBGUnnotifiedMessagesAlertView.nib deleted file mode 100644 index 6169dce..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGUnnotifiedMessagesAlertView.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGVideoPlaybackViewController.nib b/ios/Instabug.framework/Instabug.bundle/IBGVideoPlaybackViewController.nib deleted file mode 100644 index d279907..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGVideoPlaybackViewController.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib b/ios/Instabug.framework/Instabug.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib deleted file mode 100644 index 6183d47..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/Info.plist b/ios/Instabug.framework/Instabug.bundle/Info.plist deleted file mode 100644 index 5576bca..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/Info.plist and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/Inject_DSYM_Project-Archive.sh b/ios/Instabug.framework/Instabug.bundle/Inject_DSYM_Project-Archive.sh deleted file mode 100644 index 3b4110c..0000000 --- a/ios/Instabug.framework/Instabug.bundle/Inject_DSYM_Project-Archive.sh +++ /dev/null @@ -1,15 +0,0 @@ -echo "Instabug: Started inject dSYM and bcsymbolmap inside project archive." - -Instabug_DSYM_PATH=($(find "${PROJECT_DIR}" -name 'Instabug.framework.dSYM')) -if [ ! "${Instabug_DSYM_PATH}" ]; then -echo "Instabug: can not find Instabug.framework.dSYM in project directory." -else -cp -r "${Instabug_DSYM_PATH}" "${ARCHIVE_DSYMS_PATH}" -echo "Instabug: Instabug.framework.dSYM successfully copied in project directory." -fi - -find "${PROJECT_DIR}" -name "*.bcsymbolmap" | (while read -r file -do -cp -r "${file}" "${ARCHIVE_DSYMS_PATH}/../BCSymbolMaps" -done) -echo "Instabug: Injecting dSYM and bcsymbolmap inside project archive complete." diff --git a/ios/Instabug.framework/Instabug.bundle/Whitebubble-IBGColorThemeDark.png b/ios/Instabug.framework/Instabug.bundle/Whitebubble-IBGColorThemeDark.png deleted file mode 100644 index ed31c03..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/Whitebubble-IBGColorThemeDark.png and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/Whitebubble-IBGColorThemeDark@2x.png b/ios/Instabug.framework/Instabug.bundle/Whitebubble-IBGColorThemeDark@2x.png deleted file mode 100644 index 72db9ee..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/Whitebubble-IBGColorThemeDark@2x.png and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/Whitebubble-IBGColorThemeDark@3x.png b/ios/Instabug.framework/Instabug.bundle/Whitebubble-IBGColorThemeDark@3x.png deleted file mode 100644 index 61e223c..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/Whitebubble-IBGColorThemeDark@3x.png and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/_CodeSignature/CodeDirectory b/ios/Instabug.framework/Instabug.bundle/_CodeSignature/CodeDirectory deleted file mode 100644 index 6769973..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/_CodeSignature/CodeDirectory and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/_CodeSignature/CodeRequirements b/ios/Instabug.framework/Instabug.bundle/_CodeSignature/CodeRequirements deleted file mode 100644 index dbf9d61..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/_CodeSignature/CodeRequirements and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/_CodeSignature/CodeRequirements-1 b/ios/Instabug.framework/Instabug.bundle/_CodeSignature/CodeRequirements-1 deleted file mode 100644 index 99f46ed..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/_CodeSignature/CodeRequirements-1 and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/_CodeSignature/CodeSignature b/ios/Instabug.framework/Instabug.bundle/_CodeSignature/CodeSignature deleted file mode 100644 index e69de29..0000000 diff --git a/ios/Instabug.framework/Instabug.bundle/ar.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/ar.lproj/Localizable.strings deleted file mode 100644 index 37c5c80..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/ar.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/archived-expanded-entitlements.xcent b/ios/Instabug.framework/Instabug.bundle/archived-expanded-entitlements.xcent deleted file mode 100644 index 0278a7a..0000000 --- a/ios/Instabug.framework/Instabug.bundle/archived-expanded-entitlements.xcent +++ /dev/null @@ -1,12 +0,0 @@ - - - - - application-identifier - 56S6Q9SA8U.com.Instabug - keychain-access-groups - - 56S6Q9SA8U.com.Instabug - - - diff --git a/ios/Instabug.framework/Instabug.bundle/cs.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/cs.lproj/Localizable.strings deleted file mode 100644 index 300092e..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/cs.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/da.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/da.lproj/Localizable.strings deleted file mode 100644 index 4fa0399..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/da.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/de.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/de.lproj/Localizable.strings deleted file mode 100644 index 862bad8..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/de.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/en.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/en.lproj/Localizable.strings deleted file mode 100644 index ac8182a..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/en.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/es.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/es.lproj/Localizable.strings deleted file mode 100644 index 881401b..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/es.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/fr.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/fr.lproj/Localizable.strings deleted file mode 100644 index ec2ef78..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/fr.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/graybubble.png b/ios/Instabug.framework/Instabug.bundle/graybubble.png deleted file mode 100644 index 92b5d3a..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/graybubble.png and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/graybubble@2x.png b/ios/Instabug.framework/Instabug.bundle/graybubble@2x.png deleted file mode 100644 index 718a49d..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/graybubble@2x.png and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/graybubble@3x.png b/ios/Instabug.framework/Instabug.bundle/graybubble@3x.png deleted file mode 100644 index d43d65f..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/graybubble@3x.png and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/it.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/it.lproj/Localizable.strings deleted file mode 100644 index da01e4c..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/it.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/ja.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/ja.lproj/Localizable.strings deleted file mode 100644 index ebbcf1f..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/ja.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/ko.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/ko.lproj/Localizable.strings deleted file mode 100644 index f5d71ea..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/ko.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/nb.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/nb.lproj/Localizable.strings deleted file mode 100644 index 0a38aba..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/nb.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/nl.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/nl.lproj/Localizable.strings deleted file mode 100644 index d209ded..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/nl.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/pl.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/pl.lproj/Localizable.strings deleted file mode 100644 index 7c2d147..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/pl.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/pt-BR.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/pt-BR.lproj/Localizable.strings deleted file mode 100644 index 83da2e2..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/pt-BR.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/pt-PT.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/pt-PT.lproj/Localizable.strings deleted file mode 100644 index 33ef3c8..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/pt-PT.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/ru.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/ru.lproj/Localizable.strings deleted file mode 100644 index ccccce4..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/ru.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/sk.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/sk.lproj/Localizable.strings deleted file mode 100644 index 06a0eec..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/sk.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/sv.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/sv.lproj/Localizable.strings deleted file mode 100644 index a573c89..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/sv.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/tr.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/tr.lproj/Localizable.strings deleted file mode 100644 index de1c2eb..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/tr.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/zh-Hans.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/zh-Hans.lproj/Localizable.strings deleted file mode 100644 index 71e6164..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/zh-Hans.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/zh-Hant-TW.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/zh-Hant-TW.lproj/Localizable.strings deleted file mode 100644 index a7ddeb1..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/zh-Hant-TW.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/Instabug.bundle/zh-Hant.lproj/Localizable.strings b/ios/Instabug.framework/Instabug.bundle/zh-Hant.lproj/Localizable.strings deleted file mode 100644 index 1a74730..0000000 Binary files a/ios/Instabug.framework/Instabug.bundle/zh-Hant.lproj/Localizable.strings and /dev/null differ diff --git a/ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel 9.mom b/ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel 9.mom deleted file mode 100644 index aa45220..0000000 Binary files a/ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel 9.mom and /dev/null differ diff --git a/ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel 9.omo b/ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel 9.omo deleted file mode 100644 index eca257f..0000000 Binary files a/ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel 9.omo and /dev/null differ diff --git a/ios/Instabug.framework/InstabugDataModel.momd/VersionInfo.plist b/ios/Instabug.framework/InstabugDataModel.momd/VersionInfo.plist deleted file mode 100644 index 82cf64a..0000000 Binary files a/ios/Instabug.framework/InstabugDataModel.momd/VersionInfo.plist and /dev/null differ diff --git a/ios/Instabug.framework/_CodeSignature/CodeResources b/ios/Instabug.framework/_CodeSignature/CodeResources index 92f0463..d778cee 100644 --- a/ios/Instabug.framework/_CodeSignature/CodeResources +++ b/ios/Instabug.framework/_CodeSignature/CodeResources @@ -4,467 +4,13 @@ files - Headers/IBGTypes.h - - sBiCx3U+6D0f33bk5EDnHNXqykQ= - Headers/Instabug.h - /yuvW+Dk/5YOm7SRUBLmmEJnsC8= + BlS8ApBS48uJtwvQ9ZMfIgPrT+E= Info.plist - R1kGd+QqrimmQ0OPkOP2YNpgOU4= - - Instabug.bundle/IBGActionSheetCell.nib - - BhJGOezBQerbNCuuQp9f/fql1uw= - - Instabug.bundle/IBGActionSheetVC-iPhone.nib - - CpY/5Zxem1t9BJ6aFzUFzodm48s= - - Instabug.bundle/IBGAttachmentButton.nib - - 6OviO1fqjTtvyPjdu06nIwyMzuY= - - Instabug.bundle/IBGBugVC-iPhone.nib - - X7e1LhsdTD+s+DVcNe3rY3YtCIU= - - Instabug.bundle/IBGChatCell.nib - - 163K3LscWxLVtsK7WYEDw+Dyj2Y= - - Instabug.bundle/IBGChatVC-iPhone.nib - - Pp+HzqhSp/RyVYNX61HKZ/rMNQc= - - Instabug.bundle/IBGChatsVC-iPhone.nib - - iwu/l18x2g48ivZZMsb9JA/DWB0= - - Instabug.bundle/IBGFullScreenImageViewController.nib - - Q2nq4ArBngwaUyUEVW3TtREw4Mk= - - Instabug.bundle/IBGMessagesView.nib - - z1TwzRYe9lGnNPjDEHY7jRc/TzY= - - Instabug.bundle/IBGPoweredByView.nib - - 91c0MRlnhFmN3GmJNuk7V1zQ4io= - - Instabug.bundle/IBGPromptCell.nib - - b4S5OKN3OmeWkvXuWd+OVbnZ6/0= - - Instabug.bundle/IBGPromptVC-iPhone.nib - - TOuczB/NsVJUyAxXSnVDjBAkIOY= - - Instabug.bundle/IBGReplyView-iPhone.nib - - 48rj+YxG8sNJJKJWksVSVNXJrpI= - - Instabug.bundle/IBGReportCategoriesVC-iPhone.nib - - iD8WhFNqjltXL3jQtu++VRuego8= - - Instabug.bundle/IBGScreenshotVC-iPhone.nib - - C+Ea9y6dYH2XC9Td5sieW7rZDuM= - - Instabug.bundle/IBGUnnotifiedMessagesAlertView.nib - - MRsP5zUTsHbmfcOGuedJOibVUZU= - - Instabug.bundle/IBGVideoPlaybackViewController.nib - - eWnWPv5T7fOFob11ZqEGS8O4cVw= - - Instabug.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib - - qGwXiBppNr1NPoaxp2m1ISqz/5M= - - Instabug.bundle/InAppScreenshotPlaceholder.png - - HOSKth5XQkDff9tFmldWmGn8Hgo= - - Instabug.bundle/InAppScreenshotPlaceholder@2x.png - - eWKBYrvJ1SvSGwBVVMDUXYZHfSs= - - Instabug.bundle/InAppScreenshotPlaceholder@3x.png - - vPMTZ7x1ajld6lZKnYBFPkqZ/HQ= - - Instabug.bundle/InAppVideoPlaceholder.png - - KVYb6CTvuGiS4gT8k80zjDqvu3U= - - Instabug.bundle/InAppVideoPlaceholder@2x.png - - Mb0xOVHHZ+Vw6jxY9fgIiPKQVZY= - - Instabug.bundle/InAppVideoPlaceholder@3x.png - - 56rCm7J2JRzr1xEuD+hSNK8Q6l8= - - Instabug.bundle/Info.plist - - H3X8/QbaCIWssxnkRSj/dlPo5eI= - - Instabug.bundle/Inject_DSYM_Project-Archive.sh - - 8wtoID7+FOFvFRKACdrJr0HYAqI= - - Instabug.bundle/Instabug_dsym_upload.sh - - 8GMHafrlrbZWGm/GX7QvLV0bhk0= - - Instabug.bundle/Whitebubble-IBGColorThemeDark.png - - sjQJ7QcC6F1rW/FNrv8jrMa56WM= - - Instabug.bundle/Whitebubble-IBGColorThemeDark@2x.png - - I1kWsWsRnk4EZlsGioXFCGg7XYI= - - Instabug.bundle/Whitebubble-IBGColorThemeDark@3x.png - - 9W3OIH0EkHGX52vF5bFCnaTejME= - - Instabug.bundle/_CodeSignature/CodeDirectory - - B7n9RTJxpqOWCR86mBxmOzISmEU= - - Instabug.bundle/_CodeSignature/CodeRequirements - - OnX22wWFKRSOFN1+obRynMCeyXM= - - Instabug.bundle/_CodeSignature/CodeRequirements-1 - - 7mblhEwgakS4cPfnoRpE1ZuA+ks= - - Instabug.bundle/_CodeSignature/CodeResources - - T6uVuU0K0pmEPPuci0JNs9/6TUM= - - Instabug.bundle/_CodeSignature/CodeSignature - - 2jmj7l5rSw0yVb/vlWAYkK/YBwk= - - Instabug.bundle/ar.lproj/Localizable.strings - - hash - - KWn5+nrAdijyaSwpu3z6LouJVkY= - - optional - - - Instabug.bundle/archived-expanded-entitlements.xcent - - 3Xqvtgf3XLNtaSSc1u62jafwEhM= - - Instabug.bundle/audio_placeholder.png - - 3+oGy33V8vSdFakADaGv9ZV9NuQ= - - Instabug.bundle/audio_placeholder@2x.png - - P6Yq7OsB5K9YWbRokLO8jGuCMHw= - - Instabug.bundle/audio_placeholder_3x.png - - 25nuVXAY+hsDRZ1XFCpONZGqjeg= - - Instabug.bundle/cs.lproj/Localizable.strings - - hash - - ryIGbVy+KMxPdfAzD2abqckhg54= - - optional - - - Instabug.bundle/da.lproj/Localizable.strings - - hash - - nSSw5o+nuHFcy5Bt6sklgveyJ1M= - - optional - - - Instabug.bundle/de.lproj/Localizable.strings - - hash - - 4uCSLktLQcN7TB9RDsnWZFR7eWg= - - optional - - - Instabug.bundle/en.lproj/Localizable.strings - - hash - - GD+Bcioe4SeTImCDNxPVoLv5t0w= - - optional - - - Instabug.bundle/es.lproj/Localizable.strings - - hash - - O/jdosx4ExenJ489tAMY9KIoZcA= - - optional - - - Instabug.bundle/fr.lproj/Localizable.strings - - hash - - T7q3M6a/bBN0lwiDy2TUPrg4MGg= - - optional - - - Instabug.bundle/graybubble.png - - HgepOyUGTD4mZnbrszpj2t/Eshk= - - Instabug.bundle/graybubble@2x.png - - dhrxuLbN0liUnJdIwFzFgotznRc= - - Instabug.bundle/graybubble@3x.png - - iKGeUcXkI1c+QOjGJGsPpbWjRvE= - - Instabug.bundle/instabuglogo.png - - Jtxj3MhChQ1V22rxVAPSwnlbrCM= - - Instabug.bundle/instabuglogo@2x.png - - PP7831qMZxUptxJLwoOsHeAFmoI= - - Instabug.bundle/instabuglogo@3x.png - - lmh2umwwG0MY1VnHujHEExCE7fE= - - Instabug.bundle/it.lproj/Localizable.strings - - hash - - lGVLtXcg7c6d7kH9fIHJNU9gYrM= - - optional - - - Instabug.bundle/ja.lproj/Localizable.strings - - hash - - Af5YNQZVjz0idTgZ3faWGPfqTtE= - - optional - - - Instabug.bundle/ko.lproj/Localizable.strings - - hash - - vkJBLbx1wv0tkoDXuSqQPQV4pDw= - - optional - - - Instabug.bundle/nb.lproj/Localizable.strings - - hash - - 1z20T5K1ilr2PlgcI12YdfcwF8c= - - optional - - - Instabug.bundle/nl.lproj/Localizable.strings - - hash - - 2OshnDUJy7mDZMHrv5IckZnQfTw= - - optional - - - Instabug.bundle/notificationEdge.png - - 5hW9jlcAUFQogrki/oNZ2/zOtAg= - - Instabug.bundle/notificationEdge@2x.png - - mu3Oj3n0J3cCW+rAq8DYTv9vn+Q= - - Instabug.bundle/notificationEdge@3x.png - - 8pXpEp8/k5MOGMQzWc2Cah6aDhw= - - Instabug.bundle/pl.lproj/Localizable.strings - - hash - - VG4yh4SbQPLTa+KtXjcHjeVhUVE= - - optional - - - Instabug.bundle/powerplushome.png - - E6lczvrh5rGRhTobDfElfaQTY3I= - - Instabug.bundle/pt-BR.lproj/Localizable.strings - - hash - - Y0JxWo97jDHPDvgg+KWtBo4RFF4= - - optional - - - Instabug.bundle/pt-PT.lproj/Localizable.strings - - hash - - R6XAkUPlsljuCz2psGujmPFog/c= - - optional - - - Instabug.bundle/ru.lproj/Localizable.strings - - hash - - 0uEy9Cq0/WD6uO8OF7n3zYc04lY= - - optional - - - Instabug.bundle/shake.png - - jlJ2hXPccgkrIxsSRYSmEFvCVQ4= - - Instabug.bundle/sk.lproj/Localizable.strings - - hash - - 8luHIEbeQKGS+FdQrIM1imCxZTY= - - optional - - - Instabug.bundle/strip-frameworks.sh - - +MG0vr81f9BYFi8t9r2Wy0CFRAQ= - - Instabug.bundle/sv.lproj/Localizable.strings - - hash - - 9vRBpjShceOJO4aCs432AWShvJM= - - optional - - - Instabug.bundle/tap.png - - lsfOQn2WG3542sXrYTI76mUiCv0= - - Instabug.bundle/tap@2x.png - - WwJ7M3Z4tXL501W3SPAJyadCeQI= - - Instabug.bundle/tap@3x.png - - wmWt1c+K/cWYo3uVqdp/3VurOXg= - - Instabug.bundle/tr.lproj/Localizable.strings - - hash - - 39XlUZSS1NpPaV+1uY+YGCsVLSY= - - optional - - - Instabug.bundle/twofingers.png - - LlUqLkqlVvLDDjCYb2r3znHxNP8= - - Instabug.bundle/zh-Hans.lproj/Localizable.strings - - hash - - yvG8n63MfAIGfQkYv8RguGC3tGU= - - optional - - - Instabug.bundle/zh-Hant-TW.lproj/Localizable.strings - - hash - - 0twTLP7pldYgFggEKhXl/39b0qQ= - - optional - - - Instabug.bundle/zh-Hant.lproj/Localizable.strings - - hash - - BEBSr+QiqJo87G+BnqJEE3jBKpo= - - optional - - - InstabugDataModel.momd/InstabugDataModel 2.mom - - MAXC3qUm4Hz0GxTPshNHNpdrDaQ= - - InstabugDataModel.momd/InstabugDataModel 3.mom - - jrqCkVaU14U8RPQBdO9pS/0Pk4I= - - InstabugDataModel.momd/InstabugDataModel 7.mom - - 3sQ76HG4DgxopC8dddbOkaenrF8= - - InstabugDataModel.momd/InstabugDataModel 8.mom - - Z8qLTaCqiQMWebQMUeW3XlVxQSc= - - InstabugDataModel.momd/InstabugDataModel 9.mom - - Z8qLTaCqiQMWebQMUeW3XlVxQSc= - - InstabugDataModel.momd/InstabugDataModel 9.omo - - DzpBtW2c0Nrvm7pPikl+MUBS1+M= - - InstabugDataModel.momd/InstabugDataModel.mom - - 6kSXQ1euyJl1gPfPnihcaMR42X4= - - InstabugDataModel.momd/VersionInfo.plist - - 9Mt9wz9T8DT67ts/30LorRgh1K4= + A3W0mt72TrSwRZWHzMvJIvEtP9I= Modules/module.modulemap @@ -473,1005 +19,15 @@ files2 - Headers/IBGTypes.h - - hash - - sBiCx3U+6D0f33bk5EDnHNXqykQ= - - hash2 - - 4fXrJDRkEZ3GX+K+Haf0yWWQRHbtDN76dO0gL+s7PJs= - - Headers/Instabug.h hash - /yuvW+Dk/5YOm7SRUBLmmEJnsC8= + BlS8ApBS48uJtwvQ9ZMfIgPrT+E= hash2 - 84zp+umrUaxcfjd/jBwcD77RbXFBV+L2r6XW7VqmiqA= - - - Instabug.bundle/IBGActionSheetCell.nib - - hash - - BhJGOezBQerbNCuuQp9f/fql1uw= - - hash2 - - 9QQJS5xrsdHEI3fpcWqfJDUmRnhBTrjI8LCqOoA9cnY= - - - Instabug.bundle/IBGActionSheetVC-iPhone.nib - - hash - - CpY/5Zxem1t9BJ6aFzUFzodm48s= - - hash2 - - csiORYSILgAdj+k6vDzDwwRUUj4OjPj9uy/ApjikqlQ= - - - Instabug.bundle/IBGAttachmentButton.nib - - hash - - 6OviO1fqjTtvyPjdu06nIwyMzuY= - - hash2 - - nY9zeh07/h/L+iNS1LbAuTFOenRh2goYhZnklaYRcMs= - - - Instabug.bundle/IBGBugVC-iPhone.nib - - hash - - X7e1LhsdTD+s+DVcNe3rY3YtCIU= - - hash2 - - 0gU4EuKjHscWOHcX6Y/tHU3rcF4Q/qN0y1CwjlMVL3g= - - - Instabug.bundle/IBGChatCell.nib - - hash - - 163K3LscWxLVtsK7WYEDw+Dyj2Y= - - hash2 - - QQSGBju4iCxOXaZJRy3pQfLFLnoBsrb2ywQepfDx11g= - - - Instabug.bundle/IBGChatVC-iPhone.nib - - hash - - Pp+HzqhSp/RyVYNX61HKZ/rMNQc= - - hash2 - - 5i7KpqtxUb05EcNN+KdO1qUr3H9uzxaEW+HWwntCusw= - - - Instabug.bundle/IBGChatsVC-iPhone.nib - - hash - - iwu/l18x2g48ivZZMsb9JA/DWB0= - - hash2 - - M33rkq2gpZkdDSCayjuIDpXbOvqAqx0VnEBIAoS33kw= - - - Instabug.bundle/IBGFullScreenImageViewController.nib - - hash - - Q2nq4ArBngwaUyUEVW3TtREw4Mk= - - hash2 - - qzGG8x7o9pLJJDM/Cql0JoMYsiUy+B+o4aDsC3NZnfc= - - - Instabug.bundle/IBGMessagesView.nib - - hash - - z1TwzRYe9lGnNPjDEHY7jRc/TzY= - - hash2 - - PUe8uEzg0nIUyn6mbrqleF8sEhGqlkmWbOtYim1KZSI= - - - Instabug.bundle/IBGPoweredByView.nib - - hash - - 91c0MRlnhFmN3GmJNuk7V1zQ4io= - - hash2 - - X8oIwA6xeu3Q9Ln1ceJ3nCTzH7qkg8WbDu6qj65056s= - - - Instabug.bundle/IBGPromptCell.nib - - hash - - b4S5OKN3OmeWkvXuWd+OVbnZ6/0= - - hash2 - - fo1lXMAu7pSL4fVwWNtMI2xulE+BKoNd2YUdLgy1cLk= - - - Instabug.bundle/IBGPromptVC-iPhone.nib - - hash - - TOuczB/NsVJUyAxXSnVDjBAkIOY= - - hash2 - - NMd/13iB48UUt+Z9bHX3nZqnz9kHDAEZ8Cahj5plTIk= - - - Instabug.bundle/IBGReplyView-iPhone.nib - - hash - - 48rj+YxG8sNJJKJWksVSVNXJrpI= - - hash2 - - gUIT0cvKURNz8QKaImzC35LMJHie1+02lyMs2bU9B3s= - - - Instabug.bundle/IBGReportCategoriesVC-iPhone.nib - - hash - - iD8WhFNqjltXL3jQtu++VRuego8= - - hash2 - - OMCGsy4iEFn+8ZVYsBVUHp2Er7+ZfxK1ODlClLE3KdM= - - - Instabug.bundle/IBGScreenshotVC-iPhone.nib - - hash - - C+Ea9y6dYH2XC9Td5sieW7rZDuM= - - hash2 - - PaMpQZVw/x+c9zSfSeiWnMYdG5AQHDM8uCg+EShnYuQ= - - - Instabug.bundle/IBGUnnotifiedMessagesAlertView.nib - - hash - - MRsP5zUTsHbmfcOGuedJOibVUZU= - - hash2 - - gZbd8YOmmdQtGCi8j2dZdq2Oqrrbr7eLDTf6h3bmSnQ= - - - Instabug.bundle/IBGVideoPlaybackViewController.nib - - hash - - eWnWPv5T7fOFob11ZqEGS8O4cVw= - - hash2 - - m4l3px6fXReYYUHAtqYirHqCICqpeoB3ubU9aOG9DtY= - - - Instabug.bundle/IBGVoiceNoteRecordingViewController-iPhone.nib - - hash - - qGwXiBppNr1NPoaxp2m1ISqz/5M= - - hash2 - - QTRw1dtWR/85kr7WiOV6xAlMV8MIFjNij19BsH36zK4= - - - Instabug.bundle/InAppScreenshotPlaceholder.png - - hash - - HOSKth5XQkDff9tFmldWmGn8Hgo= - - hash2 - - 11Q0Gyi7L9/TExglLJ5j8IM5/qCxEfosw6PHmROm3lE= - - - Instabug.bundle/InAppScreenshotPlaceholder@2x.png - - hash - - eWKBYrvJ1SvSGwBVVMDUXYZHfSs= - - hash2 - - lt21paXEdt248lh94VaDnMFTb5aAgt2+CXVrbqU+27s= - - - Instabug.bundle/InAppScreenshotPlaceholder@3x.png - - hash - - vPMTZ7x1ajld6lZKnYBFPkqZ/HQ= - - hash2 - - OfDSfamjq9+XqbLnZUsPpLkO/LQFKvHmgCvTO58Uvfw= - - - Instabug.bundle/InAppVideoPlaceholder.png - - hash - - KVYb6CTvuGiS4gT8k80zjDqvu3U= - - hash2 - - 7yDqNCUjLhgzukW90HlMsHd0XdIUFdXUQjgb7Y8/mcc= - - - Instabug.bundle/InAppVideoPlaceholder@2x.png - - hash - - Mb0xOVHHZ+Vw6jxY9fgIiPKQVZY= - - hash2 - - vxOMc61ZHFLiAgND2fIvCkw2BfVTbiVtFE4VjpnL89c= - - - Instabug.bundle/InAppVideoPlaceholder@3x.png - - hash - - 56rCm7J2JRzr1xEuD+hSNK8Q6l8= - - hash2 - - uuxuzAZ0PRllksjhA4a5F7OFbZmW18G+uO4WkBIyapk= - - - Instabug.bundle/Info.plist - - hash - - H3X8/QbaCIWssxnkRSj/dlPo5eI= - - hash2 - - ErKRTqU4zQ+5vwviem8iWf39rb0TzO3CJVN9YJsXWWs= - - - Instabug.bundle/Inject_DSYM_Project-Archive.sh - - hash - - 8wtoID7+FOFvFRKACdrJr0HYAqI= - - hash2 - - yGgIQMyf02kGoj+xSvmxE8E3F8tPdMlbIKaJymrivAA= - - - Instabug.bundle/Instabug_dsym_upload.sh - - hash - - 8GMHafrlrbZWGm/GX7QvLV0bhk0= - - hash2 - - tWvdqWJJcDGIwI5ts3ahfuvmALZJHFLPaVU3gAALXv4= - - - Instabug.bundle/Whitebubble-IBGColorThemeDark.png - - hash - - sjQJ7QcC6F1rW/FNrv8jrMa56WM= - - hash2 - - vfUSAFMOq/B6A68lX2UOVfM19z/oPI3WLg4wFXK2V6Q= - - - Instabug.bundle/Whitebubble-IBGColorThemeDark@2x.png - - hash - - I1kWsWsRnk4EZlsGioXFCGg7XYI= - - hash2 - - laPO0qABoKYXhHFxAkkzuqz4M30f94bETxxzgWbt7iI= - - - Instabug.bundle/Whitebubble-IBGColorThemeDark@3x.png - - hash - - 9W3OIH0EkHGX52vF5bFCnaTejME= - - hash2 - - iHy4sUUGRHB3iqblX4ETboZqS7aeRWyuXKcsWfXkB2Y= - - - Instabug.bundle/_CodeSignature/CodeDirectory - - hash - - B7n9RTJxpqOWCR86mBxmOzISmEU= - - hash2 - - azwnRc6ncKda5JeEFgOMkKGxZirzDmkDOD4bPHRPdPI= - - - Instabug.bundle/_CodeSignature/CodeRequirements - - hash - - OnX22wWFKRSOFN1+obRynMCeyXM= - - hash2 - - mHkgkE6rZQ51eIwFSqCwUk5qgL/HGqMt+NI3phdD+YY= - - - Instabug.bundle/_CodeSignature/CodeRequirements-1 - - hash - - 7mblhEwgakS4cPfnoRpE1ZuA+ks= - - hash2 - - wMCG05wz9t85FO7gZXl7yVYmU2ZuhAALUTPxc4IIX+w= - - - Instabug.bundle/_CodeSignature/CodeResources - - hash - - T6uVuU0K0pmEPPuci0JNs9/6TUM= - - hash2 - - KdVmDRUos9x0loKVbPxNS9tuoOSCSH1plaPLywwH+QA= - - - Instabug.bundle/_CodeSignature/CodeSignature - - hash - - 2jmj7l5rSw0yVb/vlWAYkK/YBwk= - - hash2 - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - - - Instabug.bundle/ar.lproj/Localizable.strings - - hash - - KWn5+nrAdijyaSwpu3z6LouJVkY= - - hash2 - - yRcp9yCvtc2f61e09EbUHOoMl3ow/tRgcgkOKx4ws14= - - optional - - - Instabug.bundle/archived-expanded-entitlements.xcent - - hash - - 3Xqvtgf3XLNtaSSc1u62jafwEhM= - - hash2 - - 0RGGQX6lxoslENAJib3EpIDnwlT2EBWr9hUjKTuFoFw= - - - Instabug.bundle/audio_placeholder.png - - hash - - 3+oGy33V8vSdFakADaGv9ZV9NuQ= - - hash2 - - uR2sm5aBpJ0FCuYZG6pbWj3ujhVsUaZZjtPAza5MvNY= - - - Instabug.bundle/audio_placeholder@2x.png - - hash - - P6Yq7OsB5K9YWbRokLO8jGuCMHw= - - hash2 - - zgYDKDuJNsrpNWw/lxf9v9CaomGWmSqFG0aYkpN+Kd4= - - - Instabug.bundle/audio_placeholder_3x.png - - hash - - 25nuVXAY+hsDRZ1XFCpONZGqjeg= - - hash2 - - G+j3a+hUz9UhMj4N5Xc9TICpf+q0UhrgdsNj3AVE6gk= - - - Instabug.bundle/cs.lproj/Localizable.strings - - hash - - ryIGbVy+KMxPdfAzD2abqckhg54= - - hash2 - - beYRAXoRZwqP3MDdO3JyC8HfDViY/l/t/1x5I8ByGd0= - - optional - - - Instabug.bundle/da.lproj/Localizable.strings - - hash - - nSSw5o+nuHFcy5Bt6sklgveyJ1M= - - hash2 - - w7k2wnop8IbEAH4JdzYSoLKUs0JGQq3fuyyVQXIVJik= - - optional - - - Instabug.bundle/de.lproj/Localizable.strings - - hash - - 4uCSLktLQcN7TB9RDsnWZFR7eWg= - - hash2 - - VRxO0/2J3oulhZ3eiT8LDHZMipsPccHDY6uqXvz3eBQ= - - optional - - - Instabug.bundle/en.lproj/Localizable.strings - - hash - - GD+Bcioe4SeTImCDNxPVoLv5t0w= - - hash2 - - bZnZYU1MHLvi3OdFaVlK8avcf231luyWu+8bXoqqReg= - - optional - - - Instabug.bundle/es.lproj/Localizable.strings - - hash - - O/jdosx4ExenJ489tAMY9KIoZcA= - - hash2 - - tG9BNt1o6fe7DHxfPbKf5qK0KU98Kkatf2WKlhjFo8s= - - optional - - - Instabug.bundle/fr.lproj/Localizable.strings - - hash - - T7q3M6a/bBN0lwiDy2TUPrg4MGg= - - hash2 - - 38phdwX0jMcn/j+XXzxqQoilS5OKpT36ZVMNINmkFoo= - - optional - - - Instabug.bundle/graybubble.png - - hash - - HgepOyUGTD4mZnbrszpj2t/Eshk= - - hash2 - - fuWm5+fJjFcqR4J3f17a2Cs1MVObsKIh5liM2q4RUBo= - - - Instabug.bundle/graybubble@2x.png - - hash - - dhrxuLbN0liUnJdIwFzFgotznRc= - - hash2 - - JszTRVFR3t29HGMps5W428lS0WDdGVhxqAROjaG2Ung= - - - Instabug.bundle/graybubble@3x.png - - hash - - iKGeUcXkI1c+QOjGJGsPpbWjRvE= - - hash2 - - pdcfAAUkKo3f3kwbpKoZMMQ4wDzsbgr4uts50tKZsYg= - - - Instabug.bundle/instabuglogo.png - - hash - - Jtxj3MhChQ1V22rxVAPSwnlbrCM= - - hash2 - - dg6MYRybgQJZXYS7jfs1Q8zFNdNUva5nbeB5E2lHOXA= - - - Instabug.bundle/instabuglogo@2x.png - - hash - - PP7831qMZxUptxJLwoOsHeAFmoI= - - hash2 - - C7I+80x3ClRk/QsR+mYUtfdRkM/w2vBmNnJNKPPjES0= - - - Instabug.bundle/instabuglogo@3x.png - - hash - - lmh2umwwG0MY1VnHujHEExCE7fE= - - hash2 - - 29w1Zps0gymfoh1645/0cMTVucMlfjSyX6CT46+JnpA= - - - Instabug.bundle/it.lproj/Localizable.strings - - hash - - lGVLtXcg7c6d7kH9fIHJNU9gYrM= - - hash2 - - a1SI3ItCUorfHva8VTlWs93R0SviyN25UiJ1O1s/YoE= - - optional - - - Instabug.bundle/ja.lproj/Localizable.strings - - hash - - Af5YNQZVjz0idTgZ3faWGPfqTtE= - - hash2 - - TCecbigyVbsiBLpWyUYHFFEJXVDf1Jmk49YzNJxy2Bo= - - optional - - - Instabug.bundle/ko.lproj/Localizable.strings - - hash - - vkJBLbx1wv0tkoDXuSqQPQV4pDw= - - hash2 - - CRLd7EvOFAG/J8NOB+M+GmeX0mvbxm4B2tAkfI/TTfA= - - optional - - - Instabug.bundle/nb.lproj/Localizable.strings - - hash - - 1z20T5K1ilr2PlgcI12YdfcwF8c= - - hash2 - - Xk3CzN55l/L2Epzw7ul1nXkswz7TqdhrsqnruIJYjR8= - - optional - - - Instabug.bundle/nl.lproj/Localizable.strings - - hash - - 2OshnDUJy7mDZMHrv5IckZnQfTw= - - hash2 - - O1zS9igyoWwtZ/MrCspo4agBYWZcYwPquKWtH3QcC8I= - - optional - - - Instabug.bundle/notificationEdge.png - - hash - - 5hW9jlcAUFQogrki/oNZ2/zOtAg= - - hash2 - - CQ676KSRFs/2SLjMvYP+wXT3v5x4skqVGpNdU9GRR+U= - - - Instabug.bundle/notificationEdge@2x.png - - hash - - mu3Oj3n0J3cCW+rAq8DYTv9vn+Q= - - hash2 - - bflGfzfs8+oZf5pPruLbj+fa57+j/wHFxKqMVR4ARDM= - - - Instabug.bundle/notificationEdge@3x.png - - hash - - 8pXpEp8/k5MOGMQzWc2Cah6aDhw= - - hash2 - - mLnXt0PZlbrDTl6bxydfJ4nWdcE7bCtEcVChmzewUxM= - - - Instabug.bundle/pl.lproj/Localizable.strings - - hash - - VG4yh4SbQPLTa+KtXjcHjeVhUVE= - - hash2 - - e9bFdL464emgJl3B1ireMsn675OVl+432kp4v4Yulqk= - - optional - - - Instabug.bundle/powerplushome.png - - hash - - E6lczvrh5rGRhTobDfElfaQTY3I= - - hash2 - - EVRKTqFk/F8vLsck3G1YjmP+n23TSAQmPPrU+stLMqk= - - - Instabug.bundle/pt-BR.lproj/Localizable.strings - - hash - - Y0JxWo97jDHPDvgg+KWtBo4RFF4= - - hash2 - - pmm9m9+2J7eUgsZn7BgboNcrGlIucy5w692GGezFtlU= - - optional - - - Instabug.bundle/pt-PT.lproj/Localizable.strings - - hash - - R6XAkUPlsljuCz2psGujmPFog/c= - - hash2 - - 2g9tqiev/3i1oGonSlv/tHJjb/IwqNWKuI70DeDIac4= - - optional - - - Instabug.bundle/ru.lproj/Localizable.strings - - hash - - 0uEy9Cq0/WD6uO8OF7n3zYc04lY= - - hash2 - - 3ZMcSIFPInymV5xIAk1yk8ysF2t6WWwiq3z1tZOIOqU= - - optional - - - Instabug.bundle/shake.png - - hash - - jlJ2hXPccgkrIxsSRYSmEFvCVQ4= - - hash2 - - pDLB9lvWBZ6MPy1Tc+WVDY3x+6Wgz2hiQTEg2JPSZKY= - - - Instabug.bundle/sk.lproj/Localizable.strings - - hash - - 8luHIEbeQKGS+FdQrIM1imCxZTY= - - hash2 - - +2I+J/C9inOq8gGs/KtpjQ3ZXDUwrHviEU/gXmleFys= - - optional - - - Instabug.bundle/strip-frameworks.sh - - hash - - +MG0vr81f9BYFi8t9r2Wy0CFRAQ= - - hash2 - - EFBdsgIKkcB/ZW5AgcnnL3/o0Bpiv6XiPi3sPZMaPdg= - - - Instabug.bundle/sv.lproj/Localizable.strings - - hash - - 9vRBpjShceOJO4aCs432AWShvJM= - - hash2 - - HwznWDKz+pRDpO/tbOOgqGHMUJO4g5A5DBL0nf635h8= - - optional - - - Instabug.bundle/tap.png - - hash - - lsfOQn2WG3542sXrYTI76mUiCv0= - - hash2 - - bdtNxe00b3d7SYhBUWj3ppO1jOKQhuPJt90koTHDKHQ= - - - Instabug.bundle/tap@2x.png - - hash - - WwJ7M3Z4tXL501W3SPAJyadCeQI= - - hash2 - - CC1LGKp2k1Zp4wgK0W7ITwC8Z/tjDD+zPgrMkYOIUXE= - - - Instabug.bundle/tap@3x.png - - hash - - wmWt1c+K/cWYo3uVqdp/3VurOXg= - - hash2 - - YHOWysNhjYpi9yZuRUe+eVsyCnezqvL6PPgd68RRwLo= - - - Instabug.bundle/tr.lproj/Localizable.strings - - hash - - 39XlUZSS1NpPaV+1uY+YGCsVLSY= - - hash2 - - s1+umxCLHfV6weaFKCVyjbqunAaUJ4akJMeKPLZHCPQ= - - optional - - - Instabug.bundle/twofingers.png - - hash - - LlUqLkqlVvLDDjCYb2r3znHxNP8= - - hash2 - - XMxzGzZovvrhEism3i1Chmm6ii1Ifs/FzmV3oNwTsfo= - - - Instabug.bundle/zh-Hans.lproj/Localizable.strings - - hash - - yvG8n63MfAIGfQkYv8RguGC3tGU= - - hash2 - - ziDa90LCVJE3mnYpuU4s8sqqhxiqCYC5QG3NbWMglmI= - - optional - - - Instabug.bundle/zh-Hant-TW.lproj/Localizable.strings - - hash - - 0twTLP7pldYgFggEKhXl/39b0qQ= - - hash2 - - DPB17XrSLCcdOs/rRtn0yuW2mRzFYdKbEzByHsU9BdA= - - optional - - - Instabug.bundle/zh-Hant.lproj/Localizable.strings - - hash - - BEBSr+QiqJo87G+BnqJEE3jBKpo= - - hash2 - - EQgtx0yf9rxmAq/beR4KqzaJ41ambrbTmXPMVy6sYWg= - - optional - - - InstabugDataModel.momd/InstabugDataModel 2.mom - - hash - - MAXC3qUm4Hz0GxTPshNHNpdrDaQ= - - hash2 - - 2rEJvrNh5C/jr6PA9Xorm67ZLMCnM4NTZmvCj1Y0ORQ= - - - InstabugDataModel.momd/InstabugDataModel 3.mom - - hash - - jrqCkVaU14U8RPQBdO9pS/0Pk4I= - - hash2 - - pic6pqmCe3o1i/PGdHjX4QFhxkA+6K/4hpI8G0HhoFA= - - - InstabugDataModel.momd/InstabugDataModel 7.mom - - hash - - 3sQ76HG4DgxopC8dddbOkaenrF8= - - hash2 - - LzCp1euKwcnCJSQAkugSCTQUzOIHQJjg9wljfYcs+tg= - - - InstabugDataModel.momd/InstabugDataModel 8.mom - - hash - - Z8qLTaCqiQMWebQMUeW3XlVxQSc= - - hash2 - - f/dvnHZkel669rD2DaKYRhBM6+Hay+17coFa/Pl8NwY= - - - InstabugDataModel.momd/InstabugDataModel 9.mom - - hash - - Z8qLTaCqiQMWebQMUeW3XlVxQSc= - - hash2 - - f/dvnHZkel669rD2DaKYRhBM6+Hay+17coFa/Pl8NwY= - - - InstabugDataModel.momd/InstabugDataModel 9.omo - - hash - - DzpBtW2c0Nrvm7pPikl+MUBS1+M= - - hash2 - - gU2QkskhQdC37/61iH9KLV+zL05JjjJGZze5KpiJt+8= - - - InstabugDataModel.momd/InstabugDataModel.mom - - hash - - 6kSXQ1euyJl1gPfPnihcaMR42X4= - - hash2 - - Rch/x/qp0RsZkJlj+D3NK15uhxv3R3uOAjxV1mNvGjU= - - - InstabugDataModel.momd/VersionInfo.plist - - hash - - 9Mt9wz9T8DT67ts/30LorRgh1K4= - - hash2 - - GR2Z/sEbcTyA9GS774jMPYkqWncrmr/+sf/yVjGbFNU= + UMEz8b1deMBqjnvOhm6nBR49heYUuUSd12lpuoxbJHw= Modules/module.modulemap diff --git a/ios/Instabug.framework/Headers/IBGTypes.h b/ios/InstabugCore.framework/Headers/IBGTypes.h similarity index 93% rename from ios/Instabug.framework/Headers/IBGTypes.h rename to ios/InstabugCore.framework/Headers/IBGTypes.h index a2f4862..9b5988a 100644 --- a/ios/Instabug.framework/Headers/IBGTypes.h +++ b/ios/InstabugCore.framework/Headers/IBGTypes.h @@ -5,7 +5,7 @@ // Copyright: (c) 2013-2016 by Instabug, Inc., all rights reserved. // -#import +#import /// ------------------------------ /// @name User-facing Strings Keys @@ -47,6 +47,7 @@ extern NSString * const kIBGMessagesNotificationTitleSingleMessageStringName; extern NSString * const kIBGMessagesNotificationTitleMultipleMessagesStringName; extern NSString * const kIBGScreenshotTitleStringName; extern NSString * const kIBGOkButtonTitleStringName; +extern NSString * const kIBGSendButtonTitleStringName; extern NSString * const kIBGCancelButtonTitleStringName; extern NSString * const kIBGThankYouAlertTitleStringName; extern NSString * const kIBGThankYouAlertMessageStringName; @@ -55,14 +56,16 @@ extern NSString * const kIBGScreenRecordingStringName; extern NSString * const kIBGImageStringName; extern NSString * const kIBGReachedMaximimNumberOfAttachmentsTitleStringName; extern NSString * const kIBGReachedMaximimNumberOfAttachmentsMessageStringName; +extern NSString * const kIBGVideoRecordingFailureMessageStringName; extern NSString * const kIBGSurveyEnterYourAnswerTextPlaceholder; extern NSString * const kIBGSurveyNoAnswerTitle; extern NSString * const kIBGSurveyNoAnswerMessage; extern NSString * const kIBGSurveySubmitTitle; extern NSString * const kIBGVideoPressRecordTitle; +extern NSString * const kIBGCollectingDataText; extern NSString * const kIBGLowDiskStorageTitle; extern NSString * const kIBGLowDiskStorageMessage; -extern NSString * const kIBGCollectingDataText; +extern NSString * const kIBGInboundByLineMessage; extern NSString * const kIBGExtraFieldIsRequiredText; extern NSString * const kIBGExtraFieldMissingDataText; @@ -242,9 +245,9 @@ typedef NS_ENUM(NSInteger, IBGString) { IBGStringSurveyNoAnswerMessage, IBGStringSurveySubmitTitle, IBGStringVideoPressRecordTitle, + IBGStringCollectingDataText, IBGStringLowDiskStorageTitle, IBGStringLowDiskStorageMessage, - IBGStringCollectingDataText, IBGStringExtraFieldIsRequiredText, IBGStringExtraFieldMissingDataText }; @@ -258,6 +261,16 @@ typedef NS_ENUM(NSInteger, IBGPromptOption) { IBGPromptOptionFeedback }; +/** + Instabug floating buttons positions. + */ +typedef NS_ENUM(NSInteger, IBGPosition) { + IBGPositionBottomRight, + IBGPositionTopRight, + IBGPositionBottomLeft, + IBGPositionTopLeft +}; + /** The Conosle Log Level. */ @@ -270,3 +283,12 @@ typedef NS_ENUM(NSInteger, IBGLogLevel) { IBGLogLevelFatal }; +@interface UIView (Instabug) + +/** + @brief Set this to true on any UIView to mark it as private. + Doing this will exclude it from all screenshots, view hierarchy captures and screen recordings. + */ +@property (nonatomic, assign) BOOL instabug_privateView; + +@end diff --git a/ios/InstabugCore.framework/IBGActionSheetCell.nib b/ios/InstabugCore.framework/IBGActionSheetCell.nib new file mode 100644 index 0000000..028deb4 Binary files /dev/null and b/ios/InstabugCore.framework/IBGActionSheetCell.nib differ diff --git a/ios/InstabugCore.framework/IBGActionSheetVC-iPhone.nib b/ios/InstabugCore.framework/IBGActionSheetVC-iPhone.nib new file mode 100644 index 0000000..becbddc Binary files /dev/null and b/ios/InstabugCore.framework/IBGActionSheetVC-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGAttachmentButton.nib b/ios/InstabugCore.framework/IBGAttachmentButton.nib new file mode 100644 index 0000000..4694384 Binary files /dev/null and b/ios/InstabugCore.framework/IBGAttachmentButton.nib differ diff --git a/ios/InstabugCore.framework/IBGBugVC-iPhone.nib b/ios/InstabugCore.framework/IBGBugVC-iPhone.nib new file mode 100644 index 0000000..f60ddc1 Binary files /dev/null and b/ios/InstabugCore.framework/IBGBugVC-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGChatCell.nib b/ios/InstabugCore.framework/IBGChatCell.nib new file mode 100644 index 0000000..1420d27 Binary files /dev/null and b/ios/InstabugCore.framework/IBGChatCell.nib differ diff --git a/ios/InstabugCore.framework/IBGChatListVC-iPhone.nib b/ios/InstabugCore.framework/IBGChatListVC-iPhone.nib new file mode 100644 index 0000000..a4ac70e Binary files /dev/null and b/ios/InstabugCore.framework/IBGChatListVC-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGChatVC-iPhone.nib b/ios/InstabugCore.framework/IBGChatVC-iPhone.nib new file mode 100644 index 0000000..96a758c Binary files /dev/null and b/ios/InstabugCore.framework/IBGChatVC-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGFullScreenImageViewController.nib b/ios/InstabugCore.framework/IBGFullScreenImageViewController.nib new file mode 100644 index 0000000..8ccf847 Binary files /dev/null and b/ios/InstabugCore.framework/IBGFullScreenImageViewController.nib differ diff --git a/ios/InstabugCore.framework/IBGMessagesView.nib b/ios/InstabugCore.framework/IBGMessagesView.nib new file mode 100644 index 0000000..5509710 Binary files /dev/null and b/ios/InstabugCore.framework/IBGMessagesView.nib differ diff --git a/ios/InstabugCore.framework/IBGPoweredByView.nib b/ios/InstabugCore.framework/IBGPoweredByView.nib new file mode 100644 index 0000000..a3eaf01 Binary files /dev/null and b/ios/InstabugCore.framework/IBGPoweredByView.nib differ diff --git a/ios/InstabugCore.framework/IBGPromptCell.nib b/ios/InstabugCore.framework/IBGPromptCell.nib new file mode 100644 index 0000000..7fb0605 Binary files /dev/null and b/ios/InstabugCore.framework/IBGPromptCell.nib differ diff --git a/ios/InstabugCore.framework/IBGPromptVC-iPhone.nib b/ios/InstabugCore.framework/IBGPromptVC-iPhone.nib new file mode 100644 index 0000000..b23d176 Binary files /dev/null and b/ios/InstabugCore.framework/IBGPromptVC-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGReplyView-iPhone.nib b/ios/InstabugCore.framework/IBGReplyView-iPhone.nib new file mode 100644 index 0000000..2eb06d9 Binary files /dev/null and b/ios/InstabugCore.framework/IBGReplyView-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGReportCategoriesVC-iPhone.nib b/ios/InstabugCore.framework/IBGReportCategoriesVC-iPhone.nib new file mode 100644 index 0000000..941350c Binary files /dev/null and b/ios/InstabugCore.framework/IBGReportCategoriesVC-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGScreenshotVC-iPhone.nib b/ios/InstabugCore.framework/IBGScreenshotVC-iPhone.nib new file mode 100644 index 0000000..f811b7c Binary files /dev/null and b/ios/InstabugCore.framework/IBGScreenshotVC-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGUnnotifiedMessagesAlertView.nib b/ios/InstabugCore.framework/IBGUnnotifiedMessagesAlertView.nib new file mode 100644 index 0000000..a769f9d Binary files /dev/null and b/ios/InstabugCore.framework/IBGUnnotifiedMessagesAlertView.nib differ diff --git a/ios/InstabugCore.framework/IBGVideoPlaybackViewController.nib b/ios/InstabugCore.framework/IBGVideoPlaybackViewController.nib new file mode 100644 index 0000000..452f12e Binary files /dev/null and b/ios/InstabugCore.framework/IBGVideoPlaybackViewController.nib differ diff --git a/ios/InstabugCore.framework/IBGVoiceNoteRecordingViewController-iPhone.nib b/ios/InstabugCore.framework/IBGVoiceNoteRecordingViewController-iPhone.nib new file mode 100644 index 0000000..9c35874 Binary files /dev/null and b/ios/InstabugCore.framework/IBGVoiceNoteRecordingViewController-iPhone.nib differ diff --git a/ios/Instabug.framework/Instabug.bundle/InAppScreenshotPlaceholder.png b/ios/InstabugCore.framework/InAppScreenshotPlaceholder.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/InAppScreenshotPlaceholder.png rename to ios/InstabugCore.framework/InAppScreenshotPlaceholder.png diff --git a/ios/Instabug.framework/Instabug.bundle/InAppScreenshotPlaceholder@2x.png b/ios/InstabugCore.framework/InAppScreenshotPlaceholder@2x.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/InAppScreenshotPlaceholder@2x.png rename to ios/InstabugCore.framework/InAppScreenshotPlaceholder@2x.png diff --git a/ios/Instabug.framework/Instabug.bundle/InAppScreenshotPlaceholder@3x.png b/ios/InstabugCore.framework/InAppScreenshotPlaceholder@3x.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/InAppScreenshotPlaceholder@3x.png rename to ios/InstabugCore.framework/InAppScreenshotPlaceholder@3x.png diff --git a/ios/Instabug.framework/Instabug.bundle/InAppVideoPlaceholder.png b/ios/InstabugCore.framework/InAppVideoPlaceholder.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/InAppVideoPlaceholder.png rename to ios/InstabugCore.framework/InAppVideoPlaceholder.png diff --git a/ios/Instabug.framework/Instabug.bundle/InAppVideoPlaceholder@2x.png b/ios/InstabugCore.framework/InAppVideoPlaceholder@2x.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/InAppVideoPlaceholder@2x.png rename to ios/InstabugCore.framework/InAppVideoPlaceholder@2x.png diff --git a/ios/Instabug.framework/Instabug.bundle/InAppVideoPlaceholder@3x.png b/ios/InstabugCore.framework/InAppVideoPlaceholder@3x.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/InAppVideoPlaceholder@3x.png rename to ios/InstabugCore.framework/InAppVideoPlaceholder@3x.png diff --git a/ios/InstabugCore.framework/Info.plist b/ios/InstabugCore.framework/Info.plist new file mode 100644 index 0000000..755ebc0 Binary files /dev/null and b/ios/InstabugCore.framework/Info.plist differ diff --git a/ios/InstabugCore.framework/Inject_DSYM_Project-Archive.sh b/ios/InstabugCore.framework/Inject_DSYM_Project-Archive.sh new file mode 100644 index 0000000..1fa356d --- /dev/null +++ b/ios/InstabugCore.framework/Inject_DSYM_Project-Archive.sh @@ -0,0 +1,23 @@ +echo "Instabug: Started inject dSYM and bcsymbolmap inside project archive." + +Instabug_DSYM_PATH=($(find "${PROJECT_DIR}" -name 'Instabug.framework.dSYM')) +if [ ! "${Instabug_DSYM_PATH}" ]; then + echo "Instabug: can not find Instabug.framework.dSYM in project directory." +else + cp -r "${Instabug_DSYM_PATH}" "${ARCHIVE_DSYMS_PATH}" + echo "Instabug: Instabug.framework.dSYM successfully copied in project directory." +fi + +InstabugCore_DSYM_PATH=($(find "${PROJECT_DIR}" -name 'InstabugCore.framework.dSYM')) +if [ ! "${InstabugCore_DSYM_PATH}" ]; then +echo "Instabug: can not find InstabugCore.framework.dSYM in project directory." +else +cp -r "${InstabugCore_DSYM_PATH}" "${ARCHIVE_DSYMS_PATH}" +echo "Instabug: InstabugCore.framework.dSYM successfully copied in project directory." +fi + +find "${PROJECT_DIR}" -name "*.bcsymbolmap" | (while read -r file +do + cp -r "${file}" "${ARCHIVE_DSYMS_PATH}/../BCSymbolMaps" +done +echo "Instabug: Injecting dSYM and bcsymbolmap inside project archive complete." diff --git a/ios/InstabugCore.framework/InstabugCore b/ios/InstabugCore.framework/InstabugCore new file mode 100755 index 0000000..bad3666 Binary files /dev/null and b/ios/InstabugCore.framework/InstabugCore differ diff --git a/ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel 2.mom b/ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel 2.mom similarity index 100% rename from ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel 2.mom rename to ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel 2.mom diff --git a/ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel 3.mom b/ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel 3.mom similarity index 100% rename from ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel 3.mom rename to ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel 3.mom diff --git a/ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel 7.mom b/ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel 7.mom similarity index 100% rename from ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel 7.mom rename to ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel 7.mom diff --git a/ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel 8.mom b/ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel 8.mom similarity index 100% rename from ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel 8.mom rename to ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel 8.mom diff --git a/ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel 9.mom b/ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel 9.mom new file mode 100644 index 0000000..50d089e Binary files /dev/null and b/ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel 9.mom differ diff --git a/ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel 9.omo b/ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel 9.omo new file mode 100644 index 0000000..df8044c Binary files /dev/null and b/ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel 9.omo differ diff --git a/ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel.mom b/ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel.mom similarity index 100% rename from ios/Instabug.framework/InstabugDataModel.momd/InstabugDataModel.mom rename to ios/InstabugCore.framework/InstabugDataModel.momd/InstabugDataModel.mom diff --git a/ios/InstabugCore.framework/InstabugDataModel.momd/VersionInfo.plist b/ios/InstabugCore.framework/InstabugDataModel.momd/VersionInfo.plist new file mode 100644 index 0000000..f1dfddb Binary files /dev/null and b/ios/InstabugCore.framework/InstabugDataModel.momd/VersionInfo.plist differ diff --git a/ios/Instabug.framework/Instabug.bundle/Instabug_dsym_upload.sh b/ios/InstabugCore.framework/Instabug_dsym_upload.sh similarity index 94% rename from ios/Instabug.framework/Instabug.bundle/Instabug_dsym_upload.sh rename to ios/InstabugCore.framework/Instabug_dsym_upload.sh index 2b7fa1e..15a2047 100755 --- a/ios/Instabug.framework/Instabug.bundle/Instabug_dsym_upload.sh +++ b/ios/InstabugCore.framework/Instabug_dsym_upload.sh @@ -30,19 +30,18 @@ fi # Check to make sure the app token exists # Objective-C if [ ! "${APP_TOKEN}" ]; then - APP_TOKEN=$(grep -r 'Instabug startWithToken:@\"[0-9a-zA-Z]*\"' ./ -m 1 | grep -o '\"[0-9a-zA-Z]*\"' | cut -d "\"" -f 2) + APP_TOKEN=$(grep -r 'Instabug startWithToken:@\"[0-9a-zA-Z]*\"' ./ -m 1 | grep -o '\"[0-9a-zA-Z]*\"' | cut -d "\"" -f 2) fi # Swift if [ ! "${APP_TOKEN}" ]; then - APP_TOKEN=$(grep -r 'Instabug.startWithToken(\"[0-9a-zA-Z]*\"' ./ -m 1 | grep -o '\"[0-9a-zA-Z]*\"' | cut -d "\"" -f 2) + APP_TOKEN=$(grep -r 'Instabug.startWithToken(\"[0-9a-zA-Z]*\"' ./ -m 1 | grep -o '\"[0-9a-zA-Z]*\"' | cut -d "\"" -f 2) fi if [ ! "${APP_TOKEN}" ]; then APP_TOKEN=$(grep -r 'Instabug.start(withToken:\"[0-9a-zA-Z]*\"' ./ -m 1 | grep -o '\"[0-9a-zA-Z]*\"' | cut -d "\"" -f 2) fi - if [ ! "${APP_TOKEN}" ] || [ -z "${APP_TOKEN}" ];then echo "Instabug: err: APP_TOKEN not found. Make sure you've added the SDK initialization line [Instabug startWithToken: invocationEvent:]" exit 1 diff --git a/ios/InstabugCore.framework/Modules/module.modulemap b/ios/InstabugCore.framework/Modules/module.modulemap new file mode 100644 index 0000000..5da355e --- /dev/null +++ b/ios/InstabugCore.framework/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module InstabugCore { + umbrella header "IBGTypes.h" + + export * + module * { export * } +} diff --git a/ios/Instabug.framework/Instabug.bundle/_CodeSignature/CodeResources b/ios/InstabugCore.framework/_CodeSignature/CodeResources similarity index 74% rename from ios/Instabug.framework/Instabug.bundle/_CodeSignature/CodeResources rename to ios/InstabugCore.framework/_CodeSignature/CodeResources index eadeaf0..c858743 100644 --- a/ios/Instabug.framework/Instabug.bundle/_CodeSignature/CodeResources +++ b/ios/InstabugCore.framework/_CodeSignature/CodeResources @@ -4,77 +4,81 @@ files + Headers/IBGTypes.h + + RlUDCxxes0XUP+iXAATjWsjs230= + IBGActionSheetCell.nib - ZeM6MwI3pqPLcu4wWduCt3POYMM= + PfAIEKat3cv3+Xmt7adsnHXvN7o= IBGActionSheetVC-iPhone.nib - aWtTsec0rnyWvwXRd8d+5k3kR8c= + NTGHaXIz8pgL4evgfpQrWIiCnWE= IBGAttachmentButton.nib - pEPSChAAXP0tB1BZaWid53JlpGU= + 09+3uZdMGWII4M+MofhbjMeSdd8= IBGBugVC-iPhone.nib - fXSlGobePr8qHXHy6DIe9xhZ8gE= + LAsl+pr64AbMyTn1LL0N99JJZDg= IBGChatCell.nib - SYvLGe1CF6PBNlhthZWhiTZ70g0= + IKqpzqfruASTSqd17yV+uN/kTE8= + + IBGChatListVC-iPhone.nib + + vSFfMA+cYGBLlm27if87PPUCZ38= IBGChatVC-iPhone.nib - gmmDAUy/hnf4SMJBjDXmF+6Wn6A= - - IBGChatsVC-iPhone.nib - - YrMvtElgHH48pOkS+dFjogEqySw= + 6S5lwguyyen3jjNK4kb3Ko7llZs= IBGFullScreenImageViewController.nib - +mu8CA74N7ir9w3Zn2W4yBTCli8= + MRLAeed6iO9wlJF3YFkHGnvagMA= IBGMessagesView.nib - HQ7Zv9C8yLW6SRgJ3naBZDe+ASY= + ZekkX1OLyIW1OWBoZsZfoF9hkpo= IBGPoweredByView.nib - 8HvCu6dwvTfLgDByxFqulGSRnVU= + LquNNq3/FCirTBul9pfTMDGEwzc= IBGPromptCell.nib - Uw3mWCeN76Eu27/EI3aCW15KV/8= + sjnHktbu8NdHnUyzgPGrDTFO9u8= IBGPromptVC-iPhone.nib - F6EICH3mketVG01LrZVnYyL1eL4= + cCKXfAYM4J4gglXZpp3qo+Di518= IBGReplyView-iPhone.nib - GFkLqyicADWfPcm1xCKpBI7TADo= + nqUwfbucDcgyEo6cdzqOJt9mIWI= IBGReportCategoriesVC-iPhone.nib - vcncIKVgXJycTkXnne/b8xWHKZk= + 5x6o57xmIvspp45C9zCf4gCwl4A= IBGScreenshotVC-iPhone.nib - 9a7Yg+EV3IT0Zep0fKpZOaoV8MY= + zJ4O142rtlCs4MmVHm6K+SCMmak= IBGUnnotifiedMessagesAlertView.nib - eWMwhov/Kk3AhxQM8wAB9WREah4= + NaJqn9JkKFtApmxV9CK8sLvMV/E= IBGVideoPlaybackViewController.nib - 1qDmNtA8stivhEOL11OLzkB9W04= + 3i0PYQoMJrizBd7wK2nQnEXVi28= IBGVoiceNoteRecordingViewController-iPhone.nib - 7pJZzyRURPIn1xupqAJuFWwSagw= + d0H1RJ35H5D1YxKU+oss3zPgkaQ= InAppScreenshotPlaceholder.png @@ -100,39 +104,59 @@ 56rCm7J2JRzr1xEuD+hSNK8Q6l8= + Info.plist + + qfRjycB6FuJJaD2Ktz0jGKG56wY= + Inject_DSYM_Project-Archive.sh - 8wtoID7+FOFvFRKACdrJr0HYAqI= + 2wptH+pnjCdVB7Umr0cIPOkQcs8= + + InstabugDataModel.momd/InstabugDataModel 2.mom + + MAXC3qUm4Hz0GxTPshNHNpdrDaQ= + + InstabugDataModel.momd/InstabugDataModel 3.mom + + jrqCkVaU14U8RPQBdO9pS/0Pk4I= + + InstabugDataModel.momd/InstabugDataModel 7.mom + + 3sQ76HG4DgxopC8dddbOkaenrF8= + + InstabugDataModel.momd/InstabugDataModel 8.mom + + Z8qLTaCqiQMWebQMUeW3XlVxQSc= + + InstabugDataModel.momd/InstabugDataModel 9.mom + + GHCidcSaD+2cceEF2qcLJhhapTo= + + InstabugDataModel.momd/InstabugDataModel 9.omo + + H/whqgeuGvPZ7BDRoSVl0cXJBTY= + + InstabugDataModel.momd/InstabugDataModel.mom + + 6kSXQ1euyJl1gPfPnihcaMR42X4= + + InstabugDataModel.momd/VersionInfo.plist + + DPFmuH+CgKXrpdQsDN7Z4gWQxLg= Instabug_dsym_upload.sh - 8GMHafrlrbZWGm/GX7QvLV0bhk0= - - Whitebubble-IBGColorThemeDark.png - - sjQJ7QcC6F1rW/FNrv8jrMa56WM= - - Whitebubble-IBGColorThemeDark@2x.png - - I1kWsWsRnk4EZlsGioXFCGg7XYI= - - Whitebubble-IBGColorThemeDark@3x.png - - 9W3OIH0EkHGX52vF5bFCnaTejME= + v0l7xxPei4aNjTcb5AqQb8iywV4= ar.lproj/Localizable.strings hash - KWn5+nrAdijyaSwpu3z6LouJVkY= + 3gojUGpJjLj84oaRBB8vZrueuUY= optional - archived-expanded-entitlements.xcent - - 3Xqvtgf3XLNtaSSc1u62jafwEhM= - audio_placeholder.png 3+oGy33V8vSdFakADaGv9ZV9NuQ= @@ -149,7 +173,7 @@ hash - ryIGbVy+KMxPdfAzD2abqckhg54= + yP9zvGkZqWrUill1L2BC8NEXEMY= optional @@ -158,7 +182,7 @@ hash - nSSw5o+nuHFcy5Bt6sklgveyJ1M= + EdrsbyGL/CAtlpedU90e/MQVjqA= optional @@ -167,7 +191,7 @@ hash - 4uCSLktLQcN7TB9RDsnWZFR7eWg= + IBS3ihaaIZ3rWY/TQU3Rm0Ap5RQ= optional @@ -176,7 +200,7 @@ hash - GD+Bcioe4SeTImCDNxPVoLv5t0w= + 3rgJCN0d+gTVXrSnucK8aoeqPc8= optional @@ -185,7 +209,7 @@ hash - O/jdosx4ExenJ489tAMY9KIoZcA= + nOKMfZV8vBJV3bUesuG3sUVB5QY= optional @@ -194,23 +218,11 @@ hash - T7q3M6a/bBN0lwiDy2TUPrg4MGg= + 1kic4BEG9AwwhTMWcAPXAoO441o= optional - graybubble.png - - HgepOyUGTD4mZnbrszpj2t/Eshk= - - graybubble@2x.png - - dhrxuLbN0liUnJdIwFzFgotznRc= - - graybubble@3x.png - - iKGeUcXkI1c+QOjGJGsPpbWjRvE= - instabuglogo.png Jtxj3MhChQ1V22rxVAPSwnlbrCM= @@ -227,7 +239,7 @@ hash - lGVLtXcg7c6d7kH9fIHJNU9gYrM= + wkVq67ZrSyoQP4kVCQmGuA2XV+o= optional @@ -236,7 +248,7 @@ hash - Af5YNQZVjz0idTgZ3faWGPfqTtE= + r4cbtG8ei7K9w5jw7M5pTdwpuHs= optional @@ -245,7 +257,7 @@ hash - vkJBLbx1wv0tkoDXuSqQPQV4pDw= + dVmkenZWBzfXOWmcfGUSreMTFks= optional @@ -254,7 +266,7 @@ hash - 1z20T5K1ilr2PlgcI12YdfcwF8c= + q2zujf8laSDZRQ5Mg4ipESChxvA= optional @@ -263,7 +275,7 @@ hash - 2OshnDUJy7mDZMHrv5IckZnQfTw= + pllvMKr26wVjcTGimicIjaf7N+Q= optional @@ -284,7 +296,7 @@ hash - VG4yh4SbQPLTa+KtXjcHjeVhUVE= + vbFwr7WaUDkRdizHHQjX1zHM3Jk= optional @@ -297,7 +309,7 @@ hash - Y0JxWo97jDHPDvgg+KWtBo4RFF4= + kn8F0ksUky9FP7TGdKi33BaF5is= optional @@ -306,7 +318,7 @@ hash - R6XAkUPlsljuCz2psGujmPFog/c= + 6tkM0vQHZDyf1Ukj3Qb7Xvng1RE= optional @@ -315,7 +327,7 @@ hash - 0uEy9Cq0/WD6uO8OF7n3zYc04lY= + KE5akKQxqJdjoBgUt6QQ7OWlrMs= optional @@ -328,7 +340,7 @@ hash - 8luHIEbeQKGS+FdQrIM1imCxZTY= + FBaeCY0M3+5BhuqPFIoEDviO0UM= optional @@ -341,7 +353,7 @@ hash - 9vRBpjShceOJO4aCs432AWShvJM= + ydoP0Bc2D4bqs36Qz6liDaSwO5Q= optional @@ -362,7 +374,7 @@ hash - 39XlUZSS1NpPaV+1uY+YGCsVLSY= + zYDIbOl9ftgcrkcvpnemFVkXv8c= optional @@ -375,7 +387,7 @@ hash - yvG8n63MfAIGfQkYv8RguGC3tGU= + rpN1o8ODKCqo55DTscOdMBGO/Ek= optional @@ -384,7 +396,7 @@ hash - 0twTLP7pldYgFggEKhXl/39b0qQ= + N8frfGuvvleGYZR/5DZbXhaltNw= optional @@ -393,7 +405,7 @@ hash - BEBSr+QiqJo87G+BnqJEE3jBKpo= + 4uY9rr9MX+77RBd3zYTDj6gSfag= optional @@ -401,202 +413,213 @@ files2 + Headers/IBGTypes.h + + hash + + RlUDCxxes0XUP+iXAATjWsjs230= + + hash2 + + VUcjuXVLaBe+WuqH+qUVUgAQTOLJqrUx2rgPCEww8RY= + + IBGActionSheetCell.nib hash - ZeM6MwI3pqPLcu4wWduCt3POYMM= + PfAIEKat3cv3+Xmt7adsnHXvN7o= hash2 - SVW8PG/zLoAT3P+5KZVVVfWre4E05uXXazaE1oLClr0= + MU9iv2zQK0oPAMW/dypenFUD3SM6viA8oOhfjOjUib0= IBGActionSheetVC-iPhone.nib hash - aWtTsec0rnyWvwXRd8d+5k3kR8c= + NTGHaXIz8pgL4evgfpQrWIiCnWE= hash2 - RyNOlS++THd5Clc6vRxmEH+PbQJkvcDrNANS/xyYUNc= + sTgwkD+clOTVhzL4nMU1O6Q9gN07pnHFODUu03YubnA= IBGAttachmentButton.nib hash - pEPSChAAXP0tB1BZaWid53JlpGU= + 09+3uZdMGWII4M+MofhbjMeSdd8= hash2 - xDy8Gnfj0s3f0xspVMuOdMj+HP1JBTPH4QGinojFazw= + IjyZMybf3OgEdU78KE2PkS08P/kvzk5DvmqtRge8y6c= IBGBugVC-iPhone.nib hash - fXSlGobePr8qHXHy6DIe9xhZ8gE= + LAsl+pr64AbMyTn1LL0N99JJZDg= hash2 - 6U5N3fJGqN/s6OJky2zyZ9ElI6G1SwEwMxjLeGddvJk= + +hiOSlOLHc7774+4JFHWbXeYDx/dPMXLxkYE31TOE1E= IBGChatCell.nib hash - SYvLGe1CF6PBNlhthZWhiTZ70g0= + IKqpzqfruASTSqd17yV+uN/kTE8= hash2 - 4h9+8gwFmh+ClJJDBFZBuY0caawSRHGmHTGToQaFpfQ= + 9xZt2sgZOQ8WVdaPIL9iB/IawgwgsiTrxguJ4lpKmac= + + + IBGChatListVC-iPhone.nib + + hash + + vSFfMA+cYGBLlm27if87PPUCZ38= + + hash2 + + U96gzK+PQj0AA08+cEdZCq/i33cHemMOvhdHdakgETQ= IBGChatVC-iPhone.nib hash - gmmDAUy/hnf4SMJBjDXmF+6Wn6A= + 6S5lwguyyen3jjNK4kb3Ko7llZs= hash2 - BHYlHzaNVM7oWH1DfTbvKczVsz6DXXm86B43U4GXmyM= - - - IBGChatsVC-iPhone.nib - - hash - - YrMvtElgHH48pOkS+dFjogEqySw= - - hash2 - - tBewmEONTOc7i/xn/iF3a5JEMbz2+GA3TRFaZa6appw= + wCYEp4foa5nz47PWEn1KsYUhohLHwTvhekn3MH16xy0= IBGFullScreenImageViewController.nib hash - +mu8CA74N7ir9w3Zn2W4yBTCli8= + MRLAeed6iO9wlJF3YFkHGnvagMA= hash2 - CikEsiuB8UGeTqJjdYid2pBFonOwGJgNAa832zVd7p8= + Z7ebYi+4t3WLCRxjF6JyJrXMvaPCeyVrxt17WYWxlEw= IBGMessagesView.nib hash - HQ7Zv9C8yLW6SRgJ3naBZDe+ASY= + ZekkX1OLyIW1OWBoZsZfoF9hkpo= hash2 - EOv9GAw8wO2iPM6OTvn74jW7TalzYD+wzR+u288ydTE= + gdFGeZX+gkvyp6BMRHewWjSNtSsETIZFu5wbK/JDDw0= IBGPoweredByView.nib hash - 8HvCu6dwvTfLgDByxFqulGSRnVU= + LquNNq3/FCirTBul9pfTMDGEwzc= hash2 - T5OftKYzv8j96ldeRNlZbG3cCujrlOZYBSK/2ZtuTXo= + TUNI/NXau/6FTW/zdgM4u6RtOMuzrd3CTjAQjWodQ1M= IBGPromptCell.nib hash - Uw3mWCeN76Eu27/EI3aCW15KV/8= + sjnHktbu8NdHnUyzgPGrDTFO9u8= hash2 - mnRw6vjLX9JFHTul807bPaf+LXivziFcybH/UTLGKcY= + TUy6q+taSYku/AfMut6fXav5TDbzbXKHlSjh7iSc9qs= IBGPromptVC-iPhone.nib hash - F6EICH3mketVG01LrZVnYyL1eL4= + cCKXfAYM4J4gglXZpp3qo+Di518= hash2 - v0jbIgJkf+r/NO6fI4J9nlFUuZfJYUH4c6ozNxBjr+8= + 90+h18pVJEes5sfFt+LuyROtH22FVA/N5k9LVg7WYlo= IBGReplyView-iPhone.nib hash - GFkLqyicADWfPcm1xCKpBI7TADo= + nqUwfbucDcgyEo6cdzqOJt9mIWI= hash2 - WVuzaSeZiBWOSlEZ7SoKSKWuADKLmlshrQnGCJYsuRE= + d10m7gAg4rf2yyNiOw+yNMeToTjV5Mu2d6kO9tYrOf4= IBGReportCategoriesVC-iPhone.nib hash - vcncIKVgXJycTkXnne/b8xWHKZk= + 5x6o57xmIvspp45C9zCf4gCwl4A= hash2 - SUtSdHMC2GSMGfhbsUsw5lzTtUEK07WLhrdCNRR6rlA= + D6/6NaJ0F7C71q3/9MWALbXllnT3zH5Kt+nvgfgJYL8= IBGScreenshotVC-iPhone.nib hash - 9a7Yg+EV3IT0Zep0fKpZOaoV8MY= + zJ4O142rtlCs4MmVHm6K+SCMmak= hash2 - Xd0TJqY8mwUAi8M6wc7IZ93eMyIiG8TM/2R8t6i+g/A= + iNaOae4n5ojUh6KVsGE7DwLgRovSFZk6v1CxE4ZP+gU= IBGUnnotifiedMessagesAlertView.nib hash - eWMwhov/Kk3AhxQM8wAB9WREah4= + NaJqn9JkKFtApmxV9CK8sLvMV/E= hash2 - 5yCKlaT2hFzvDIi6SozWV19ZHZzCukJmmlpwrkh3W+Q= + csNNIObjhEzO6g1Xv8LR6qs3m2vfRCknG6/tXTQbcJI= IBGVideoPlaybackViewController.nib hash - 1qDmNtA8stivhEOL11OLzkB9W04= + 3i0PYQoMJrizBd7wK2nQnEXVi28= hash2 - OxQkLBc03jhlpNf6osoqSYXkdToLbTiAcUmDYAPbP44= + YuUf4x4YZiOxNkYXzPZxw9JIi4Wi3hYCHotVUNxxCjg= IBGVoiceNoteRecordingViewController-iPhone.nib hash - 7pJZzyRURPIn1xupqAJuFWwSagw= + d0H1RJ35H5D1YxKU+oss3zPgkaQ= hash2 - jqq0UyfCQfpzVLSLsEq5x2dkyyHWwLPyTS4zyAUu6Hw= + eXvxA8nnmwFa95lg32I0UcI4K7EPR1j0iPjLyx8dT7I= InAppScreenshotPlaceholder.png @@ -669,81 +692,125 @@ hash - 8wtoID7+FOFvFRKACdrJr0HYAqI= + 2wptH+pnjCdVB7Umr0cIPOkQcs8= hash2 - yGgIQMyf02kGoj+xSvmxE8E3F8tPdMlbIKaJymrivAA= + hgQQT8lCMiFDIVlg+i1+KLl/6Z+opesVaRX0+iZzNE8= + + + InstabugDataModel.momd/InstabugDataModel 2.mom + + hash + + MAXC3qUm4Hz0GxTPshNHNpdrDaQ= + + hash2 + + 2rEJvrNh5C/jr6PA9Xorm67ZLMCnM4NTZmvCj1Y0ORQ= + + + InstabugDataModel.momd/InstabugDataModel 3.mom + + hash + + jrqCkVaU14U8RPQBdO9pS/0Pk4I= + + hash2 + + pic6pqmCe3o1i/PGdHjX4QFhxkA+6K/4hpI8G0HhoFA= + + + InstabugDataModel.momd/InstabugDataModel 7.mom + + hash + + 3sQ76HG4DgxopC8dddbOkaenrF8= + + hash2 + + LzCp1euKwcnCJSQAkugSCTQUzOIHQJjg9wljfYcs+tg= + + + InstabugDataModel.momd/InstabugDataModel 8.mom + + hash + + Z8qLTaCqiQMWebQMUeW3XlVxQSc= + + hash2 + + f/dvnHZkel669rD2DaKYRhBM6+Hay+17coFa/Pl8NwY= + + + InstabugDataModel.momd/InstabugDataModel 9.mom + + hash + + GHCidcSaD+2cceEF2qcLJhhapTo= + + hash2 + + TkUHcaesnTObKjLQ7YwiXyLt7UaKrJ0Un6n2G6eaL8Y= + + + InstabugDataModel.momd/InstabugDataModel 9.omo + + hash + + H/whqgeuGvPZ7BDRoSVl0cXJBTY= + + hash2 + + tcN2gX9vM/GZmZKFe1XrGM4RFxqEwURtw4VRoy1aGJo= + + + InstabugDataModel.momd/InstabugDataModel.mom + + hash + + 6kSXQ1euyJl1gPfPnihcaMR42X4= + + hash2 + + Rch/x/qp0RsZkJlj+D3NK15uhxv3R3uOAjxV1mNvGjU= + + + InstabugDataModel.momd/VersionInfo.plist + + hash + + DPFmuH+CgKXrpdQsDN7Z4gWQxLg= + + hash2 + + /jCghc0N0dNPw/VJHsnx71r4qa1Ijp2mYk899qA7t+I= Instabug_dsym_upload.sh hash - 8GMHafrlrbZWGm/GX7QvLV0bhk0= + v0l7xxPei4aNjTcb5AqQb8iywV4= hash2 - tWvdqWJJcDGIwI5ts3ahfuvmALZJHFLPaVU3gAALXv4= - - - Whitebubble-IBGColorThemeDark.png - - hash - - sjQJ7QcC6F1rW/FNrv8jrMa56WM= - - hash2 - - vfUSAFMOq/B6A68lX2UOVfM19z/oPI3WLg4wFXK2V6Q= - - - Whitebubble-IBGColorThemeDark@2x.png - - hash - - I1kWsWsRnk4EZlsGioXFCGg7XYI= - - hash2 - - laPO0qABoKYXhHFxAkkzuqz4M30f94bETxxzgWbt7iI= - - - Whitebubble-IBGColorThemeDark@3x.png - - hash - - 9W3OIH0EkHGX52vF5bFCnaTejME= - - hash2 - - iHy4sUUGRHB3iqblX4ETboZqS7aeRWyuXKcsWfXkB2Y= + cxoI0cW1kvDA3sNRlEuCYmzKzfzoQ/Zn+BBesjDL2Hg= ar.lproj/Localizable.strings hash - KWn5+nrAdijyaSwpu3z6LouJVkY= + 3gojUGpJjLj84oaRBB8vZrueuUY= hash2 - yRcp9yCvtc2f61e09EbUHOoMl3ow/tRgcgkOKx4ws14= + 4WjY4jog21kRe8MwTj5riwGlrtv/021ACWwoimcP14k= optional - archived-expanded-entitlements.xcent - - hash - - 3Xqvtgf3XLNtaSSc1u62jafwEhM= - - hash2 - - 0RGGQX6lxoslENAJib3EpIDnwlT2EBWr9hUjKTuFoFw= - - audio_placeholder.png hash @@ -781,11 +848,11 @@ hash - ryIGbVy+KMxPdfAzD2abqckhg54= + yP9zvGkZqWrUill1L2BC8NEXEMY= hash2 - beYRAXoRZwqP3MDdO3JyC8HfDViY/l/t/1x5I8ByGd0= + 3DMcBobOHRLdVFFF6fFwziFMZ6WMLzhTEVZvZLqQdRQ= optional @@ -794,11 +861,11 @@ hash - nSSw5o+nuHFcy5Bt6sklgveyJ1M= + EdrsbyGL/CAtlpedU90e/MQVjqA= hash2 - w7k2wnop8IbEAH4JdzYSoLKUs0JGQq3fuyyVQXIVJik= + H4luiclU1DEOQamYsfnGi0jrzsN7QQioROfVX4zV2Fc= optional @@ -807,11 +874,11 @@ hash - 4uCSLktLQcN7TB9RDsnWZFR7eWg= + IBS3ihaaIZ3rWY/TQU3Rm0Ap5RQ= hash2 - VRxO0/2J3oulhZ3eiT8LDHZMipsPccHDY6uqXvz3eBQ= + tDXNPvfMaw3TVGV08EM9v80bkR7yMgHAIW1/doS9XVo= optional @@ -820,11 +887,11 @@ hash - GD+Bcioe4SeTImCDNxPVoLv5t0w= + 3rgJCN0d+gTVXrSnucK8aoeqPc8= hash2 - bZnZYU1MHLvi3OdFaVlK8avcf231luyWu+8bXoqqReg= + RKCRtatqGgvFyCFnbrkvR+zqErjbNCOxur9eouOgod4= optional @@ -833,11 +900,11 @@ hash - O/jdosx4ExenJ489tAMY9KIoZcA= + nOKMfZV8vBJV3bUesuG3sUVB5QY= hash2 - tG9BNt1o6fe7DHxfPbKf5qK0KU98Kkatf2WKlhjFo8s= + ovEqntXgoaUkrHgnMuSaUiRJspHui4fTtKKG97FwKIM= optional @@ -846,48 +913,15 @@ hash - T7q3M6a/bBN0lwiDy2TUPrg4MGg= + 1kic4BEG9AwwhTMWcAPXAoO441o= hash2 - 38phdwX0jMcn/j+XXzxqQoilS5OKpT36ZVMNINmkFoo= + daBkmqAZj15QvrC/grAQgRfSlYwtsHjoG2fc5T1W+6A= optional - graybubble.png - - hash - - HgepOyUGTD4mZnbrszpj2t/Eshk= - - hash2 - - fuWm5+fJjFcqR4J3f17a2Cs1MVObsKIh5liM2q4RUBo= - - - graybubble@2x.png - - hash - - dhrxuLbN0liUnJdIwFzFgotznRc= - - hash2 - - JszTRVFR3t29HGMps5W428lS0WDdGVhxqAROjaG2Ung= - - - graybubble@3x.png - - hash - - iKGeUcXkI1c+QOjGJGsPpbWjRvE= - - hash2 - - pdcfAAUkKo3f3kwbpKoZMMQ4wDzsbgr4uts50tKZsYg= - - instabuglogo.png hash @@ -925,11 +959,11 @@ hash - lGVLtXcg7c6d7kH9fIHJNU9gYrM= + wkVq67ZrSyoQP4kVCQmGuA2XV+o= hash2 - a1SI3ItCUorfHva8VTlWs93R0SviyN25UiJ1O1s/YoE= + EIUSQy7ZpqZs5Y/vv4XT/TP909aY7Z5Kuq/Dym6A08I= optional @@ -938,11 +972,11 @@ hash - Af5YNQZVjz0idTgZ3faWGPfqTtE= + r4cbtG8ei7K9w5jw7M5pTdwpuHs= hash2 - TCecbigyVbsiBLpWyUYHFFEJXVDf1Jmk49YzNJxy2Bo= + hYHWnxyxSkb4HUgoVjZBbe/Ss817H84JokMbeabWq1M= optional @@ -951,11 +985,11 @@ hash - vkJBLbx1wv0tkoDXuSqQPQV4pDw= + dVmkenZWBzfXOWmcfGUSreMTFks= hash2 - CRLd7EvOFAG/J8NOB+M+GmeX0mvbxm4B2tAkfI/TTfA= + GcfVwcw/VhL/6+UViEmmodL1Zjuf4AL8viXxUOm92q4= optional @@ -964,11 +998,11 @@ hash - 1z20T5K1ilr2PlgcI12YdfcwF8c= + q2zujf8laSDZRQ5Mg4ipESChxvA= hash2 - Xk3CzN55l/L2Epzw7ul1nXkswz7TqdhrsqnruIJYjR8= + dlEkI6nQBGiMLqTB6EJHVKHSezdkAAbJU5GYyMK8qYM= optional @@ -977,11 +1011,11 @@ hash - 2OshnDUJy7mDZMHrv5IckZnQfTw= + pllvMKr26wVjcTGimicIjaf7N+Q= hash2 - O1zS9igyoWwtZ/MrCspo4agBYWZcYwPquKWtH3QcC8I= + 6ILMfefuygQm4WvraQIK1PP4JJ5WYqlj0EiOdr6SPXo= optional @@ -1023,11 +1057,11 @@ hash - VG4yh4SbQPLTa+KtXjcHjeVhUVE= + vbFwr7WaUDkRdizHHQjX1zHM3Jk= hash2 - e9bFdL464emgJl3B1ireMsn675OVl+432kp4v4Yulqk= + TAwXisPELUCQf7bWY+7m+a0sBMsDutWsWTpobZsJCCM= optional @@ -1047,11 +1081,11 @@ hash - Y0JxWo97jDHPDvgg+KWtBo4RFF4= + kn8F0ksUky9FP7TGdKi33BaF5is= hash2 - pmm9m9+2J7eUgsZn7BgboNcrGlIucy5w692GGezFtlU= + XxceSyUKj9dEwEdWGPbyYhtDfRvl8qYp5lxmrX2pfAc= optional @@ -1060,11 +1094,11 @@ hash - R6XAkUPlsljuCz2psGujmPFog/c= + 6tkM0vQHZDyf1Ukj3Qb7Xvng1RE= hash2 - 2g9tqiev/3i1oGonSlv/tHJjb/IwqNWKuI70DeDIac4= + 7vqOcbZ/eQi5JLw3NzMa8ba3zcxW1EAJAJ23tyyOmxo= optional @@ -1073,11 +1107,11 @@ hash - 0uEy9Cq0/WD6uO8OF7n3zYc04lY= + KE5akKQxqJdjoBgUt6QQ7OWlrMs= hash2 - 3ZMcSIFPInymV5xIAk1yk8ysF2t6WWwiq3z1tZOIOqU= + nA1bqQjNktWHND4aoZdGJBktYAMmag1I8A3H8mdeIFI= optional @@ -1097,11 +1131,11 @@ hash - 8luHIEbeQKGS+FdQrIM1imCxZTY= + FBaeCY0M3+5BhuqPFIoEDviO0UM= hash2 - +2I+J/C9inOq8gGs/KtpjQ3ZXDUwrHviEU/gXmleFys= + xplNn+27ypnCdceJjSuuBY1J1QmqvXqZx4LN3u3/2R4= optional @@ -1121,11 +1155,11 @@ hash - 9vRBpjShceOJO4aCs432AWShvJM= + ydoP0Bc2D4bqs36Qz6liDaSwO5Q= hash2 - HwznWDKz+pRDpO/tbOOgqGHMUJO4g5A5DBL0nf635h8= + H3Cmwd8hYB8e3n9jKUDxpLkJjqkR4bXVcvbjiPvDYJs= optional @@ -1167,11 +1201,11 @@ hash - 39XlUZSS1NpPaV+1uY+YGCsVLSY= + zYDIbOl9ftgcrkcvpnemFVkXv8c= hash2 - s1+umxCLHfV6weaFKCVyjbqunAaUJ4akJMeKPLZHCPQ= + 4RANfKhXKNXDOdjMAuDCaAXU7ZUeEl4dseHhODAPJE8= optional @@ -1191,11 +1225,11 @@ hash - yvG8n63MfAIGfQkYv8RguGC3tGU= + rpN1o8ODKCqo55DTscOdMBGO/Ek= hash2 - ziDa90LCVJE3mnYpuU4s8sqqhxiqCYC5QG3NbWMglmI= + 3pjsZeg3HrpVL5Qi9YX0cUvZXdSf7HbvyouUAhB3DIA= optional @@ -1204,11 +1238,11 @@ hash - 0twTLP7pldYgFggEKhXl/39b0qQ= + N8frfGuvvleGYZR/5DZbXhaltNw= hash2 - DPB17XrSLCcdOs/rRtn0yuW2mRzFYdKbEzByHsU9BdA= + XbMyUa81yMZm4Jr9PoIJg0yfMNg6ys+RhzwRE27s4ak= optional @@ -1217,11 +1251,11 @@ hash - BEBSr+QiqJo87G+BnqJEE3jBKpo= + 4uY9rr9MX+77RBd3zYTDj6gSfag= hash2 - EQgtx0yf9rxmAq/beR4KqzaJ41ambrbTmXPMVy6sYWg= + V1Q5xppI7w1G4w4LlRMoelVAUTOXkEc1IMeqE8K6lsg= optional diff --git a/ios/InstabugCore.framework/ar.lproj/Localizable.strings b/ios/InstabugCore.framework/ar.lproj/Localizable.strings new file mode 100644 index 0000000..e7daf8f Binary files /dev/null and b/ios/InstabugCore.framework/ar.lproj/Localizable.strings differ diff --git a/ios/Instabug.framework/Instabug.bundle/audio_placeholder.png b/ios/InstabugCore.framework/audio_placeholder.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/audio_placeholder.png rename to ios/InstabugCore.framework/audio_placeholder.png diff --git a/ios/Instabug.framework/Instabug.bundle/audio_placeholder@2x.png b/ios/InstabugCore.framework/audio_placeholder@2x.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/audio_placeholder@2x.png rename to ios/InstabugCore.framework/audio_placeholder@2x.png diff --git a/ios/Instabug.framework/Instabug.bundle/audio_placeholder_3x.png b/ios/InstabugCore.framework/audio_placeholder_3x.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/audio_placeholder_3x.png rename to ios/InstabugCore.framework/audio_placeholder_3x.png diff --git a/ios/InstabugCore.framework/cs.lproj/Localizable.strings b/ios/InstabugCore.framework/cs.lproj/Localizable.strings new file mode 100644 index 0000000..8095610 Binary files /dev/null and b/ios/InstabugCore.framework/cs.lproj/Localizable.strings differ diff --git a/ios/InstabugCore.framework/da.lproj/Localizable.strings b/ios/InstabugCore.framework/da.lproj/Localizable.strings new file mode 100644 index 0000000..b093207 Binary files /dev/null and b/ios/InstabugCore.framework/da.lproj/Localizable.strings differ diff --git a/ios/InstabugCore.framework/de.lproj/Localizable.strings b/ios/InstabugCore.framework/de.lproj/Localizable.strings new file mode 100644 index 0000000..a923cf3 Binary files /dev/null and b/ios/InstabugCore.framework/de.lproj/Localizable.strings differ diff --git a/ios/InstabugCore.framework/en.lproj/Localizable.strings b/ios/InstabugCore.framework/en.lproj/Localizable.strings new file mode 100644 index 0000000..8284e78 Binary files /dev/null and b/ios/InstabugCore.framework/en.lproj/Localizable.strings differ diff --git a/ios/InstabugCore.framework/es.lproj/Localizable.strings b/ios/InstabugCore.framework/es.lproj/Localizable.strings new file mode 100644 index 0000000..804cc0d Binary files /dev/null and b/ios/InstabugCore.framework/es.lproj/Localizable.strings differ diff --git a/ios/InstabugCore.framework/fr.lproj/Localizable.strings b/ios/InstabugCore.framework/fr.lproj/Localizable.strings new file mode 100644 index 0000000..4a9e3a1 Binary files /dev/null and b/ios/InstabugCore.framework/fr.lproj/Localizable.strings differ diff --git a/ios/Instabug.framework/Instabug.bundle/instabuglogo.png b/ios/InstabugCore.framework/instabuglogo.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/instabuglogo.png rename to ios/InstabugCore.framework/instabuglogo.png diff --git a/ios/Instabug.framework/Instabug.bundle/instabuglogo@2x.png b/ios/InstabugCore.framework/instabuglogo@2x.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/instabuglogo@2x.png rename to ios/InstabugCore.framework/instabuglogo@2x.png diff --git a/ios/Instabug.framework/Instabug.bundle/instabuglogo@3x.png b/ios/InstabugCore.framework/instabuglogo@3x.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/instabuglogo@3x.png rename to ios/InstabugCore.framework/instabuglogo@3x.png diff --git a/ios/InstabugCore.framework/it.lproj/Localizable.strings b/ios/InstabugCore.framework/it.lproj/Localizable.strings new file mode 100644 index 0000000..4d8c8b9 Binary files /dev/null and b/ios/InstabugCore.framework/it.lproj/Localizable.strings differ diff --git a/ios/InstabugCore.framework/ja.lproj/Localizable.strings b/ios/InstabugCore.framework/ja.lproj/Localizable.strings new file mode 100644 index 0000000..d45cba3 Binary files /dev/null and b/ios/InstabugCore.framework/ja.lproj/Localizable.strings differ diff --git a/ios/InstabugCore.framework/ko.lproj/Localizable.strings b/ios/InstabugCore.framework/ko.lproj/Localizable.strings new file mode 100644 index 0000000..f3a38fb Binary files /dev/null and b/ios/InstabugCore.framework/ko.lproj/Localizable.strings differ diff --git a/ios/InstabugCore.framework/nb.lproj/Localizable.strings b/ios/InstabugCore.framework/nb.lproj/Localizable.strings new file mode 100644 index 0000000..fbbd192 Binary files /dev/null and b/ios/InstabugCore.framework/nb.lproj/Localizable.strings differ diff --git a/ios/InstabugCore.framework/nl.lproj/Localizable.strings b/ios/InstabugCore.framework/nl.lproj/Localizable.strings new file mode 100644 index 0000000..6e9325f Binary files /dev/null and b/ios/InstabugCore.framework/nl.lproj/Localizable.strings differ diff --git a/ios/Instabug.framework/Instabug.bundle/notificationEdge.png b/ios/InstabugCore.framework/notificationEdge.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/notificationEdge.png rename to ios/InstabugCore.framework/notificationEdge.png diff --git a/ios/Instabug.framework/Instabug.bundle/notificationEdge@2x.png b/ios/InstabugCore.framework/notificationEdge@2x.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/notificationEdge@2x.png rename to ios/InstabugCore.framework/notificationEdge@2x.png diff --git a/ios/Instabug.framework/Instabug.bundle/notificationEdge@3x.png b/ios/InstabugCore.framework/notificationEdge@3x.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/notificationEdge@3x.png rename to ios/InstabugCore.framework/notificationEdge@3x.png diff --git a/ios/InstabugCore.framework/pl.lproj/Localizable.strings b/ios/InstabugCore.framework/pl.lproj/Localizable.strings new file mode 100644 index 0000000..eddcbad Binary files /dev/null and b/ios/InstabugCore.framework/pl.lproj/Localizable.strings differ diff --git a/ios/Instabug.framework/Instabug.bundle/powerplushome.png b/ios/InstabugCore.framework/powerplushome.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/powerplushome.png rename to ios/InstabugCore.framework/powerplushome.png diff --git a/ios/InstabugCore.framework/pt-BR.lproj/Localizable.strings b/ios/InstabugCore.framework/pt-BR.lproj/Localizable.strings new file mode 100644 index 0000000..03356b3 Binary files /dev/null and b/ios/InstabugCore.framework/pt-BR.lproj/Localizable.strings differ diff --git a/ios/InstabugCore.framework/pt-PT.lproj/Localizable.strings b/ios/InstabugCore.framework/pt-PT.lproj/Localizable.strings new file mode 100644 index 0000000..62b3724 Binary files /dev/null and b/ios/InstabugCore.framework/pt-PT.lproj/Localizable.strings differ diff --git a/ios/InstabugCore.framework/ru.lproj/Localizable.strings b/ios/InstabugCore.framework/ru.lproj/Localizable.strings new file mode 100644 index 0000000..fb25bb1 Binary files /dev/null and b/ios/InstabugCore.framework/ru.lproj/Localizable.strings differ diff --git a/ios/Instabug.framework/Instabug.bundle/shake.png b/ios/InstabugCore.framework/shake.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/shake.png rename to ios/InstabugCore.framework/shake.png diff --git a/ios/InstabugCore.framework/sk.lproj/Localizable.strings b/ios/InstabugCore.framework/sk.lproj/Localizable.strings new file mode 100644 index 0000000..0ccc1fb Binary files /dev/null and b/ios/InstabugCore.framework/sk.lproj/Localizable.strings differ diff --git a/ios/Instabug.framework/Instabug.bundle/strip-frameworks.sh b/ios/InstabugCore.framework/strip-frameworks.sh similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/strip-frameworks.sh rename to ios/InstabugCore.framework/strip-frameworks.sh diff --git a/ios/InstabugCore.framework/sv.lproj/Localizable.strings b/ios/InstabugCore.framework/sv.lproj/Localizable.strings new file mode 100644 index 0000000..17a52e8 Binary files /dev/null and b/ios/InstabugCore.framework/sv.lproj/Localizable.strings differ diff --git a/ios/Instabug.framework/Instabug.bundle/tap.png b/ios/InstabugCore.framework/tap.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/tap.png rename to ios/InstabugCore.framework/tap.png diff --git a/ios/Instabug.framework/Instabug.bundle/tap@2x.png b/ios/InstabugCore.framework/tap@2x.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/tap@2x.png rename to ios/InstabugCore.framework/tap@2x.png diff --git a/ios/Instabug.framework/Instabug.bundle/tap@3x.png b/ios/InstabugCore.framework/tap@3x.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/tap@3x.png rename to ios/InstabugCore.framework/tap@3x.png diff --git a/ios/InstabugCore.framework/tr.lproj/Localizable.strings b/ios/InstabugCore.framework/tr.lproj/Localizable.strings new file mode 100644 index 0000000..f5004e1 Binary files /dev/null and b/ios/InstabugCore.framework/tr.lproj/Localizable.strings differ diff --git a/ios/Instabug.framework/Instabug.bundle/twofingers.png b/ios/InstabugCore.framework/twofingers.png similarity index 100% rename from ios/Instabug.framework/Instabug.bundle/twofingers.png rename to ios/InstabugCore.framework/twofingers.png diff --git a/ios/InstabugCore.framework/zh-Hans.lproj/Localizable.strings b/ios/InstabugCore.framework/zh-Hans.lproj/Localizable.strings new file mode 100644 index 0000000..d912561 Binary files /dev/null and b/ios/InstabugCore.framework/zh-Hans.lproj/Localizable.strings differ diff --git a/ios/InstabugCore.framework/zh-Hant-TW.lproj/Localizable.strings b/ios/InstabugCore.framework/zh-Hant-TW.lproj/Localizable.strings new file mode 100644 index 0000000..8ebff6a Binary files /dev/null and b/ios/InstabugCore.framework/zh-Hant-TW.lproj/Localizable.strings differ diff --git a/ios/InstabugCore.framework/zh-Hant.lproj/Localizable.strings b/ios/InstabugCore.framework/zh-Hant.lproj/Localizable.strings new file mode 100644 index 0000000..77b7524 Binary files /dev/null and b/ios/InstabugCore.framework/zh-Hant.lproj/Localizable.strings differ diff --git a/ios/RNInstabug/InstabugReactBridge.m b/ios/RNInstabug/InstabugReactBridge.m index 817a54b..95b77fb 100644 --- a/ios/RNInstabug/InstabugReactBridge.m +++ b/ios/RNInstabug/InstabugReactBridge.m @@ -331,6 +331,10 @@ RCT_EXPORT_METHOD(setViewHirearchyEnabled:(BOOL)viewHirearchyEnabled) { [Instabug setViewHierarchyEnabled:viewHirearchyEnabled]; } +RCT_EXPORT_METHOD(setVideoRecordingFloatingButtonPosition:(IBGPosition)position) { + [Instabug setVideoRecordingFloatingButtonPosition:position]; +} + RCT_EXPORT_METHOD(isRunningLive:(RCTResponseSenderBlock)callback) { BOOL result = NO; #if TARGET_OS_SIMULATOR @@ -374,6 +378,11 @@ RCT_EXPORT_METHOD(isRunningLive:(RCTResponseSenderBlock)callback) { @"rectMaxXEdge": @(CGRectMaxXEdge), @"rectMaxYEdge": @(CGRectMaxYEdge), + @"bottomRight": @(IBGPositionBottomRight), + @"topRight": @(IBGPositionTopRight), + @"bottomLeft": @(IBGPositionBottomLeft), + @"topLeft": @(IBGPositionTopLeft), + @"localeArabic": @(IBGLocaleArabic), @"localeChineseSimplified": @(IBGLocaleChineseSimplified), @"localeChineseTraditional": @(IBGLocaleChineseTraditional), diff --git a/ios/RNInstabug/RCTConvert+InstabugEnums.m b/ios/RNInstabug/RCTConvert+InstabugEnums.m index 1819688..5688d2a 100644 --- a/ios/RNInstabug/RCTConvert+InstabugEnums.m +++ b/ios/RNInstabug/RCTConvert+InstabugEnums.m @@ -7,7 +7,7 @@ // #import "RCTConvert+InstabugEnums.h" -#import +#import @implementation RCTConvert (InstabugEnums) @@ -71,6 +71,13 @@ RCT_ENUM_CONVERTER(IBGColorTheme, (@{ @"colorThemeDark": @(IBGColorThemeDark) }), IBGColorThemeLight, integerValue); +RCT_ENUM_CONVERTER(IBGPosition, (@{ + @"bottomRight": @(IBGPositionBottomRight), + @"topRight": @(IBGPositionTopRight), + @"bottomLeft": @(IBGPositionBottomLeft), + @"topLeft": @(IBGPositionTopLeft) + }), IBGPositionBottomRight, integerValue); + RCT_ENUM_CONVERTER(IBGString, (@{ @"shakeHint": @(IBGStringShakeHint), @"swipeHint": @(IBGStringSwipeHint), diff --git a/link.rb b/link.rb index 6e5a5ab..9e16808 100644 --- a/link.rb +++ b/link.rb @@ -14,11 +14,12 @@ project_location = "./ios/#{file_name}.xcodeproj" default_target_name = file_name framework_root = '../node_modules/instabug-reactnative/ios' framework_name = 'Instabug.framework' +framework_core = 'InstabugCore.framework' INSTABUG_PHASE_NAME = "Strip Frameworks" INSTABUG_PHASE_SCRIPT = <<-SCRIPTEND -bash "${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}/Instabug.framework/Instabug.bundle/strip-frameworks.sh" +bash "${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}/InstabugCore.framework/strip-frameworks.sh" SCRIPTEND # Get useful variables @@ -30,6 +31,7 @@ targets = project.targets.select { |target| (target.is_a? Xcodeproj::Project::Ob (target.product_type == "com.apple.product-type.application") && (target.platform_name == :ios) } framework_ref = frameworks_group.new_file("#{framework_root}/#{framework_name}") +framework_core_ref = frameworks_group.new_file("#{framework_root}/#{framework_core}") # Add Instabug to every target that is of type application targets.each do |target| @@ -61,8 +63,11 @@ targets.each do |target| # Add framework to target as "Embedded Frameworks" build_file = embed_frameworks_build_phase.add_file_reference(framework_ref) + build_core_file = embed_frameworks_build_phase.add_file_reference(framework_core_ref) target.frameworks_build_phase.add_file_reference(framework_ref) + target.frameworks_build_phase.add_file_reference(framework_core_ref) build_file.settings = { 'ATTRIBUTES' => ['CodeSignOnCopy', 'RemoveHeadersOnCopy'] } + build_core_file.settings = { 'ATTRIBUTES' => ['CodeSignOnCopy', 'RemoveHeadersOnCopy'] } #Add New Run Script Phase to Build Phases diff --git a/unlink.rb b/unlink.rb index ad7b497..10249dd 100644 --- a/unlink.rb +++ b/unlink.rb @@ -13,6 +13,7 @@ file_name = File.basename(project_path, ".xcodeproj") project_location = "./ios/#{file_name}.xcodeproj" framework_root = '../node_modules/instabug-reactnative/ios' framework_name = 'Instabug.framework' +framework_core = 'InstabugCore.framework' INSTABUG_PHASE_NAME = "Strip Frameworks" @@ -23,9 +24,11 @@ targets = project.targets.select { |target| (target.is_a? Xcodeproj::Project::Ob (target.product_type == "com.apple.product-type.application") && (target.platform_name == :ios) } framework_ref = frameworks_group.files.find { |file_reference| file_reference.path == "#{framework_root}/#{framework_name}"} +framework_core_ref = frameworks_group.files.find { |file_reference| file_reference.path == "#{framework_root}/#{framework_core}"} # Remove Instabug's framework from the Frameworks group frameworks_group.children.delete(framework_ref) +frameworks_group.children.delete(framework_core_ref) # Remove Instabug to every target that is of type application targets.each do |target| @@ -41,6 +44,7 @@ targets.each do |target| # Remove framework from target from "Embedded Frameworks" target.frameworks_build_phase.remove_file_reference(framework_ref) + target.frameworks_build_phase.remove_file_reference(framework_core_ref) #Delete New Run Script Phase from Build Phases shell_script_build_phase = target.shell_script_build_phases.find { |build_phase| build_phase.to_s == INSTABUG_PHASE_NAME }