Skip to content

Commit db8962c

Browse files
authored
Merge pull request #29 from cstavitsky/wrap-root-component-v2
Wrap root component v2
2 parents 2b65f73 + 7bb32c0 commit db8962c

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ android {
138138
applicationId "com.sentry_react_native"
139139
minSdkVersion rootProject.ext.minSdkVersion
140140
targetSdkVersion rootProject.ext.targetSdkVersion
141-
versionCode 12
142-
versionName "2.0.12"
141+
versionCode 13
142+
versionName "2.0.13"
143143
}
144144
splits {
145145
abi {

app-debug.apk

-3 Bytes
Binary file not shown.

app-release.apk

562 Bytes
Binary file not shown.

ios/sentry_react_native-tvOS/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.0.12</string>
18+
<string>2.0.13</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>12</string>
22+
<string>13</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true />
2525
<key>NSAppTransportSecurity</key>

ios/sentry_react_native-tvOSTests/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.0.12</string>
18+
<string>2.0.13</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>12</string>
22+
<string>13</string>
2323
</dict>
2424
</plist>

ios/sentry_react_native.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@
670670
buildSettings = {
671671
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
672672
CLANG_ENABLE_MODULES = YES;
673-
CURRENT_PROJECT_VERSION = 11;
673+
CURRENT_PROJECT_VERSION = 12;
674674
ENABLE_BITCODE = NO;
675675
INFOPLIST_FILE = sentry_react_native/Info.plist;
676676
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
@@ -693,7 +693,7 @@
693693
buildSettings = {
694694
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
695695
CLANG_ENABLE_MODULES = YES;
696-
CURRENT_PROJECT_VERSION = 11;
696+
CURRENT_PROJECT_VERSION = 12;
697697
INFOPLIST_FILE = sentry_react_native/Info.plist;
698698
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
699699
OTHER_LDFLAGS = (

ios/sentry_react_native/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>2.0.12</string>
20+
<string>2.0.13</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>12</string>
24+
<string>13</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true />
2727
<key>NSAppTransportSecurity</key>

ios/sentry_react_nativeTests/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.0.12</string>
18+
<string>2.0.13</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>12</string>
22+
<string>13</string>
2323
</dict>
2424
</plist>

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry_react_native",
3-
"version": "2.0.12",
3+
"version": "2.0.13",
44
"private": true,
55
"scripts": {
66
"android": "react-native run-android",

sentry_react_native.app.zip

-9.96 KB
Binary file not shown.

sentry_react_native_debug.app.zip

-3.17 KB
Binary file not shown.

src/App.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,6 @@ const App = () => {
113113
);
114114
};
115115

116-
export default Sentry.withTouchEventBoundary(App, {
116+
export default Sentry.withTouchEventBoundary(Sentry.wrap(App), {
117117
ignoreNames: ['Provider', 'UselessName', /^SomeRegex/],
118118
});

0 commit comments

Comments
 (0)