firebase / flutterfire

🔥 A collection of Firebase plugins for Flutter apps.
https://firebase.google.com/docs/flutter/setup
BSD 3-Clause "New" or "Revised" License
8.44k stars 3.91k forks source link

[cloud_firestore]: Flutter App Crashes on Windows 10 While Listening to a Document #12707

Open olerhan opened 3 weeks ago

olerhan commented 3 weeks ago

Is there an existing issue for this?

Which plugins are affected?

Cloud Functions

Which platforms are affected?

Windows

Description

When I run my Flutter application on Windows 10 x64, the app crashes while listening to a document with cloud_firestore. There are no debug messages shown. However, the same listening works flawlessly on macOS.

Reproducing the issue

Create Flutter Project for only windows platform flutter create --org com.clipnavi --description 'test' --platforms windows --template app test add firebase project dart pub global activate flutterfire_cli flutterfire configure --project=clipspace1 check only windows and enter. pub add flutter pub add firebase_core flutter pub add cloud_firestore Open project folder with vs code. main.dart:

import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
import 'package:test/firebase_options.dart';
import 'package:test/my_home_page.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await Firebase.initializeApp(
    options: DefaultFirebaseOptions.currentPlatform,
  );
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: MyHomePage(),
    );
  }
}

my_home_page.dart:

import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:flutter/material.dart';

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key});

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  bool isEnable = false;
  @override
  void initState() {
    super.initState();

    FirebaseFirestore.instance
        .collection("status")
        .doc("eELQ6vSdSPcgM5Ha3RTyHKtBPBl1")
        .snapshots()
        .listen(
      (document) {
        print("No problem 1");
        print("current data: ${document.data()}");
      },
      onError: (error) => print("Listen failed: $error"),
    );
  }

  @override
  Widget build(BuildContext context) {
    return Center(
      child: Text(isEnable ? "true" : "false"),
    );
  }
}

Check Firebase Database: Firebase Database

flutter run

Firebase Core version

2.30.1

Flutter Version

3.19.6

Relevant Log Output

Launching lib\main.dart on Windows in debug mode...
CMake Deprecation Warning at C:/Users/olerh/Desktop/windragon/test/build/windows/x64/extracted/firebase_cpp_sdk_windows/CMakeLists.txt:17 (cmake_minimum_required):
  Compatibility with CMake < 3.5 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.
2

√  Built build\windows\x64\runner\Debug\test.exe.
Connecting to VM Service at ws://127.0.0.1:51213/pc8BnbWb_lk=/ws
Lost connection to device.

Exited.

Flutter dependencies

Expand Flutter dependencies snippet
```yaml Dart SDK 3.3.4 Flutter SDK 3.19.6 test 1.0.0+1 dependencies: - cloud_firestore 4.17.2 [cloud_firestore_platform_interface cloud_firestore_web collection firebase_core firebase_core_platform_interface flutter meta] - cupertino_icons 1.0.8 - firebase_core 2.30.1 [firebase_core_platform_interface firebase_core_web flutter meta] - flutter 0.0.0 [characters collection material_color_utilities meta vector_math sky_engine] dev dependencies: - flutter_lints 3.0.2 [lints] - flutter_test 0.0.0 [flutter test_api matcher path fake_async clock stack_trace vector_math leak_tracker_flutter_testing async boolean_selector characters collection leak_tracker leak_tracker_testing material_color_utilities meta source_span stream_channel string_scanner term_glyph vm_service] transitive dependencies: - _flutterfire_internals 1.3.32 [collection firebase_core firebase_core_platform_interface flutter meta] - async 2.11.0 [collection meta] - boolean_selector 2.1.1 [source_span string_scanner] - characters 1.3.0 - clock 1.1.1 - cloud_firestore_platform_interface 6.2.2 [_flutterfire_internals collection firebase_core flutter meta plugin_platform_interface] - cloud_firestore_web 3.12.2 [_flutterfire_internals cloud_firestore_platform_interface collection firebase_core firebase_core_web flutter flutter_web_plugins] - collection 1.18.0 - fake_async 1.3.1 [clock collection] - firebase_core_platform_interface 5.0.0 [collection flutter flutter_test meta plugin_platform_interface] - firebase_core_web 2.16.0 [firebase_core_platform_interface flutter flutter_web_plugins meta web] - flutter_web_plugins 0.0.0 [flutter characters collection material_color_utilities meta vector_math] - leak_tracker 10.0.0 [clock collection meta path vm_service] - leak_tracker_flutter_testing 2.0.1 [flutter leak_tracker leak_tracker_testing matcher meta] - leak_tracker_testing 2.0.1 [leak_tracker matcher meta] - lints 3.0.0 - matcher 0.12.16+1 [async meta stack_trace term_glyph test_api] - material_color_utilities 0.8.0 [collection] - meta 1.11.0 - path 1.9.0 - plugin_platform_interface 2.1.8 [meta] - sky_engine 0.0.99 - source_span 1.10.0 [collection path term_glyph] - stack_trace 1.11.1 [path] - stream_channel 2.1.2 [async] - string_scanner 1.2.0 [source_span] - term_glyph 1.2.1 - test_api 0.6.1 [async boolean_selector collection meta source_span stack_trace stream_channel string_scanner term_glyph] - vector_math 2.1.4 - vm_service 13.0.0 - web 0.5.1 ```

