Skip to content

Commit 8390f31

Browse files
committed
⬆️ Upgrade native iOS dependency
1 parent 9dcf539 commit 8390f31

24 files changed

+81
-74
lines changed

ios/Instabug.framework/Headers/IBGTypes.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -238,15 +238,15 @@ typedef NS_ENUM(NSInteger, IBGString) {
238238
IBGStringScreenRecording,
239239
IBGStringImage,
240240
IBGStringSurveyEnterYourAnswerPlaceholder,
241-
kIBGStringSurveyNoAnswerTitle,
242-
kIBGStringSurveyNoAnswerMessage,
243-
kIBGStringSurveySubmitTitle,
244-
kIBGStringVideoPressRecordTitle,
245-
kIBGStringLowDiskStorageTitle,
246-
kIBGStringLowDiskStorageMessage,
247-
kIBGStringCollectingDataText,
248-
kIBGStringExtraFieldIsRequiredText,
249-
kIBGStringExtraFieldMissingDataText
241+
IBGStringSurveyNoAnswerTitle,
242+
IBGStringSurveyNoAnswerMessage,
243+
IBGStringSurveySubmitTitle,
244+
IBGStringVideoPressRecordTitle,
245+
IBGStringLowDiskStorageTitle,
246+
IBGStringLowDiskStorageMessage,
247+
IBGStringCollectingDataText,
248+
IBGStringExtraFieldIsRequiredText,
249+
IBGStringExtraFieldMissingDataText
250250
};
251251

252252
/**

ios/Instabug.framework/Headers/Instabug.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2017 by Instabug, Inc., all rights reserved.
77
8-
Version: 7.3.9
8+
Version: 7.3.10
99
*/
1010

1111
#import <Foundation/Foundation.h>

ios/Instabug.framework/Info.plist

1 Byte
Binary file not shown.

ios/Instabug.framework/Instabug

19.2 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

ios/Instabug.framework/Instabug.bundle/Instabug_dsym_upload.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,21 @@ if [ "$EFFECTIVE_PLATFORM_NAME" == "-iphonesimulator" ]; then
2828
fi
2929

3030
# Check to make sure the app token exists
31+
# Objective-C
3132
if [ ! "${APP_TOKEN}" ]; then
3233
APP_TOKEN=$(grep -r 'Instabug startWithToken:@\"[0-9a-zA-Z]*\"' ./ -m 1 | grep -o '\"[0-9a-zA-Z]*\"' | cut -d "\"" -f 2)
3334
fi
3435

36+
# Swift
3537
if [ ! "${APP_TOKEN}" ]; then
3638
APP_TOKEN=$(grep -r 'Instabug.startWithToken(\"[0-9a-zA-Z]*\"' ./ -m 1 | grep -o '\"[0-9a-zA-Z]*\"' | cut -d "\"" -f 2)
3739
fi
3840

41+
if [ ! "${APP_TOKEN}" ]; then
42+
APP_TOKEN=$(grep -r 'Instabug.start(withToken:\"[0-9a-zA-Z]*\"' ./ -m 1 | grep -o '\"[0-9a-zA-Z]*\"' | cut -d "\"" -f 2)
43+
fi
44+
45+
3946
if [ ! "${APP_TOKEN}" ] || [ -z "${APP_TOKEN}" ];then
4047
echo "Instabug: err: APP_TOKEN not found. Make sure you've added the SDK initialization line [Instabug startWithToken: invocationEvent:]"
4148
exit 1

0 commit comments

Comments
 (0)