File tree 6 files changed +30
-11
lines changed
6 files changed +30
-11
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Unreleased
4
+
5
+ ### Fixes
6
+
7
+ - Temporarily disable Windows native error & obfuscation support ([ #2363 ] ( https://github.com/getsentry/sentry-dart/pull/2363 ) )
8
+
3
9
## 8.10.0-beta.1
4
10
5
11
### Features
Original file line number Diff line number Diff line change @@ -44,10 +44,9 @@ class PlatformChecker {
44
44
// the OS checks return true when the browser runs on the checked platform.
45
45
// Example: platform.isAndroid return true if the browser is used on an
46
46
// Android device.
47
- return platform.isAndroid ||
48
- platform.isIOS ||
49
- platform.isMacOS ||
50
- platform.isWindows;
47
+ return platform.isAndroid || platform.isIOS || platform.isMacOS;
48
+ // Temporarily disabled due to https://github.com/getsentry/sentry-dart-plugin/issues/270
49
+ // platform.isWindows
51
50
}
52
51
53
52
static bool _isWebWithWasmSupport () {
Original file line number Diff line number Diff line change @@ -249,8 +249,11 @@ void main() {
249
249
hasFileSystemTransport: false ,
250
250
);
251
251
252
+ // Temporarily disabled due to https://github.com/getsentry/sentry-dart-plugin/issues/270
253
+ // testScopeObserver(
254
+ // options: sentryFlutterOptions, expectedHasNativeScopeObserver: true);
252
255
testScopeObserver (
253
- options: sentryFlutterOptions, expectedHasNativeScopeObserver: true );
256
+ options: sentryFlutterOptions, expectedHasNativeScopeObserver: false );
254
257
255
258
testConfiguration (
256
259
integrations: integrations,
@@ -271,7 +274,9 @@ void main() {
271
274
beforeIntegration: WidgetsFlutterBindingIntegration ,
272
275
afterIntegration: OnErrorIntegration );
273
276
274
- expect (SentryFlutter .native , isNotNull);
277
+ // Temporarily disabled due to https://github.com/getsentry/sentry-dart-plugin/issues/270
278
+ // expect(SentryFlutter.native, isNotNull);
279
+ expect (SentryFlutter .native , isNull);
275
280
expect (Sentry .currentHub.profilerFactory, isNull);
276
281
}, testOn: 'vm' );
277
282
Original file line number Diff line number Diff line change @@ -12,4 +12,7 @@ import 'sentry_native_test_web.dart'
12
12
13
13
// Defining main() here allows us to manually run/debug from VSCode.
14
14
// If we didn't need that, we could just `export` above.
15
- void main () => actual.main ();
15
+
16
+ // Temporarily disabled due to https://github.com/getsentry/sentry-dart-plugin/issues/270
17
+ // void main() => actual.main();
18
+ void main () {}
Original file line number Diff line number Diff line change 4
4
# customers of the plugin.
5
5
cmake_minimum_required (VERSION 3.14)
6
6
7
- include ("${CMAKE_CURRENT_SOURCE_DIR} /../sentry-native/sentry-native.cmake" )
7
+ # Temporarily disabled due to https://github.com/getsentry/sentry-dart-plugin/issues/270
8
+ # include("${CMAKE_CURRENT_SOURCE_DIR}/../sentry-native/sentry-native.cmake")
8
9
9
- # Even though sentry_flutter doesn't actually provide a useful plugin, we need to accomodate the Flutter tooling.
10
- # sentry_flutter/sentry_flutter_plugin.h is included by the flutter-tool generated plugin registrar:
11
- target_include_directories (sentry INTERFACE ${CMAKE_CURRENT_LIST_DIR} )
10
+ # # Even though sentry_flutter doesn't actually provide a useful plugin, we need to accomodate the Flutter tooling.
11
+ # # sentry_flutter/sentry_flutter_plugin.h is included by the flutter-tool generated plugin registrar:
12
+ # target_include_directories(sentry INTERFACE ${CMAKE_CURRENT_LIST_DIR})
13
+
14
+ # Temp code: replace with the previous code when sentry-native is enabled
15
+ add_library (sentry_flutter_plugin temp.cpp)
16
+ target_include_directories (sentry_flutter_plugin INTERFACE ${CMAKE_CURRENT_LIST_DIR} )
Original file line number Diff line number Diff line change
1
+ // Temp code, see cmakelists.txt for more info
You can’t perform that action at this time.
0 commit comments