Skip to content

Commit 3f9387f

Browse files
author
Ali Abdelfattah
authored
Merge branch 'release/10.8' into fix/discard-attachment-string-keys
2 parents 6687260 + 5df2744 commit 3f9387f

File tree

134 files changed

+72308
-68540
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+72308
-68540
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
## master
1+
## v10.8.0 (2021-08-04)
2+
3+
* Bumps Instabug native SDKs to v10.8
24
* Adds string keys for the discard attachment prompt dialog.
35

46
## v10.4.0 (2021-05-10)

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ android {
2929
dependencies {
3030
implementation 'com.android.support:multidex:1.0.3'
3131
implementation 'com.facebook.react:react-native:+'
32-
api('com.instabug.library:instabug:10.4.3.4') {
32+
api('com.instabug.library:instabug:10.8.1') {
3333
exclude group: 'com.android.support:appcompat-v7'
3434
}
3535
testImplementation 'org.mockito:mockito-core:1.10.19'

android/src/main/java/com/instabug/reactlibrary/RNInstabugReactnativePackage.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import com.instabug.library.visualusersteps.State;
1919
import com.instabug.reactlibrary.utils.InstabugUtil;
2020
import com.instabug.reactlibrary.utils.MainThreadHandler;
21+
import com.instabug.apm.APM;
2122

2223
import android.graphics.Color;
2324

@@ -67,6 +68,8 @@ public RNInstabugReactnativePackage(String androidApplicationToken, Application
6768
if(offset != null)
6869
BugReporting.setFloatingButtonOffset(offset);
6970

71+
// Temporarily disabling APM hot launches
72+
APM.setHotAppLaunchEnabled(false);
7073
}
7174

7275
public RNInstabugReactnativePackage(String androidApplicationToken, Application androidApplication,

ios/Instabug.xcframework/Info.plist

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,39 +5,39 @@
55
<key>AvailableLibraries</key>
66
<array>
77
<dict>
8-
<key>BitcodeSymbolMapsPath</key>
9-
<string>BCSymbolMaps</string>
108
<key>DebugSymbolsPath</key>
119
<string>dSYMs</string>
1210
<key>LibraryIdentifier</key>
13-
<string>ios-arm64_armv7</string>
11+
<string>ios-arm64_i386_x86_64-simulator</string>
1412
<key>LibraryPath</key>
1513
<string>Instabug.framework</string>
1614
<key>SupportedArchitectures</key>
1715
<array>
1816
<string>arm64</string>
19-
<string>armv7</string>
17+
<string>i386</string>
18+
<string>x86_64</string>
2019
</array>
2120
<key>SupportedPlatform</key>
2221
<string>ios</string>
22+
<key>SupportedPlatformVariant</key>
23+
<string>simulator</string>
2324
</dict>
2425
<dict>
26+
<key>BitcodeSymbolMapsPath</key>
27+
<string>BCSymbolMaps</string>
2528
<key>DebugSymbolsPath</key>
2629
<string>dSYMs</string>
2730
<key>LibraryIdentifier</key>
28-
<string>ios-arm64_i386_x86_64-simulator</string>
31+
<string>ios-arm64_armv7</string>
2932
<key>LibraryPath</key>
3033
<string>Instabug.framework</string>
3134
<key>SupportedArchitectures</key>
3235
<array>
3336
<string>arm64</string>
34-
<string>i386</string>
35-
<string>x86_64</string>
37+
<string>armv7</string>
3638
</array>
3739
<key>SupportedPlatform</key>
3840
<string>ios</string>
39-
<key>SupportedPlatformVariant</key>
40-
<string>simulator</string>
4141
</dict>
4242
</array>
4343
<key>CFBundlePackageType</key>

0 commit comments

Comments
 (0)