Additional context and comments

Run flutter doctor -v

[√] Flutter (Channel stable, 3.19.6, on Microsoft Windows [Version 10.0.19045.4291], locale tr-TR)
    • Flutter version 3.19.6 on channel stable at C:\flutter
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision 54e66469a9 (8 days ago), 2024-04-17 13:08:03 -0700
    • Engine revision c4cd48e186
    • Dart version 3.3.4
    • DevTools version 2.31.1

[√] Windows Version (Installed version of Windows is version 10 or higher)

[√] Android toolchain - develop for Android devices (Android SDK version 34.0.0)
    • Android SDK at C:\Users\olerh\AppData\Local\Android\sdk
    • Platform android-34, build-tools 34.0.0
    • Java binary at: C:\Program Files\Android\Android Studio\jbr\bin\java
    • Java version OpenJDK Runtime Environment (build 17.0.9+0--11185874)
    • All Android licenses accepted.

[√] Chrome - develop for the web
    • Chrome at C:\Program Files\Google\Chrome\Application\chrome.exe

[√] Visual Studio - develop Windows apps (Visual Studio Community 2022 17.9.6)
    • Visual Studio at C:\Program Files\Microsoft Visual Studio\2022\Community
    • Visual Studio Community 2022 version 17.9.34728.123
    • Windows 10 SDK version 10.0.22621.0

[√] Android Studio (version 2023.2)
    • Android Studio at C:\Program Files\Android\Android Studio
    • Flutter plugin can be installed from:
       https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
       https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build 17.0.9+0--11185874)

[√] VS Code (version 1.88.1)
    • VS Code at C:\Users\olerh\AppData\Local\Programs\Microsoft VS Code
    • Flutter extension version 3.86.0

[√] Connected device (3 available)
    • Windows (desktop) • windows • windows-x64    • Microsoft Windows [Version 10.0.19045.4291]
    • Chrome (web)      • chrome  • web-javascript • Google Chrome 124.0.6367.78
    • Edge (web)        • edge    • web-javascript • Microsoft Edge 124.0.2478.51

[√] Network resources
    • All expected network resources are available.

• No issues found!
olerhan commented 3 weeks ago

I tried in addition to the above. I tried running the official flutterfire example for Cloud Firestore. First Run The application is running on Windows-x64, but no content is being displayed. First Run Screenshot: Ekran Alıntısı First Run Debug logs: Unfortunately, I couldn't save it, but I can tell you what happened. When I clicked on any item in the menu, I received an error saying 'channel sent a message from native to Flutter on a non-platform thread.' I manually stopped it while it was still running. Second Run On my second attempt, the application failed to run and behaved as described in the error report I sent in the subject line. Secon Run Debug Log:

Launching lib\main.dart on Windows in debug mode...
CMake Deprecation Warning at C:/Users/olerh/Desktop/windragon/gitler/flutterfire/packages/cloud_firestore/cloud_firestore/example/build/windows/x64/extracted/firebase_cpp_sdk_windows/CMakeLists.txt:17 (cmake_minimum_required):
  Compatibility with CMake < 3.5 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.
2

√  Built build\windows\x64\runner\Debug\cloud_firestore_example.exe.
Connecting to VM Service at ws://127.0.0.1:49679/zUkDJYEkZX0=/ws
Lost connection to device.

Exited.
russellwheatley commented 3 weeks ago

I had no problem running the firestore example app on windows and using the snapshot listener in your code. Check it out yourself by running this app with

flutter run -d windows
olerhan commented 3 weeks ago

Unfortunately, I did what you suggested, but the situation remains the same for me. The application is crashing. Additionally, I tried 'listening' to an AWS Amplify API project with flutter run -d windows and did not encounter any problems.

russellwheatley commented 3 weeks ago

Could be your windows version, maybe try a different editor (android studio). It seems something wrong with your environment as it works for me. Worth checking flutter repo for similar issue.

olerhan commented 3 weeks ago

I followed your advice (Android Studio) and encountered a different log screen. I am sharing it with you. Do you have any idea what it could be? shortened version:

