From c79d88ceeb472cd3116c3ffdf85ea19348e73c75 Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Mon, 6 Oct 2025 12:52:35 +0200 Subject: [PATCH 01/12] Update flutter_test.yml --- .github/workflows/flutter_test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/flutter_test.yml b/.github/workflows/flutter_test.yml index cd0dbdd322..65d03ad50b 100644 --- a/.github/workflows/flutter_test.yml +++ b/.github/workflows/flutter_test.yml @@ -71,6 +71,7 @@ jobs: avd-name: avd-x86_64-31 emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true + disk-size: 4096M script: ./gradlew testDebugUnitTest - name: launch android emulator & run android integration test @@ -84,6 +85,7 @@ jobs: avd-name: avd-x86_64-31 emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true + disk-size: 4096M script: flutter test integration_test/all.dart --dart-define SENTRY_AUTH_TOKEN_E2E=$SENTRY_AUTH_TOKEN_E2E --verbose - name: launch android emulator & run android integration test in profile mode @@ -97,6 +99,7 @@ jobs: avd-name: avd-x86_64-31 emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true + disk-size: 4096M script: flutter drive --driver=integration_test/test_driver/driver.dart --target=integration_test/sentry_widgets_flutter_binding_test.dart --profile -d emulator-5554 cocoa: From 07c56afe8ef5a658cd4a6823c1ff97686b27b05e Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Mon, 6 Oct 2025 13:18:14 +0200 Subject: [PATCH 02/12] Update --- .github/workflows/flutter_test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/flutter_test.yml b/.github/workflows/flutter_test.yml index 65d03ad50b..4d5ece71b2 100644 --- a/.github/workflows/flutter_test.yml +++ b/.github/workflows/flutter_test.yml @@ -64,11 +64,11 @@ jobs: uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 with: working-directory: packages/flutter/example/android - api-level: 31 + api-level: 30 profile: Nexus 6 arch: x86_64 force-avd-creation: false - avd-name: avd-x86_64-31 + avd-name: avd-x86_64-30 emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true disk-size: 4096M @@ -78,11 +78,11 @@ jobs: uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 with: working-directory: packages/flutter/example - api-level: 31 + api-level: 30 profile: Nexus 6 arch: x86_64 force-avd-creation: false - avd-name: avd-x86_64-31 + avd-name: avd-x86_64-30 emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true disk-size: 4096M @@ -92,11 +92,11 @@ jobs: uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 with: working-directory: packages/flutter/example - api-level: 31 + api-level: 30 profile: Nexus 6 arch: x86_64 force-avd-creation: false - avd-name: avd-x86_64-31 + avd-name: avd-x86_64-30 emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true disk-size: 4096M From d2a0f8c6bc4a8e4c89f8b5f1b3207ebb5b91b402 Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Mon, 6 Oct 2025 13:34:28 +0200 Subject: [PATCH 03/12] Update --- .github/workflows/flutter_test.yml | 40 ++++++++++++++++++++++++------ 1 file changed, 32 insertions(+), 8 deletions(-) diff --git a/.github/workflows/flutter_test.yml b/.github/workflows/flutter_test.yml index 4d5ece71b2..6e7273b6e1 100644 --- a/.github/workflows/flutter_test.yml +++ b/.github/workflows/flutter_test.yml @@ -54,23 +54,46 @@ jobs: - name: Gradle cache uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1 # pin@v3.0.0 - # TODO: fix emulator caching, in ubuntu-latest emulator won't boot: https://github.com/ReactiveCircus/android-emulator-runner/issues/278 - - name: build apk working-directory: packages/flutter/example/android run: flutter build apk --debug --target-platform=android-x64 + - name: AVD cache + uses: actions/cache@v4 + id: avd-cache + with: + path: | + ~/.android/avd/* + ~/.android/adb* + key: avd-api-30-x86_64-aosp_atd + + - name: Create AVD and generate snapshot for caching + if: steps.avd-cache.outputs.cache-hit != 'true' + uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed # pin@v2 + with: + api-level: 30 + target: aosp_atd + channel: canary # Necessary for ATDs + arch: x86_64 + force-avd-creation: false + disable-animations: true + disable-spellchecker: true + emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none + disk-size: 4096M + script: echo "Generated AVD snapshot for caching." + - name: launch android emulator & run android native test uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 with: working-directory: packages/flutter/example/android api-level: 30 - profile: Nexus 6 + target: aosp_atd + channel: canary arch: x86_64 force-avd-creation: false - avd-name: avd-x86_64-30 - emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true + disable-spellchecker: true + emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disk-size: 4096M script: ./gradlew testDebugUnitTest @@ -79,12 +102,13 @@ jobs: with: working-directory: packages/flutter/example api-level: 30 - profile: Nexus 6 + target: aosp_atd + channel: canary arch: x86_64 force-avd-creation: false - avd-name: avd-x86_64-30 - emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true + disable-spellchecker: true + emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disk-size: 4096M script: flutter test integration_test/all.dart --dart-define SENTRY_AUTH_TOKEN_E2E=$SENTRY_AUTH_TOKEN_E2E --verbose From ac0b7a5647b40c626810d3c42843c7c77e5a5f98 Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Mon, 6 Oct 2025 17:15:43 +0200 Subject: [PATCH 04/12] Update --- .github/workflows/flutter_test.yml | 75 ++++++++++-------------------- 1 file changed, 24 insertions(+), 51 deletions(-) diff --git a/.github/workflows/flutter_test.yml b/.github/workflows/flutter_test.yml index 6e7273b6e1..5d6ef2424c 100644 --- a/.github/workflows/flutter_test.yml +++ b/.github/workflows/flutter_test.yml @@ -54,76 +54,49 @@ jobs: - name: Gradle cache uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1 # pin@v3.0.0 - - name: build apk - working-directory: packages/flutter/example/android - run: flutter build apk --debug --target-platform=android-x64 - - - name: AVD cache - uses: actions/cache@v4 - id: avd-cache - with: - path: | - ~/.android/avd/* - ~/.android/adb* - key: avd-api-30-x86_64-aosp_atd - - - name: Create AVD and generate snapshot for caching - if: steps.avd-cache.outputs.cache-hit != 'true' - uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed # pin@v2 - with: - api-level: 30 - target: aosp_atd - channel: canary # Necessary for ATDs - arch: x86_64 - force-avd-creation: false - disable-animations: true - disable-spellchecker: true - emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none - disk-size: 4096M - script: echo "Generated AVD snapshot for caching." - - - name: launch android emulator & run android native test - uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 - with: - working-directory: packages/flutter/example/android - api-level: 30 - target: aosp_atd - channel: canary - arch: x86_64 - force-avd-creation: false - disable-animations: true - disable-spellchecker: true - emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none - disk-size: 4096M - script: ./gradlew testDebugUnitTest + # TODO: fix emulator caching, in ubuntu-latest emulator won't boot: https://github.com/ReactiveCircus/android-emulator-runner/issues/278 + + # - name: build apk + # working-directory: packages/flutter/example/android + # run: flutter build apk --debug --target-platform=android-x64 + + # - name: launch android emulator & run android native test + # uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 + # with: + # working-directory: packages/flutter/example/android + # api-level: 31 + # profile: Nexus 6 + # arch: x86_64 + # force-avd-creation: false + # avd-name: avd-x86_64-31 + # emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none + # disable-animations: true + # script: ./gradlew testDebugUnitTest - name: launch android emulator & run android integration test uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 with: working-directory: packages/flutter/example - api-level: 30 - target: aosp_atd - channel: canary + api-level: 31 + profile: Nexus 6 arch: x86_64 force-avd-creation: false + avd-name: avd-x86_64-31 + emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true - disable-spellchecker: true - emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none - disk-size: 4096M script: flutter test integration_test/all.dart --dart-define SENTRY_AUTH_TOKEN_E2E=$SENTRY_AUTH_TOKEN_E2E --verbose - name: launch android emulator & run android integration test in profile mode uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 with: working-directory: packages/flutter/example - api-level: 30 + api-level: 31 profile: Nexus 6 arch: x86_64 force-avd-creation: false - avd-name: avd-x86_64-30 + avd-name: avd-x86_64-31 emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true - disk-size: 4096M script: flutter drive --driver=integration_test/test_driver/driver.dart --target=integration_test/sentry_widgets_flutter_binding_test.dart --profile -d emulator-5554 cocoa: From 86e7857b5a415f00a7e94a5e4afbe2c0d8c3acd0 Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Mon, 6 Oct 2025 17:56:06 +0200 Subject: [PATCH 05/12] Update --- .github/workflows/flutter_test.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/flutter_test.yml b/.github/workflows/flutter_test.yml index 5d6ef2424c..19bcf3705f 100644 --- a/.github/workflows/flutter_test.yml +++ b/.github/workflows/flutter_test.yml @@ -60,18 +60,18 @@ jobs: # working-directory: packages/flutter/example/android # run: flutter build apk --debug --target-platform=android-x64 - # - name: launch android emulator & run android native test - # uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 - # with: - # working-directory: packages/flutter/example/android - # api-level: 31 - # profile: Nexus 6 - # arch: x86_64 - # force-avd-creation: false - # avd-name: avd-x86_64-31 - # emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none - # disable-animations: true - # script: ./gradlew testDebugUnitTest + - name: launch android emulator & run android native test + uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 + with: + working-directory: packages/flutter/example/android + api-level: 31 + profile: Nexus 6 + arch: x86_64 + force-avd-creation: false + avd-name: avd-x86_64-31 + emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none + disable-animations: true + script: ./gradlew testDebugUnitTest - name: launch android emulator & run android integration test uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 From e25a1899d25bed067f464127d7d9235461f0eb94 Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Mon, 6 Oct 2025 18:11:56 +0200 Subject: [PATCH 06/12] Update --- .github/workflows/flutter_test.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/flutter_test.yml b/.github/workflows/flutter_test.yml index 19bcf3705f..47a9f88fa0 100644 --- a/.github/workflows/flutter_test.yml +++ b/.github/workflows/flutter_test.yml @@ -60,10 +60,10 @@ jobs: # working-directory: packages/flutter/example/android # run: flutter build apk --debug --target-platform=android-x64 - - name: launch android emulator & run android native test + - name: launch android emulator & run android integration test uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 with: - working-directory: packages/flutter/example/android + working-directory: packages/flutter/example api-level: 31 profile: Nexus 6 arch: x86_64 @@ -71,9 +71,9 @@ jobs: avd-name: avd-x86_64-31 emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true - script: ./gradlew testDebugUnitTest + script: flutter test integration_test/all.dart --dart-define SENTRY_AUTH_TOKEN_E2E=$SENTRY_AUTH_TOKEN_E2E --verbose - - name: launch android emulator & run android integration test + - name: launch android emulator & run android integration test in profile mode uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 with: working-directory: packages/flutter/example @@ -84,12 +84,12 @@ jobs: avd-name: avd-x86_64-31 emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true - script: flutter test integration_test/all.dart --dart-define SENTRY_AUTH_TOKEN_E2E=$SENTRY_AUTH_TOKEN_E2E --verbose + script: flutter drive --driver=integration_test/test_driver/driver.dart --target=integration_test/sentry_widgets_flutter_binding_test.dart --profile -d emulator-5554 - - name: launch android emulator & run android integration test in profile mode + - name: launch android emulator & run android native test uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 with: - working-directory: packages/flutter/example + working-directory: packages/flutter/example/android api-level: 31 profile: Nexus 6 arch: x86_64 @@ -97,7 +97,7 @@ jobs: avd-name: avd-x86_64-31 emulator-options: -no-snapshot-save -no-window -accel on -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none disable-animations: true - script: flutter drive --driver=integration_test/test_driver/driver.dart --target=integration_test/sentry_widgets_flutter_binding_test.dart --profile -d emulator-5554 + script: ./gradlew testDebugUnitTest cocoa: name: '${{ matrix.target }} | ${{ matrix.sdk }}' From a28b02efbc56349437b91245fad2337d99198083 Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Tue, 7 Oct 2025 10:37:12 +0200 Subject: [PATCH 07/12] Update --- .github/workflows/flutter_test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/flutter_test.yml b/.github/workflows/flutter_test.yml index 47a9f88fa0..2bc357d0d6 100644 --- a/.github/workflows/flutter_test.yml +++ b/.github/workflows/flutter_test.yml @@ -56,6 +56,7 @@ jobs: # TODO: fix emulator caching, in ubuntu-latest emulator won't boot: https://github.com/ReactiveCircus/android-emulator-runner/issues/278 + # TODO: Building the APK leads to an error where the emulator won't boot: Not enough space to create userdata partition - let's fix it in another PR # - name: build apk # working-directory: packages/flutter/example/android # run: flutter build apk --debug --target-platform=android-x64 From f3e05b98cd358871f7d964fcfd9faa944c8f85b2 Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Tue, 7 Oct 2025 10:56:30 +0200 Subject: [PATCH 08/12] Update --- packages/flutter/example/pubspec.yaml | 28 +++++++++---------- .../flutter/example/pubspec_overrides.yaml | 18 ++++++------ 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/packages/flutter/example/pubspec.yaml b/packages/flutter/example/pubspec.yaml index e83f687898..c8cc513f37 100644 --- a/packages/flutter/example/pubspec.yaml +++ b/packages/flutter/example/pubspec.yaml @@ -2,11 +2,11 @@ name: sentry_flutter_example description: Demonstrates how to use the sentry_flutter plugin. version: 9.7.0-beta.5 -publish_to: 'none' # Remove this line if you wish to publish to pub.dev +publish_to: "none" # Remove this line if you wish to publish to pub.dev environment: - sdk: '>=3.5.0 <4.0.0' - flutter: '>=3.24.0' + sdk: ">=3.5.0 <4.0.0" + flutter: ">=3.24.0" dependencies: flutter: @@ -33,19 +33,19 @@ dependencies: #sqflite_common_ffi: ^2.0.0 #sqflite_common_ffi_web: ^0.3.0 http: ^1.0.0 - hive: any # This gets constrained by `sentry_hive` + hive: any # This gets constrained by `sentry_hive` sqlite3_flutter_libs: ^0.5.0 -dependency_overrides: - isar: - version: ^3.1.0 - hosted: https://pub.isar-community.dev/ - isar_flutter_libs: - version: ^3.1.0 - hosted: https://pub.isar-community.dev/ - isar_generator: - version: ^3.1.0 - hosted: https://pub.isar-community.dev/ +# dependency_overrides: +# isar: +# version: ^3.1.0 +# hosted: https://pub.isar-community.dev/ +# isar_flutter_libs: +# version: ^3.1.0 +# hosted: https://pub.isar-community.dev/ +# isar_generator: +# version: ^3.1.0 +# hosted: https://pub.isar-community.dev/ dev_dependencies: flutter_lints: ^2.0.0 diff --git a/packages/flutter/example/pubspec_overrides.yaml b/packages/flutter/example/pubspec_overrides.yaml index e76cae4bc5..45eecad2e3 100644 --- a/packages/flutter/example/pubspec_overrides.yaml +++ b/packages/flutter/example/pubspec_overrides.yaml @@ -18,12 +18,12 @@ dependency_overrides: path: ../../logging sentry_sqflite: path: ../../sqflite - isar: - hosted: https://pub.isar-community.dev/ - version: ^3.1.0 - isar_flutter_libs: - hosted: https://pub.isar-community.dev/ - version: ^3.1.0 - isar_generator: - hosted: https://pub.isar-community.dev/ - version: ^3.1.0 + # isar: + # hosted: https://pub.isar-community.dev/ + # version: ^3.1.0 + # isar_flutter_libs: + # hosted: https://pub.isar-community.dev/ + # version: ^3.1.0 + # isar_generator: + # hosted: https://pub.isar-community.dev/ + # version: ^3.1.0 From 937fa0c89ed0429a18e8e7860880c091509905ad Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Tue, 7 Oct 2025 11:01:25 +0200 Subject: [PATCH 09/12] Update --- .github/workflows/flutter_test.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/flutter_test.yml b/.github/workflows/flutter_test.yml index 2bc357d0d6..d6d27fd131 100644 --- a/.github/workflows/flutter_test.yml +++ b/.github/workflows/flutter_test.yml @@ -56,11 +56,6 @@ jobs: # TODO: fix emulator caching, in ubuntu-latest emulator won't boot: https://github.com/ReactiveCircus/android-emulator-runner/issues/278 - # TODO: Building the APK leads to an error where the emulator won't boot: Not enough space to create userdata partition - let's fix it in another PR - # - name: build apk - # working-directory: packages/flutter/example/android - # run: flutter build apk --debug --target-platform=android-x64 - - name: launch android emulator & run android integration test uses: reactivecircus/android-emulator-runner@1dcd0090116d15e7c562f8db72807de5e036a4ed #pin@v2.34.0 with: @@ -100,6 +95,10 @@ jobs: disable-animations: true script: ./gradlew testDebugUnitTest + - name: build apk + working-directory: packages/flutter/example/android + run: flutter build apk --debug --target-platform=android-x64 + cocoa: name: '${{ matrix.target }} | ${{ matrix.sdk }}' runs-on: macos-15-xlarge From ec1c3a4c38d176d8af269ec1689c1bc46c7633a5 Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Tue, 7 Oct 2025 13:14:51 +0200 Subject: [PATCH 10/12] Update --- packages/flutter/example/pubspec.yaml | 15 +++++---------- packages/flutter/example/pubspec_overrides.yaml | 13 ++++--------- 2 files changed, 9 insertions(+), 19 deletions(-) diff --git a/packages/flutter/example/pubspec.yaml b/packages/flutter/example/pubspec.yaml index c8cc513f37..a719505244 100644 --- a/packages/flutter/example/pubspec.yaml +++ b/packages/flutter/example/pubspec.yaml @@ -36,16 +36,11 @@ dependencies: hive: any # This gets constrained by `sentry_hive` sqlite3_flutter_libs: ^0.5.0 -# dependency_overrides: -# isar: -# version: ^3.1.0 -# hosted: https://pub.isar-community.dev/ -# isar_flutter_libs: -# version: ^3.1.0 -# hosted: https://pub.isar-community.dev/ -# isar_generator: -# version: ^3.1.0 -# hosted: https://pub.isar-community.dev/ +dependency_overrides: + isar_flutter_libs: + git: + url: https://github.com/Deepjyoti120/isar_flutter_libs.git + ref: main dev_dependencies: flutter_lints: ^2.0.0 diff --git a/packages/flutter/example/pubspec_overrides.yaml b/packages/flutter/example/pubspec_overrides.yaml index 45eecad2e3..8739f5f553 100644 --- a/packages/flutter/example/pubspec_overrides.yaml +++ b/packages/flutter/example/pubspec_overrides.yaml @@ -18,12 +18,7 @@ dependency_overrides: path: ../../logging sentry_sqflite: path: ../../sqflite - # isar: - # hosted: https://pub.isar-community.dev/ - # version: ^3.1.0 - # isar_flutter_libs: - # hosted: https://pub.isar-community.dev/ - # version: ^3.1.0 - # isar_generator: - # hosted: https://pub.isar-community.dev/ - # version: ^3.1.0 + isar_flutter_libs: + git: + url: https://github.com/Deepjyoti120/isar_flutter_libs.git + ref: main From d64be3f0f066621889f2aa5c973d748937157e05 Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Tue, 7 Oct 2025 13:16:12 +0200 Subject: [PATCH 11/12] Update --- packages/flutter/example/pubspec.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/flutter/example/pubspec.yaml b/packages/flutter/example/pubspec.yaml index a719505244..8f578028f2 100644 --- a/packages/flutter/example/pubspec.yaml +++ b/packages/flutter/example/pubspec.yaml @@ -2,11 +2,11 @@ name: sentry_flutter_example description: Demonstrates how to use the sentry_flutter plugin. version: 9.7.0-beta.5 -publish_to: "none" # Remove this line if you wish to publish to pub.dev +publish_to: 'none' # Remove this line if you wish to publish to pub.dev environment: - sdk: ">=3.5.0 <4.0.0" - flutter: ">=3.24.0" + sdk: '>=3.5.0 <4.0.0' + flutter: '>=3.24.0' dependencies: flutter: From e83b5e286781d6388cd37e874ad5038b46f73b1e Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Tue, 7 Oct 2025 13:44:08 +0200 Subject: [PATCH 12/12] Update --- packages/flutter/example/pubspec.yaml | 3 +-- packages/flutter/example/pubspec_overrides.yaml | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/flutter/example/pubspec.yaml b/packages/flutter/example/pubspec.yaml index 8f578028f2..f161455b0e 100644 --- a/packages/flutter/example/pubspec.yaml +++ b/packages/flutter/example/pubspec.yaml @@ -39,8 +39,7 @@ dependencies: dependency_overrides: isar_flutter_libs: git: - url: https://github.com/Deepjyoti120/isar_flutter_libs.git - ref: main + url: https://github.com/MrLittleWhite/isar_flutter_libs.git dev_dependencies: flutter_lints: ^2.0.0 diff --git a/packages/flutter/example/pubspec_overrides.yaml b/packages/flutter/example/pubspec_overrides.yaml index 8739f5f553..8f6b711d3b 100644 --- a/packages/flutter/example/pubspec_overrides.yaml +++ b/packages/flutter/example/pubspec_overrides.yaml @@ -20,5 +20,5 @@ dependency_overrides: path: ../../sqflite isar_flutter_libs: git: - url: https://github.com/Deepjyoti120/isar_flutter_libs.git - ref: main + url: https://github.com/MrLittleWhite/isar_flutter_libs.git +