From c53fe92973efd1aaab9969e5116981dc97cd644f Mon Sep 17 00:00:00 2001 From: Manoel Aranda Neto Date: Wed, 8 Feb 2023 17:17:31 -0300 Subject: [PATCH 1/3] fix test --- flutter/test/integrations/init_native_sdk_integration_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter/test/integrations/init_native_sdk_integration_test.dart b/flutter/test/integrations/init_native_sdk_integration_test.dart index d33f845d9d..ac5b1c7aa9 100644 --- a/flutter/test/integrations/init_native_sdk_integration_test.dart +++ b/flutter/test/integrations/init_native_sdk_integration_test.dart @@ -53,7 +53,7 @@ void main() { 'maxCacheItems': 30, 'sendDefaultPii': false, 'enableOutOfMemoryTracking': true, - 'enableNdkScopeSync': false, + 'enableNdkScopeSync': true, 'enableAutoPerformanceTracking': true, 'sendClientReports': true }); From d6e1c5b0f2b22262546d6898822844637a33d4fd Mon Sep 17 00:00:00 2001 From: Manoel Aranda Neto Date: Tue, 28 Feb 2023 16:17:25 +0100 Subject: [PATCH 2/3] Fix Build Web example runners --- .github/workflows/dart.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dart.yml b/.github/workflows/dart.yml index f17192f939..5654bd1dea 100644 --- a/.github/workflows/dart.yml +++ b/.github/workflows/dart.yml @@ -57,9 +57,10 @@ jobs: dart pub get dart compile exe bin/example.dart - # if condition because of: The pubspec.lock file has changed since the .dart_tool/package_config.json file was generated, please run "pub get" again. + # Windows if condition because of: The pubspec.lock file has changed since the .dart_tool/package_config.json file was generated, please run "pub get" again. + # stable if condition because of: beta channel requires newer build_web_compilers and build_runner with Dart 3 - name: Build Web example - if: runner.os != 'Windows' + if: runner.os != 'Windows' && matrix.sdk == 'stable' run: | cd example_web dart pub get From c0ddc86feb8d66ecd61b56751111f9e780774fc7 Mon Sep 17 00:00:00 2001 From: Manoel Aranda Neto Date: Tue, 28 Feb 2023 16:43:37 +0100 Subject: [PATCH 3/3] fix --- flutter/test/integrations/init_native_sdk_integration_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter/test/integrations/init_native_sdk_integration_test.dart b/flutter/test/integrations/init_native_sdk_integration_test.dart index ac5b1c7aa9..d33f845d9d 100644 --- a/flutter/test/integrations/init_native_sdk_integration_test.dart +++ b/flutter/test/integrations/init_native_sdk_integration_test.dart @@ -53,7 +53,7 @@ void main() { 'maxCacheItems': 30, 'sendDefaultPii': false, 'enableOutOfMemoryTracking': true, - 'enableNdkScopeSync': true, + 'enableNdkScopeSync': false, 'enableAutoPerformanceTracking': true, 'sendClientReports': true });