Launching lib\main.dart on Windows in debug mode...
Building Windows application...
CMake Deprecation Warning at C:/Users/olerh/Desktop/windragon/test/build/windows/x64/extracted/firebase_cpp_sdk_windows/CMakeLists.txt:17 (cmake_minimum_required):
  Compatibility with CMake < 3.5 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.

firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_app_desktop.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_app_desktop.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_mutex_windows.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_mutex_windows.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_reference_counted_future_impl.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_reference_counted_future_impl.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_log.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_log.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_app_options.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_app_options.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_app_common.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_app_common.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_date_provider.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_date_provider.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_heartbeat_controller_desktop.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_heartbeat_controller_desktop.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_cleanup_notifier.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_cleanup_notifier.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_log_stdio.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_log_stdio.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d3d7d08a438878e74aeb2cbaaedfc967_flatbuffers.dir_Debug_idl_parser.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d3d7d08a438878e74aeb2cbaaedfc967_flatbuffers.dir_Debug_idl_parser.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_google_services_resource.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_google_services_resource.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_logger.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_logger.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_callback.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_callback.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_util.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_util.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_heartbeat_storage_desktop.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_heartbeat_storage_desktop.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_scheduler.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_scheduler.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_zlibwrapper.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_zlibwrapper.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_base64.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_base64.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_variant.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_variant.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_variant_util.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_variant_util.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d3d7d08a438878e74aeb2cbaaedfc967_flatbuffers.dir_Debug_util.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d3d7d08a438878e74aeb2cbaaedfc967_flatbuffers.dir_Debug_util.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_filesystem_desktop_windows.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_filesystem_desktop_windows.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_thread_cpp11.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_thread_cpp11.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_deflate.obj) : warning LNK4099: PDB '', 'firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_deflate.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_inflate.obj) : warning LNK4099: PDB '', 'firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_inflate.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_crc32.obj) : warning LNK4099: PDB '', 'firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_crc32.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_gzipheader.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d94e1bff3c0e8414a6679ea91c3e103e_firebase_app.dir_Debug_gzipheader.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_adler32.obj) : warning LNK4099: PDB '', 'firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_adler32.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_zutil.obj) : warning LNK4099: PDB '', 'firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_zutil.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_trees.obj) : warning LNK4099: PDB '', 'firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_trees.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_inftrees.obj) : warning LNK4099: PDB '', 'firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_inftrees.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_inffast.obj) : warning LNK4099: PDB '', 'firebase_app.lib(f6e938409d15d4e67858d89bcb981e00_zlibstatic.dir_Debug_inffast.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_aggregate_query.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_aggregate_query.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_query.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_query.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_field_path.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_field_path.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_set_options.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_set_options.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_document_reference.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_document_reference.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_document_snapshot.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_document_snapshot.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_field_value.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_field_value.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_filter.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_filter.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_listener_registration.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_listener_registration.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_settings.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_settings.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_transaction_options.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_transaction_options.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_write_batch.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_write_batch.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_firestore.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_firestore.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_firestore_main.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_firestore_main.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_geo_point.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_geo_point.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_timestamp.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_timestamp.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_hard_assert.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_hard_assert.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_futures.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_futures.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_aggregate_query_snapshot.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_aggregate_query_snapshot.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_query_core.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_query_core.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_aggregate_query.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_aggregate_query.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_aggregate_query_main.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_aggregate_query_main.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_query_snapshot.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_query_snapshot.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_query_main.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_query_main.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_comparison.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_comparison.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_field_path.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_field_path.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_collection_reference.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_collection_reference.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_exception_common.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_exception_common.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_util.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_util.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_document_reference.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_document_reference.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_document_reference_main.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_document_reference_main.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_snapshot_metadata.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_snapshot_metadata.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_to_string.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_to_string.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_document_snapshot.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_document_snapshot.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_document_snapshot_main.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_document_snapshot_main.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_field_value_main.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_field_value_main.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_filter_main.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_filter_main.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_executor_std.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_executor_std.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_write_batch_main.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_write_batch_main.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_compiler_info.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_compiler_info.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_status.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_status.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_load_bundle_task.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_load_bundle_task.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_settings.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_settings.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_database_id.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_database_id.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_firestore.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_firestore.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_load_bundle_task_progress.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(7ba01613985f32fe50e0c125a0414f54_firebase_firestore.dir_Debug_load_bundle_task_progress.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_async_queue.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_async_queue.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_byte_stream_cpp.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_byte_stream_cpp.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
'firebase_firestore.lib(cd97b2d513eb7912c3969931a03c64e3_absl_low_level_hash.dir_Debug_low_level_hash.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_secure_random_openssl.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_secure_random_openssl.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_reader.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_reader.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(a53e4a560550199705fe1efd9dfb5d84_firestore_protos_nanopb.dir_Debug_bundle.nanopb.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(a53e4a560550199705fe1efd9dfb5d84_firestore_protos_nanopb.dir_Debug_bundle.nanopb.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(a53e4a560550199705fe1efd9dfb5d84_firestore_protos_nanopb.dir_Debug_write.nanopb.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(a53e4a560550199705fe1efd9dfb5d84_firestore_protos_nanopb.dir_Debug_write.nanopb.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_ordered_code.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(4c456a4b533e2a6acad4654868657312_firestore_util.dir_Debug_ordered_code.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_firestore_index_value_writer.obj) : warning LNK4099: PDB '', 'firebase_firestore.lib(1563d4ec1bb2cfbdcd33c8f821a59874_firestore_core.dir_Debug_firestore_index_value_writer.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d7017cfa2b4147331b16a451ec58c76c_firebase_rest_lib.dir_Debug_controller_interface.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d7017cfa2b4147331b16a451ec58c76c_firebase_rest_lib.dir_Debug_controller_interface.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_cookie.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_cookie.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_asyn_thread.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_asyn_thread.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_dynbuf.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_dynbuf.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_mime.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_mime.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor 
[C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_dotdot.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_dotdot.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_vauth.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_vauth.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_digest.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_digest.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor 
firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_hostcheck.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_hostcheck.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\test\build\windows\x64\runner\test.vcxproj]
√  Built build\windows\x64\runner\Debug\test.exe.
Debug service listening on ws://127.0.0.1:60756/KZE1Ie8LEk8=/ws
Syncing files to device Windows...
Lost connection to device.
olerhan commented 3 weeks ago

I'm sorry. I should have tested this on the cloud_firestore>example project. I will share the results shortly.

olerhan commented 3 weeks ago

Same issue

Launching lib\main.dart on Windows in debug mode...
Building Windows application...
CMake Deprecation Warning at C:/Users/olerh/Desktop/windragon/gitler/flutterfire/packages/cloud_firestore/cloud_firestore/example/build/windows/x64/extracted/firebase_cpp_sdk_windows/CMakeLists.txt:17 (cmake_minimum_required):
  Compatibility with CMake < 3.5 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.
...
firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_x509asn1.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_x509asn1.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\gitler\flutterfire\packages\cloud_firestore\cloud_firestore\example\build\windows\x64\runner\cloud_firestore_example.vcxproj]
firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_dotdot.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_dotdot.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\gitler\flutterfire\packages\cloud_firestore\cloud_firestore\example\build\windows\x64\runner\cloud_firestore_example.vcxproj]
firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_vauth.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_vauth.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\gitler\flutterfire\packages\cloud_firestore\cloud_firestore\example\build\windows\x64\runner\cloud_firestore_example.vcxproj]
firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_digest.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_digest.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\gitler\flutterfire\packages\cloud_firestore\cloud_firestore\example\build\windows\x64\runner\cloud_firestore_example.vcxproj]
firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_hostcheck.obj) : warning LNK4099: PDB '', 'firebase_app.lib(d4b2e575872e0fa1bb01894d714f922c_libcurl.dir_Debug_hostcheck.obj)' ile veya '' �zerinde bulunamad�; nesne, hata ay�klama bilgileri yokmu� gibi ba�lan�yor [C:\Users\olerh\Desktop\windragon\gitler\flutterfire\packages\cloud_firestore\cloud_firestore\example\build\windows\x64\runner\cloud_firestore_example.vcxproj]
√  Built build\windows\x64\runner\Debug\cloud_firestore_example.exe.
Debug service listening on ws://127.0.0.1:64127/CURD3YAHDuA=/ws
Syncing files to device Windows...
Lost connection to device.
patricknicolosi commented 3 weeks ago

Unfortunately, several issues have already been opened for this problem. This issue looks a lot like https://github.com/firebase/flutterfire/issues/12216

russellwheatley commented 2 weeks ago

@olerhan - it is worth generating the sln file (flutter build windows --debug I think) and opening on visual studio, you ought to see the actual exception occurring.

It seems this is machine dependent and might even be due to the CPU running on your windows machine which is why I can't reproduce.

Worth noting FlutterFire windows is not production ready as illustrated on the README of this repository.

google-oss-bot commented 1 week ago

Hey @olerhan. We need more information to resolve this issue but there hasn't been an update in 7 weekdays. I'm marking the issue as stale and if there are no new updates in the next 7 days I will close it automatically.

If you have more information that will help us get to the bottom of this, just add a comment!

Shuusan commented 1 week ago

I'm also facing the same issue when calling a simple get function from the cloud_firestore library, like this:

FirebaseFirestore.instance.collection('printer_properties').doc(machineName).get();

However, when I tested it on a different PC, it ran without any problems. I'm wondering if this could be related to the PC specs, or if there's something in the Windows settings that needs to be enabled.