flutterfire
flutterfire copied to clipboard
[cloud_firestore]: Flutter App Crashes on Windows 10 While Listening to a Document
Is there an existing issue for this?
- [X] I have searched the existing issues.
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:
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
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!
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:
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.
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
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.
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.
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.
I'm sorry. I should have tested this on the cloud_firestore>example project. I will share the results shortly.
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.
Unfortunately, several issues have already been opened for this problem. This issue looks a lot like https://github.com/firebase/flutterfire/issues/12216
@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.
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!
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.
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!
any updates ? I want to buy new mini pc. but I need to make sure that the CPU is capable to run firebase.
I had the same problem on my windows and on my customer's windows. On my PC, I opened Visual Code installer, updated it, and made sure some C++ libraries were installed (not sure which one did the trick). The problem went away for now on my windows... However, the problem persists on my customer windows...
Any solution?
If you remove the folders in %LOCALAPPDATA% named firestore and firebase* it will work again, at least until restarted.
If you remove the folders in
%LOCALAPPDATA%named firestore and firebase* it will work again, at least until restarted.
I deleted my comment. I am sorry, this one works for me! deleting the Firestore folder solves the issue. but when we try to restart the app, we need to delete this folder repeatedly.
It is not a solution, the app will still crash when calling Firestore multiple times.
Unfortunately, nobody is working on it even if this issue is critical, we can't use Firestore on Windows.
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!
Still no solution for this, do not close it please
Opening on Visual Studio 2022 and running the project there, it was possible to see what happens just before the app crash:
ERROR: FIRESTORE INTERNAL ASSERTION FAILED: D:\a\firebase-cpp-sdk\firebase-cpp-sdk\out-sdk\external\src\firestore\Firestore\core\src\core\firestore_client.cc(217) void __cdecl firebase::firestore::core::FirestoreClient::Initialize(const class firebase::firestore::credentials::User &,const class firebase::firestore::api::Settings &): Failed to open DB: Internal: Failed to open LevelDB database at C:\Users\cicer\AppData\Local\firestore\[DEFAULT]\myapp\main: LevelDB error: Corruption: CURRENT points to a non-existent file: NotFound: C:\Users\cicer\AppData\Local\firestore\[DEFAULT]\myapp\main/MANIFEST-000009: The file system cannot find the file specified. (expected created.ok())
And also this one:
Unhandled exception at 0x00007FFE588DCF19 in myapp.exe: Microsoft C++ exception: firebase::firestore::FirestoreInternalError at memory location 0x000000327B9FF0A0.
Actually I am facing the issue mentioned here https://github.com/firebase/flutterfire/issues/12216 and here https://github.com/firebase/flutterfire/issues/12009
I wonder if it is related with the fact of multiple disks on the machine. It was happening on mine and I had two disks. I have only one now and it does not happen anymore.
The machines where I see it happening had two or more disks as well.
Just a guess.
Another info... I tried running the app as administrator and It worked a few times, but It crashes after some time.
If you remove the folders in
%LOCALAPPDATA%named firestore and firebase* it will work again, at least until restarted.
Since I created this issue, I have preferred to use a different server in my project. Therefore, I haven't been around here for a long time. Before trying the temporary solution, I tried running my old project. This issue was still valid. Then I tried this temporary solution. It works.
The issue is not permanently resolved. Unfortunately, working with both Flutter and Firebase on Windows feels like walking through a minefield.
If you share how you found this temporary solution, it might be helpful in finding a permanent fix. @apoleo88
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!
I will post it here, because it worked for me, although it is not a solution.
For some reason, using Firestore persistence, after the first access, the LDB and/or CURRENT files get corrupted. This only happens on some machines and I couldn't identify a pattern among them.
So, what I did to solve it was to clear the persistence as soon as Firebase is initialized, even before opening any screen in the app.
It looks like this:
void main() async { WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp( options: DefaultFirebaseOptions.currentPlatform, );
FirebaseFirestore.instance.settings = Settings( // Curiously, it is necessary to enable persistence to avoid a crash where the database of // this cache is not found. However, it is necessary to clear this same cache to avoid the crash due to it being corrupted. // https://github.com/firebase/flutterfire/issues/12987 persistenceEnabled: Platform.isWindows, );
// Curiously, it is necessary to enable persistence to avoid a crash where the database of // this cache is not found. However, it is necessary to clear this same cache // to avoid the crash due to it being corrupted. if (Platform.isWindows) { await FirestoreMF.instance.clearPersistence(); }
I do this only on Windows, as I haven't tested it on other platforms. In any case, it worked in the tests I did.
I mentioned it here https://github.com/firebase/flutterfire/issues/12987
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!
Since there haven't been any recent updates here, I am going to close this issue.
@olerhan if you're still experiencing this problem and want to continue the discussion just leave a comment here and we are happy to re-open this.
This is a fatal problem for us. We still can't develop flutter windows application with firebase. Please Solve it immediately. @google-oss-bot
I have a better solution. It works like delete firestore from %LOCALAPPDATA% but programmatically from your flutter app. Use the function and invoke the function from main function before runApp invoked. like this
Future
Future
I have a better solution. It works like delete firestore from %LOCALAPPDATA% but programmatically from your flutter app. Use the function and invoke the function from main function before runApp invoked. like this Future main() async { WidgetsFlutterBinding.ensureInitialized(); await Firebase.initializeApp( options: DefaultFirebaseOptions.currentPlatform, ); await clearFirestoreCache(); runApp(const App()); }
Future clearFirestoreCache() async { try { await FirebaseFirestore.instance.clearPersistence(); print("Firestore cache cleared successfully."); } catch (e) { print("Failed to clear Firestore cache: $e"); } }
Is this working ok ? I did clear the localappdata before starting the program, but after a few hours, the program still crashing