├── .gitignore ├── README.md ├── analysis_options.yaml ├── cloud_firestore ├── cloud_firestore_dart │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ ├── google-services.json │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── eu │ │ │ │ │ │ │ └── long1 │ │ │ │ │ │ │ └── cloud_firestore_dart_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── settings.gradle │ │ │ └── upload.key │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ └── main.dart │ │ ├── macos │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ ├── Flutter-Release.xcconfig │ │ │ │ └── GeneratedPluginRegistrant.swift │ │ │ ├── GoogleService-Info.plist │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── GoogleService-Info.plist │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ ├── favicon.png │ │ │ ├── icons │ │ │ ├── Icon-192.png │ │ │ └── Icon-512.png │ │ │ ├── index.html │ │ │ └── manifest.json │ ├── lib │ │ ├── cloud_firestore_dart.dart │ │ └── src │ │ │ ├── collection_reference_dart.dart │ │ │ ├── document_reference_dart.dart │ │ │ ├── field_value_dart.dart │ │ │ ├── field_value_factory_dart.dart │ │ │ ├── index.dart │ │ │ ├── query_dart.dart │ │ │ ├── transaction_dart.dart │ │ │ ├── util │ │ │ ├── codec_utility.dart │ │ │ ├── database.dart │ │ │ └── document_reference_utils.dart │ │ │ └── write_batch_dart.dart │ ├── pubspec.lock │ └── pubspec.yaml └── cloud_firestore_vm │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── google-services.json │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── eu │ │ │ │ │ │ └── long1 │ │ │ │ │ │ └── cloud_firestore_vm_example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── upload.key │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ ├── database.dart │ │ ├── main.dart │ │ └── platform_dependencies.dart │ ├── linux │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── app_configuration.mk │ │ ├── flutter │ │ │ ├── .template_version │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.mk │ │ ├── main.cc │ │ ├── window_configuration.cc │ │ └── window_configuration.h │ ├── macos │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ ├── Flutter-Release.xcconfig │ │ │ └── GeneratedPluginRegistrant.swift │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_1024.png │ │ │ │ ├── app_icon_128.png │ │ │ │ ├── app_icon_16.png │ │ │ │ ├── app_icon_256.png │ │ │ │ ├── app_icon_32.png │ │ │ │ ├── app_icon_512.png │ │ │ │ └── app_icon_64.png │ │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ │ ├── Configs │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ │ ├── DebugProfile.entitlements │ │ │ ├── Info.plist │ │ │ ├── MainFlutterWindow.swift │ │ │ └── Release.entitlements │ ├── pubspec.lock │ └── pubspec.yaml │ ├── lib │ ├── cloud_firestore_vm.dart │ └── src │ │ ├── firebase │ │ ├── firestore │ │ │ ├── auth │ │ │ │ ├── credentials_provider.dart │ │ │ │ ├── empty_credentials_provider.dart │ │ │ │ ├── firebase_auth_credentials_provider.dart │ │ │ │ ├── token.dart │ │ │ │ └── user.dart │ │ │ ├── blob.dart │ │ │ ├── collection_reference.dart │ │ │ ├── core │ │ │ │ ├── bound.dart │ │ │ │ ├── database_info.dart │ │ │ │ ├── document_view_change.dart │ │ │ │ ├── document_view_change_set.dart │ │ │ │ ├── event_manager.dart │ │ │ │ ├── filter │ │ │ │ │ ├── array_contains_any_filter.dart │ │ │ │ │ ├── array_contains_filter.dart │ │ │ │ │ ├── field_filter.dart │ │ │ │ │ ├── filter.dart │ │ │ │ │ ├── filter_operator.dart │ │ │ │ │ ├── in_filter.dart │ │ │ │ │ ├── key_field_filter.dart │ │ │ │ │ └── key_field_in_filter.dart │ │ │ │ ├── firestore_client.dart │ │ │ │ ├── index_range.dart │ │ │ │ ├── limbo_document_change.dart │ │ │ │ ├── listent_sequence.dart │ │ │ │ ├── online_state.dart │ │ │ │ ├── order_by.dart │ │ │ │ ├── query.dart │ │ │ │ ├── query_stream.dart │ │ │ │ ├── sync_engine.dart │ │ │ │ ├── target_id_generator.dart │ │ │ │ ├── transaction.dart │ │ │ │ ├── user_data.dart │ │ │ │ ├── version.dart │ │ │ │ ├── view.dart │ │ │ │ ├── view_change.dart │ │ │ │ └── view_snapshot.dart │ │ │ ├── document_change.dart │ │ │ ├── document_reference.dart │ │ │ ├── document_snapshot.dart │ │ │ ├── field_path.dart │ │ │ ├── field_value.dart │ │ │ ├── firestore.dart │ │ │ ├── firestore_error.dart │ │ │ ├── firestore_multi_db_component.dart │ │ │ ├── firestore_settings.dart │ │ │ ├── geo_point.dart │ │ │ ├── local │ │ │ │ ├── document_reference.dart │ │ │ │ ├── encoded_path.dart │ │ │ │ ├── index_cursor.dart │ │ │ │ ├── indexed_query_engine.dart │ │ │ │ ├── local_documents_view.dart │ │ │ │ ├── local_serializer.dart │ │ │ │ ├── local_store.dart │ │ │ │ ├── local_view_changes.dart │ │ │ │ ├── local_write_result.dart │ │ │ │ ├── lru_delegate.dart │ │ │ │ ├── lru_garbage_collector.dart │ │ │ │ ├── memory │ │ │ │ │ ├── memory_eager_reference_delegate.dart │ │ │ │ │ ├── memory_index_manager.dart │ │ │ │ │ ├── memory_lru_reference_delegate.dart │ │ │ │ │ ├── memory_mutation_queue.dart │ │ │ │ │ ├── memory_persistence.dart │ │ │ │ │ ├── memory_query_cache.dart │ │ │ │ │ └── memory_remote_document_cache.dart │ │ │ │ ├── persistance │ │ │ │ │ ├── index_manager.dart │ │ │ │ │ ├── mutation_queue.dart │ │ │ │ │ ├── persistence.dart │ │ │ │ │ ├── query_cache.dart │ │ │ │ │ ├── reference_delegate.dart │ │ │ │ │ ├── remote_document_cache.dart │ │ │ │ │ └── stats_collector.dart │ │ │ │ ├── query_data.dart │ │ │ │ ├── query_engine.dart │ │ │ │ ├── query_purpose.dart │ │ │ │ ├── reference_set.dart │ │ │ │ ├── simple_query_engine.dart │ │ │ │ └── sqlite │ │ │ │ │ ├── sqlite_collection_index.dart │ │ │ │ │ ├── sqlite_index_manager.dart │ │ │ │ │ ├── sqlite_lru_reference_delegate.dart │ │ │ │ │ ├── sqlite_mutation_queue.dart │ │ │ │ │ ├── sqlite_persistence.dart │ │ │ │ │ ├── sqlite_query_cache.dart │ │ │ │ │ ├── sqlite_remote_document_cache.dart │ │ │ │ │ └── sqlite_schema.dart │ │ │ ├── metadata_change.dart │ │ │ ├── model │ │ │ │ ├── base_path.dart │ │ │ │ ├── database_id.dart │ │ │ │ ├── document.dart │ │ │ │ ├── document_collections.dart │ │ │ │ ├── document_key.dart │ │ │ │ ├── document_set.dart │ │ │ │ ├── field_path.dart │ │ │ │ ├── maybe_document.dart │ │ │ │ ├── mutation │ │ │ │ │ ├── array_transform_operation.dart │ │ │ │ │ ├── delete_mutation.dart │ │ │ │ │ ├── field_mask.dart │ │ │ │ │ ├── field_transform.dart │ │ │ │ │ ├── mutation.dart │ │ │ │ │ ├── mutation_batch.dart │ │ │ │ │ ├── mutation_batch_result.dart │ │ │ │ │ ├── mutation_result.dart │ │ │ │ │ ├── numeric_increment_transform_operation.dart │ │ │ │ │ ├── patch_mutation.dart │ │ │ │ │ ├── precondition.dart │ │ │ │ │ ├── server_timestamp_operation.dart │ │ │ │ │ ├── set_mutation.dart │ │ │ │ │ ├── transform_mutation.dart │ │ │ │ │ └── transform_operation.dart │ │ │ │ ├── no_document.dart │ │ │ │ ├── resource_path.dart │ │ │ │ ├── snapshot_version.dart │ │ │ │ ├── unknown_document.dart │ │ │ │ └── value │ │ │ │ │ ├── array_value.dart │ │ │ │ │ ├── blob_value.dart │ │ │ │ │ ├── bool_value.dart │ │ │ │ │ ├── double_value.dart │ │ │ │ │ ├── field_value.dart │ │ │ │ │ ├── geo_point_value.dart │ │ │ │ │ ├── integer_value.dart │ │ │ │ │ ├── null_value.dart │ │ │ │ │ ├── number_value.dart │ │ │ │ │ ├── object_value.dart │ │ │ │ │ ├── reference_value.dart │ │ │ │ │ ├── server_timestamp_value.dart │ │ │ │ │ ├── string_value.dart │ │ │ │ │ └── timestamp_value.dart │ │ │ ├── query.dart │ │ │ ├── query_document_snapshot.dart │ │ │ ├── query_snapshot.dart │ │ │ ├── remote │ │ │ │ ├── datastore │ │ │ │ │ ├── base_stream.dart │ │ │ │ │ ├── channel_options_provider.dart │ │ │ │ │ ├── datastore.dart │ │ │ │ │ ├── firestore_client.dart │ │ │ │ │ ├── transaction_client.dart │ │ │ │ │ ├── watch_stream.dart │ │ │ │ │ └── write_stream.dart │ │ │ │ ├── existence_filter.dart │ │ │ │ ├── firestore_call_credentials.dart │ │ │ │ ├── online_state_tracker.dart │ │ │ │ ├── remote_event.dart │ │ │ │ ├── remote_serializer.dart │ │ │ │ ├── remote_store.dart │ │ │ │ ├── target_change.dart │ │ │ │ ├── target_state.dart │ │ │ │ ├── watch_change.dart │ │ │ │ └── watch_change_aggregator.dart │ │ │ ├── server_timestamp_behavior.dart │ │ │ ├── set_options.dart │ │ │ ├── snapshot_metadata.dart │ │ │ ├── source.dart │ │ │ ├── transaction.dart │ │ │ ├── user_data_converter.dart │ │ │ ├── util │ │ │ │ ├── assert.dart │ │ │ │ ├── database.dart │ │ │ │ ├── executor.dart │ │ │ │ ├── exponential_backoff.dart │ │ │ │ ├── incoming_stream_observer.dart │ │ │ │ ├── listener.dart │ │ │ │ ├── on_error_resume.dart.dart │ │ │ │ ├── operators.dart │ │ │ │ ├── timer_task.dart │ │ │ │ ├── types.dart │ │ │ │ └── util.dart │ │ │ └── write_batch.dart │ │ └── timestamp.dart │ │ └── proto │ │ ├── build_imports.dart │ │ ├── firebase │ │ ├── firestore │ │ │ ├── index.dart │ │ │ └── proto │ │ │ │ ├── index.dart │ │ │ │ ├── maybe_document.pb.dart │ │ │ │ ├── maybe_document.pbenum.dart │ │ │ │ ├── maybe_document.pbjson.dart │ │ │ │ ├── mutation.pb.dart │ │ │ │ ├── mutation.pbenum.dart │ │ │ │ ├── mutation.pbjson.dart │ │ │ │ ├── target.pb.dart │ │ │ │ ├── target.pbenum.dart │ │ │ │ └── target.pbjson.dart │ │ └── index.dart │ │ ├── google │ │ ├── api │ │ │ ├── annotations.pb.dart │ │ │ ├── annotations.pbenum.dart │ │ │ ├── annotations.pbjson.dart │ │ │ ├── http.pb.dart │ │ │ ├── http.pbenum.dart │ │ │ ├── http.pbjson.dart │ │ │ └── index.dart │ │ ├── firestore │ │ │ ├── index.dart │ │ │ └── v1 │ │ │ │ ├── common.pb.dart │ │ │ │ ├── common.pbenum.dart │ │ │ │ ├── common.pbjson.dart │ │ │ │ ├── document.pb.dart │ │ │ │ ├── document.pbenum.dart │ │ │ │ ├── document.pbjson.dart │ │ │ │ ├── firestore.pb.dart │ │ │ │ ├── firestore.pbenum.dart │ │ │ │ ├── firestore.pbgrpc.dart │ │ │ │ ├── firestore.pbjson.dart │ │ │ │ ├── index.dart │ │ │ │ ├── query.pb.dart │ │ │ │ ├── query.pbenum.dart │ │ │ │ ├── query.pbjson.dart │ │ │ │ ├── write.pb.dart │ │ │ │ ├── write.pbenum.dart │ │ │ │ └── write.pbjson.dart │ │ ├── index.dart │ │ ├── protobuf │ │ │ ├── any.pb.dart │ │ │ ├── any.pbenum.dart │ │ │ ├── any.pbjson.dart │ │ │ ├── empty.pb.dart │ │ │ ├── empty.pbenum.dart │ │ │ ├── empty.pbjson.dart │ │ │ ├── index.dart │ │ │ ├── struct.pb.dart │ │ │ ├── struct.pbenum.dart │ │ │ ├── struct.pbjson.dart │ │ │ ├── timestamp.pb.dart │ │ │ ├── timestamp.pbenum.dart │ │ │ ├── timestamp.pbjson.dart │ │ │ ├── wrappers.pb.dart │ │ │ ├── wrappers.pbenum.dart │ │ │ └── wrappers.pbjson.dart │ │ ├── rpc │ │ │ ├── index.dart │ │ │ ├── status.pb.dart │ │ │ ├── status.pbenum.dart │ │ │ └── status.pbjson.dart │ │ └── type │ │ │ ├── index.dart │ │ │ ├── latlng.pb.dart │ │ │ ├── latlng.pbenum.dart │ │ │ └── latlng.pbjson.dart │ │ └── index.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ ├── res │ └── protos │ │ ├── firebase │ │ └── firestore │ │ │ └── proto │ │ │ ├── maybe_document.proto │ │ │ ├── mutation.proto │ │ │ └── target.proto │ │ ├── generate_proto.sh │ │ └── google │ │ ├── api │ │ ├── annotations.proto │ │ └── http.proto │ │ ├── firestore │ │ └── v1 │ │ │ ├── common.proto │ │ │ ├── document.proto │ │ │ ├── firestore.proto │ │ │ ├── query.proto │ │ │ └── write.proto │ │ ├── protobuf │ │ ├── any.proto │ │ ├── empty.proto │ │ ├── struct.proto │ │ ├── timestamp.proto │ │ └── wrappers.proto │ │ ├── rpc │ │ └── status.proto │ │ └── type │ │ └── latlng.proto │ └── test │ ├── integration │ └── firebase │ │ └── firestore │ │ ├── array_transforms_server_application_test.dart │ │ ├── array_transforms_test.dart │ │ ├── cursor_test.dart │ │ ├── fields_test.dart │ │ ├── firestore_test.dart │ │ ├── numeric_transformas_test.dart │ │ ├── query_test.dart │ │ ├── remote │ │ └── stream_test.dart │ │ ├── server_timestamp_test.dart │ │ ├── smoke_test.dart │ │ ├── source_test.dart │ │ ├── stream_subscription_test.dart │ │ ├── transaction_test.dart │ │ ├── type_test.dart │ │ ├── validation_test.dart │ │ └── write_batch_test.dart │ ├── res │ └── json │ │ ├── collection_spec_test.json │ │ ├── existence_filter_spec_test.json │ │ ├── limbo_spec_test.json │ │ ├── limit_spec_test.json │ │ ├── listen_spec_test.json │ │ ├── offline_spec_test.json │ │ ├── orderby_spec_test.json │ │ ├── perf_spec_test.json │ │ ├── persistence_spec_test.json │ │ ├── query_spec_test.json │ │ ├── remote_store_spec_test.json │ │ ├── resume_token_spec_test.json │ │ └── write_spec_test.json │ ├── unit │ └── firebase │ │ └── firestore │ │ ├── blob_test.dart │ │ ├── collection_reference_test.dart │ │ ├── core │ │ ├── document_view_change_set_test.dart │ │ ├── event_manager_test.dart │ │ ├── query_stream_test.dart │ │ ├── query_test.dart │ │ ├── target_id_generator_test.dart │ │ ├── view_snapshot_test.dart │ │ └── view_test.dart │ │ ├── document_change_test.dart │ │ ├── document_reference_test.dart │ │ ├── document_snapshot_test.dart │ │ ├── field_path_test.dart │ │ ├── field_value_test.dart │ │ ├── geo_point_test.dart │ │ ├── local │ │ ├── accumulating_stats_collector.dart │ │ ├── cases │ │ │ ├── index_manager_test_case.dart │ │ │ ├── local_store_test_case.dart │ │ │ ├── lru_garbage_collector_test_case.dart │ │ │ ├── mutation_queue_test_case.dart │ │ │ ├── query_cache_test_case.dart │ │ │ └── remote_document_cache_test_case.dart │ │ ├── encoded_path_test.dart │ │ ├── local_serializer_test.dart │ │ ├── memory_index_manager_test.dart │ │ ├── memory_local_store_test.dart │ │ ├── memory_lru_garbage_collector_test.dart │ │ ├── memory_mutation_queue_test.dart │ │ ├── memory_query_cache_test.dart │ │ ├── memory_remote_document_cache_test.dart │ │ ├── mock │ │ │ └── database_mock.dart │ │ ├── persistence_test_helpers.dart │ │ ├── reference_set_test.dart │ │ ├── sqlite_index_manager_test.dart │ │ ├── sqlite_local_store_test.dart │ │ ├── sqlite_lru_garbage_collector_test.dart │ │ ├── sqlite_mutation_queue_test.dart │ │ ├── sqlite_query_cache_test.dart │ │ ├── sqlite_remote_document_cache_test.dart │ │ └── sqlite_schema_test.dart │ │ ├── model │ │ ├── document_key_test.dart │ │ ├── document_set_test.dart │ │ ├── document_test.dart │ │ ├── field_path_test.dart │ │ ├── field_value_test.dart │ │ └── mutation_test.dart │ │ ├── query_snapshot_test.dart │ │ ├── query_test.dart │ │ ├── remote │ │ ├── mock_datastore.dart │ │ ├── remote_event_test.dart │ │ ├── remote_serializer_test.dart │ │ └── remote_store_test.dart │ │ ├── snapshot_metadata_test.dart │ │ ├── spec │ │ ├── memory_spec_test.dart │ │ ├── query_event.dart │ │ ├── spec_test_case.dart │ │ └── sqlite_spec_test.dart │ │ ├── test_util.dart │ │ ├── timestamp_test.dart │ │ ├── user_data_converter_test.dart │ │ └── util │ │ ├── test_target_metadata_provider.dart │ │ └── util_test.dart │ └── util │ ├── await_helper.dart │ ├── comparator_test.dart │ ├── equals_tester.dart │ ├── event_accumulator.dart │ ├── integration_test_util.dart │ ├── prod_provider │ └── firestore_provider.dart │ ├── relationship_tester.dart │ ├── test_access_helper.dart │ └── test_util.dart ├── dev ├── sdk_cloud │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── firebase.json │ ├── functions │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── lib │ │ ├── generated_plugin_registrant.dart │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── web │ │ ├── .well-known │ │ ├── apple-developer-domain-association.txt │ │ └── microsoft-identity-association.json │ │ ├── favicon.png │ │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-512.png │ │ ├── index.html │ │ ├── manifest.json │ │ ├── pp.html │ │ └── tac.html └── tools │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ └── main.dart │ ├── create.sh │ ├── lib │ ├── create_app.dart │ ├── create_project.dart │ ├── download_config.dart │ ├── firebase │ │ ├── android.dart │ │ ├── firebase.dart │ │ ├── flutter.dart │ │ ├── ios.dart │ │ └── web.dart │ └── run_command.dart │ ├── node │ ├── .gitignore │ ├── lib │ │ └── index.js │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── tslint.json │ ├── pubspec.yaml │ └── upload.key ├── firebase_auth ├── firebase_auth_dart │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ ├── google-services.json │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── eu │ │ │ │ │ │ │ └── long1 │ │ │ │ │ │ │ └── firebase_auth_dart_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── settings.gradle │ │ │ └── upload.key │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── GoogleService-Info.plist │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── main.dart │ │ │ ├── register_page.dart │ │ │ └── signin_page.dart │ │ ├── macos │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ ├── Flutter-Release.xcconfig │ │ │ │ └── GeneratedPluginRegistrant.swift │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ ├── favicon.png │ │ │ ├── icons │ │ │ ├── Icon-192.png │ │ │ └── Icon-512.png │ │ │ ├── index.html │ │ │ └── manifest.json │ ├── lib │ │ └── firebase_auth_dart.dart │ ├── pubspec.lock │ └── pubspec.yaml └── firebase_auth_vm │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ ├── README.md │ ├── dart │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bin │ │ │ └── main.dart │ │ ├── lib │ │ │ ├── example.dart │ │ │ └── src │ │ │ │ ├── auth │ │ │ │ ├── action_code.dart │ │ │ │ ├── action_code_info.dart │ │ │ │ ├── create_custom_token.dart │ │ │ │ ├── create_user.dart │ │ │ │ ├── current_user.dart │ │ │ │ ├── fetch_sign_in_methods.dart │ │ │ │ ├── language_code.dart │ │ │ │ ├── link_provider.dart │ │ │ │ ├── reauthenticate_with_credential.dart │ │ │ │ ├── send_email_verification.dart │ │ │ │ ├── sign_in_anonymously.dart │ │ │ │ ├── sign_in_with_credential.dart │ │ │ │ ├── sign_in_with_custom_token.dart │ │ │ │ ├── sign_in_with_email_and_link.dart │ │ │ │ ├── sign_in_with_email_and_password.dart │ │ │ │ └── unlink_provider.dart │ │ │ │ ├── credentials │ │ │ │ └── sing_in_with_credential.dart │ │ │ │ ├── initialize.dart │ │ │ │ ├── no_user.dart │ │ │ │ ├── options.dart │ │ │ │ ├── update │ │ │ │ ├── base.dart │ │ │ │ └── update_profile.dart │ │ │ │ ├── user.dart │ │ │ │ ├── utils │ │ │ │ ├── codes.dart │ │ │ │ ├── console.dart │ │ │ │ ├── device_code.dart │ │ │ │ ├── email_validator.dart │ │ │ │ ├── extensions.dart │ │ │ │ └── twitter_helper.dart │ │ │ │ └── widgets │ │ │ │ ├── credential_getters.dart │ │ │ │ ├── get_email_and_password.dart │ │ │ │ ├── multiple_string_option.dart │ │ │ │ ├── option.dart │ │ │ │ ├── progress.dart │ │ │ │ ├── simple_selection_list_option.dart │ │ │ │ └── single_string_option.dart │ │ ├── pubspec.lock │ │ └── pubspec.yaml │ └── flutter │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── google-services.json │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── eu │ │ │ │ │ │ └── long1 │ │ │ │ │ │ └── firebase_auth_vm_example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── upload.key │ │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── GoogleService-Info.plist │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ ├── firebase_config.dart │ │ ├── main.dart │ │ ├── platform_dependencies.dart │ │ ├── register_page.dart │ │ └── signin_page.dart │ │ ├── macos │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ ├── Flutter-Release.xcconfig │ │ │ └── GeneratedPluginRegistrant.swift │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_1024.png │ │ │ │ ├── app_icon_128.png │ │ │ │ ├── app_icon_16.png │ │ │ │ ├── app_icon_256.png │ │ │ │ ├── app_icon_32.png │ │ │ │ ├── app_icon_512.png │ │ │ │ └── app_icon_64.png │ │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ │ ├── DebugProfile.entitlements │ │ │ ├── Info.plist │ │ │ ├── MainFlutterWindow.swift │ │ │ └── Release.entitlements │ │ ├── pubspec.lock │ │ └── pubspec.yaml │ ├── lib │ ├── firebase_auth_vm.dart │ ├── firebase_auth_vm.g.dart │ └── src │ │ ├── auth_providers.dart │ │ ├── auth_result.dart │ │ ├── data │ │ ├── firebase_auth_api.dart │ │ ├── secure_token_api.dart │ │ ├── secure_token_service.dart │ │ └── user_storage.dart │ │ ├── firebase_auth.dart │ │ ├── firebase_user.dart │ │ ├── models │ │ ├── action_code_info.dart │ │ ├── action_code_settings.dart │ │ ├── auth_credential.dart │ │ ├── auth_operation_type.dart │ │ ├── impl.dart │ │ ├── oob_code_type.dart │ │ ├── provider_type.dart │ │ ├── secure_token.dart │ │ ├── serializers.dart │ │ ├── serializers.g.dart │ │ ├── sign_in_with_game_center_request.dart │ │ ├── user.dart │ │ └── user_update_info.dart │ │ └── util │ │ ├── api_key_client.dart │ │ ├── errors.dart │ │ ├── errors.json │ │ ├── generate_errors.dart │ │ ├── http_server.dart │ │ ├── sequential_runner.dart │ │ └── web_utils.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── firebase_core ├── _firebase_database_collection_vm │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── _firebase_database_collection_vm.dart │ │ └── src │ │ │ ├── array_sorted_map.dart │ │ │ ├── immutable_sorted_map.dart │ │ │ ├── immutable_sorted_map_iterator.dart │ │ │ ├── immutable_sorted_set.dart │ │ │ ├── llrb_black_value_node.dart │ │ │ ├── llrb_empty_node.dart │ │ │ ├── llrb_node.dart │ │ │ ├── llrb_red_value_node.dart │ │ │ ├── lltb_value_node.dart │ │ │ ├── rb_tree_sorted_map.dart │ │ │ └── standard_compartor.dart │ ├── pubspec.yaml │ └── test │ │ ├── array_sorted_map_test.dart │ │ └── rb_tree_sorted_map_test.dart ├── _firebase_internal_vm │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── _firebase_internal_vm.dart │ │ └── src │ │ │ ├── auth.dart │ │ │ ├── internal.dart │ │ │ └── util │ │ │ ├── base64_utils.dart │ │ │ ├── log.dart │ │ │ ├── preconditions.dart │ │ │ └── to_string_helper.dart │ └── pubspec.yaml ├── firebase_core_dart │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ ├── google-services.json │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── eu │ │ │ │ │ │ │ └── long1 │ │ │ │ │ │ │ └── firebase_core_dart_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── settings.gradle │ │ │ └── upload.key │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── GoogleService-Info.plist │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── firebase_config_io.dart │ │ │ ├── firebase_config_js.dart │ │ │ └── main.dart │ │ ├── macos │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ ├── Flutter-Release.xcconfig │ │ │ │ └── GeneratedPluginRegistrant.swift │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ ├── favicon.png │ │ │ ├── icons │ │ │ ├── Icon-192.png │ │ │ └── Icon-512.png │ │ │ ├── index.html │ │ │ └── manifest.json │ ├── lib │ │ └── firebase_core_dart.dart │ ├── pubspec.lock │ └── pubspec.yaml └── firebase_core_vm │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── google-services.json │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── eu │ │ │ │ │ │ └── long1 │ │ │ │ │ │ └── firebase_core_vm_example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── upload.key │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── GoogleService-Info.plist │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ ├── main.dart │ │ └── platform_dependencies.dart │ ├── macos │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ ├── Flutter-Release.xcconfig │ │ │ └── GeneratedPluginRegistrant.swift │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_1024.png │ │ │ │ ├── app_icon_128.png │ │ │ │ ├── app_icon_16.png │ │ │ │ ├── app_icon_256.png │ │ │ │ ├── app_icon_32.png │ │ │ │ ├── app_icon_512.png │ │ │ │ └── app_icon_64.png │ │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ │ ├── Configs │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ │ ├── DebugProfile.entitlements │ │ │ ├── Info.plist │ │ │ ├── MainFlutterWindow.swift │ │ │ └── Release.entitlements │ ├── pubspec.lock │ └── pubspec.yaml │ ├── lib │ ├── firebase_core_vm.dart │ ├── platform_dependencies.dart │ └── src │ │ ├── firebase_app.dart │ │ ├── firebase_error.dart │ │ ├── firebase_options.dart │ │ ├── platform_dependencies.dart │ │ ├── platform_io.dart │ │ └── platform_js.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── firebase_storage_dart ├── .gitignore ├── CHANGELOG.md ├── README.md ├── lib │ ├── firebase_storage.dart │ └── src │ │ ├── cancel_exception.dart │ │ ├── cancellable_future.dart │ │ ├── controllable_future.dart │ │ ├── delete_storage_task.dart │ │ ├── file_download_task.dart │ │ ├── firebase_storage.dart │ │ ├── get_download_url_task.dart │ │ ├── get_metadata_task.dart │ │ ├── internal │ │ ├── adaptive_stream_buffer.dart │ │ ├── exponential_backoff_sender.dart │ │ ├── slash_util.dart │ │ ├── task_events.dart │ │ ├── task_impl.dart │ │ ├── task_proxy.dart │ │ ├── util.dart │ │ └── version.dart │ │ ├── network │ │ ├── delete_network_request.dart │ │ ├── get_metadata_network_request.dart │ │ ├── get_network_request.dart │ │ ├── network_request.dart │ │ ├── resumable_network_request.dart │ │ ├── resumable_upload_byte_request.dart │ │ ├── resumable_upload_cancel_request.dart │ │ ├── resumable_upload_query_request.dart │ │ ├── resumable_upload_start_request.dart │ │ └── update_metadata_network_request.dart │ │ ├── storage_exception.dart │ │ ├── storage_metadata.dart │ │ ├── storage_reference.dart │ │ ├── storage_task.dart │ │ ├── storage_task_manager.dart │ │ ├── storage_task_scheduler.dart │ │ ├── stream_download_task.dart │ │ ├── streamed_task.dart │ │ ├── task.dart │ │ ├── update_metadata_task.dart │ │ └── util │ │ └── wrapped_future.dart ├── pubspec.yaml └── test │ ├── firebase_storage_test.dart │ ├── res │ └── assets │ │ ├── 1.1mb.dat │ │ ├── 12kb.dat │ │ ├── adaptiveChunking_network.txt │ │ ├── adaptiveChunking_task.txt │ │ ├── cancelledUpload_network.txt │ │ ├── cancelledUpload_task.txt │ │ ├── clearMetadata_network.txt │ │ ├── clearMetadata_task.txt │ │ ├── deleteBlob_network.txt │ │ ├── deleteBlob_task.txt │ │ ├── downloadUrl_network.txt │ │ ├── downloadUrl_task.txt │ │ ├── empty.dat │ │ ├── emptyDownload_network.txt │ │ ├── emptyDownload_task.txt │ │ ├── emptyStreamDownload_background.txt │ │ ├── emptyStreamDownload_network.txt │ │ ├── emptyStreamDownload_task.txt │ │ ├── emptyUpload_network.txt │ │ ├── emptyUpload_task.txt │ │ ├── fileDownloadCanceled_task.txt │ │ ├── fileDownloadResume_network.txt │ │ ├── fileDownloadResume_task.txt │ │ ├── fileDownload_network.txt │ │ ├── fileDownload_task.txt │ │ ├── fileUploadNoRecovery_network.txt │ │ ├── fileUploadNoRecovery_task.txt │ │ ├── fileUploadRecovery_network.txt │ │ ├── fileUploadRecovery_task.txt │ │ ├── fileUploadWithPauseCancel_network.txt │ │ ├── fileUploadWithPauseCancel_task.txt │ │ ├── fileUploadWithPauseResume_network.txt │ │ ├── fileUploadWithPauseResume_task.txt │ │ ├── fileUploadWithQueueCancel_task.txt │ │ ├── fileUpload_network.txt │ │ ├── fileUpload_task.txt │ │ ├── flubbertest.jpg │ │ ├── image.jpg │ │ ├── smallTextUpload2_network.txt │ │ ├── smallTextUpload2_task.txt │ │ ├── smallTextUpload_network.txt │ │ ├── smallTextUpload_task.txt │ │ ├── streamDownloadCanceled_task.txt │ │ ├── streamDownloadWithETagChange_background.txt │ │ ├── streamDownloadWithETagChange_network.txt │ │ ├── streamDownloadWithETagChange_task.txt │ │ ├── streamDownloadWithResumeAndCancel_background.txt │ │ ├── streamDownloadWithResumeAndCancel_network.txt │ │ ├── streamDownloadWithResumeAndCancel_task.txt │ │ ├── streamDownloadWithResume_background.txt │ │ ├── streamDownloadWithResume_network.txt │ │ ├── streamDownloadWithResume_task.txt │ │ ├── streamDownload_background.txt │ │ ├── streamDownload_network.txt │ │ ├── streamDownload_task.txt │ │ ├── streamUploadWithInterruptions_network.txt │ │ ├── streamUploadWithInterruptions_task.txt │ │ ├── unicodeMetadata_network.txt │ │ ├── unicodeMetadata_task.txt │ │ ├── updateMetadata_network.txt │ │ ├── updateMetadata_task.txt │ │ ├── uploadWithSpace_network.txt │ │ └── uploadWithSpace_task.txt │ └── unit │ └── network │ ├── delete_test.dart │ ├── download_test.dart │ ├── mock_storage_task_scheduler.dart │ ├── network_layer_mock.dart │ ├── test_command_helper.dart │ ├── test_download_helper.dart │ ├── test_http_client_provider.dart │ └── test_util.dart └── google_sign_in_dart ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── google-services.json │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── eu │ │ │ │ │ └── long1 │ │ │ │ │ └── google_sign_in_dart_example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── upload.key ├── gcp │ ├── .firebaserc │ ├── .gitignore │ ├── README.md │ ├── firebase.json │ └── functions │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── tslint.json ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── GoogleService-Info.plist │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── main.dart │ ├── platform_io.dart │ └── platform_js.dart ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── main.cc │ ├── my_application.cc │ └── my_application.h ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ └── MainMenu.xib │ │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements ├── pubspec.lock ├── pubspec.yaml └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── lib ├── google_sign_in_dartio.dart └── src │ ├── code_exchange_sing_in.dart │ ├── common.dart │ ├── crypto.dart │ ├── data_storage.dart │ └── token_sign_in.dart ├── pubspec.lock └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 8f7327f83a3e094285163ae402c6f94190fc1674 8 | channel: dev 9 | 10 | project_type: package 11 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## [0.0.1] - TODO: Add release date. 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 8f7327f83a3e094285163ae402c6f94190fc1674 8 | channel: dev 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/android/app/src/main/kotlin/eu/long1/cloud_firestore_dart_example/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package eu.long1.cloud_firestore_dart_example 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/android/upload.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/android/upload.key -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/.gitignore: -------------------------------------------------------------------------------- 1 | # Flutter-related 2 | **/Flutter/ephemeral/ 3 | **/Pods/ 4 | 5 | # Xcode-related 6 | **/xcuserdata/ 7 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | @NSApplicationMain 5 | class AppDelegate: FlutterAppDelegate { 6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { 7 | return true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Debug.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Release.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/web/favicon.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_dart/example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_dart/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 4049889d9eecc8fb3eda316a5c371eeb636b2ae5 8 | channel: master 9 | 10 | project_type: package 11 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 4049889d9eecc8fb3eda316a5c371eeb636b2ae5 8 | channel: master 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/README.md: -------------------------------------------------------------------------------- 1 | # cloud_firestore_vm_example 2 | 3 | Example app for cloud_firestore_vm -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/android/app/src/main/kotlin/eu/long1/cloud_firestore_vm_example/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package eu.long1.cloud_firestore_vm_example 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/android/upload.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/android/upload.key -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/linux/flutter/.template_version: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | #include "generated_plugin_registrant.h" 6 | 7 | 8 | void RegisterPlugins(flutter::PluginRegistry* registry) { 9 | } 10 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | #ifndef GENERATED_PLUGIN_REGISTRANT_ 6 | #define GENERATED_PLUGIN_REGISTRANT_ 7 | 8 | #include 9 | 10 | // Registers Flutter plugins. 11 | void RegisterPlugins(flutter::PluginRegistry* registry); 12 | 13 | #endif // GENERATED_PLUGIN_REGISTRANT_ 14 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/linux/window_configuration.cc: -------------------------------------------------------------------------------- 1 | #include "window_configuration.h" 2 | 3 | const char *kFlutterWindowTitle = "cloud_firestore_vm_example"; 4 | const unsigned int kFlutterWindowWidth = 800; 5 | const unsigned int kFlutterWindowHeight = 600; 6 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/.gitignore: -------------------------------------------------------------------------------- 1 | # Flutter-related 2 | **/Flutter/ephemeral/ 3 | **/Pods/ 4 | 5 | # Xcode-related 6 | **/xcuserdata/ 7 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | @NSApplicationMain 5 | class AppDelegate: FlutterAppDelegate { 6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { 7 | return true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/cloud_firestore/cloud_firestore_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Debug.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Release.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/firebase/firestore/core/version.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 19/09/2018 4 | 5 | /// Holds static version string of the SDK. 6 | class Version { 7 | static const String sdkVersion = '0.0.1-dev'; 8 | static const String grpcVersion = '2.1.3'; 9 | } 10 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/firebase/firestore/remote/existence_filter.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 24/09/2018 4 | 5 | /// Simplest form of existence filter 6 | class ExistenceFilter { 7 | const ExistenceFilter(this.count); 8 | 9 | final int count; 10 | 11 | @override 12 | String toString() => 'ExistenceFilter{count:$count}'; 13 | } 14 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/firebase/firestore/util/executor.dart: -------------------------------------------------------------------------------- 1 | import 'dart:async'; 2 | 3 | class Executor { 4 | Executor(); 5 | 6 | Future run(final Future Function() handler) => handler(); 7 | 8 | void close() {} 9 | } 10 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/firebase/firestore/util/listener.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 17/09/2018 4 | 5 | typedef Listener = void Function(T value); 6 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/firebase/firestore/util/operators.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 17/09/2018 4 | 5 | bool isNotNull(T value) { 6 | return value != null; 7 | } 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/firebase/firestore/util/types.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 19/09/2018 4 | 5 | import 'dart:async'; 6 | 7 | typedef Runnable = void Function(); 8 | typedef Supplier = Future Function(); 9 | typedef Consumer = void Function(T value); 10 | typedef Transaction = Future Function(); 11 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/firebase/firestore/index.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/firebase/firestore/proto/index.dart: -------------------------------------------------------------------------------- 1 | export 'maybe_document.pb.dart'; 2 | export 'maybe_document.pbenum.dart'; 3 | export 'maybe_document.pbjson.dart'; 4 | export 'mutation.pb.dart'; 5 | export 'mutation.pbenum.dart'; 6 | export 'mutation.pbjson.dart'; 7 | export 'target.pb.dart'; 8 | export 'target.pbenum.dart'; 9 | export 'target.pbjson.dart'; 10 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/firebase/firestore/proto/maybe_document.pbenum.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: firebase/firestore/proto/maybe_document.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/firebase/firestore/proto/mutation.pbenum.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: firebase/firestore/proto/mutation.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/firebase/firestore/proto/target.pbenum.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: firebase/firestore/proto/target.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/firebase/index.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/api/annotations.pbenum.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: google/api/annotations.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/api/annotations.pbjson.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: google/api/annotations.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/api/http.pbenum.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: google/api/http.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/api/index.dart: -------------------------------------------------------------------------------- 1 | export 'annotations.pb.dart'; 2 | export 'annotations.pbenum.dart'; 3 | export 'annotations.pbjson.dart'; 4 | export 'http.pb.dart'; 5 | export 'http.pbenum.dart'; 6 | export 'http.pbjson.dart'; 7 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/firestore/index.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/firestore/v1/common.pbenum.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: google/firestore/v1/common.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/firestore/v1/document.pbenum.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: google/firestore/v1/document.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/index.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/protobuf/any.pbenum.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: google/protobuf/any.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/protobuf/empty.pbenum.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: google/protobuf/empty.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/protobuf/empty.pbjson.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: google/protobuf/empty.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | const Empty$json = const { 9 | '1': 'Empty', 10 | }; 11 | 12 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/protobuf/timestamp.pbenum.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: google/protobuf/timestamp.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/protobuf/wrappers.pbenum.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: google/protobuf/wrappers.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/rpc/index.dart: -------------------------------------------------------------------------------- 1 | export 'status.pb.dart'; 2 | export 'status.pbenum.dart'; 3 | export 'status.pbjson.dart'; 4 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/rpc/status.pbenum.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: google/rpc/status.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/type/index.dart: -------------------------------------------------------------------------------- 1 | export 'latlng.pb.dart'; 2 | export 'latlng.pbenum.dart'; 3 | export 'latlng.pbjson.dart'; 4 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/lib/src/proto/google/type/latlng.pbenum.dart: -------------------------------------------------------------------------------- 1 | /// 2 | // Generated code. Do not modify. 3 | // source: google/type/latlng.proto 4 | // 5 | // @dart = 2.3 6 | // ignore_for_file: camel_case_types,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type 7 | 8 | -------------------------------------------------------------------------------- /cloud_firestore/cloud_firestore_vm/res/protos/generate_proto.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | protoc **/**.proto --dart_out=grpc:../../lib/src/proto -------------------------------------------------------------------------------- /dev/sdk_cloud/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: ce40de69b7b4f89c66d19c8dbd3bd86ae30f1bc6 8 | channel: dev 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /dev/sdk_cloud/functions/.gitignore: -------------------------------------------------------------------------------- 1 | ## Compiled JavaScript files 2 | **/*.js 3 | **/*.js.map 4 | 5 | # Typescript v1 declaration files 6 | typings/ 7 | 8 | node_modules/ 9 | src/config.ts -------------------------------------------------------------------------------- /dev/sdk_cloud/functions/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "resolveJsonModule": true, 4 | "esModuleInterop": true, 5 | "module": "commonjs", 6 | "noImplicitReturns": true, 7 | "noUnusedLocals": true, 8 | "outDir": "lib", 9 | "sourceMap": true, 10 | "strict": true, 11 | "target": "es2017" 12 | }, 13 | "compileOnSave": true, 14 | "include": [ 15 | "src" 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /dev/sdk_cloud/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: firebase_flutter_sdk_web 2 | description: A new Flutter project. 3 | publish_to: 'none' 4 | version: 0.0.1 5 | 6 | environment: 7 | sdk: ">=2.7.0 <3.0.0" 8 | 9 | dependencies: 10 | flutter: 11 | sdk: flutter 12 | cupertino_icons: ^0.1.3 13 | url_launcher: ^5.5.0 14 | 15 | dev_dependencies: 16 | flutter_test: 17 | sdk: flutter 18 | 19 | flutter: 20 | uses-material-design: true 21 | -------------------------------------------------------------------------------- /dev/sdk_cloud/web/.well-known/microsoft-identity-association.json: -------------------------------------------------------------------------------- 1 | { 2 | "associatedApplications": [ 3 | { 4 | "applicationId": "4b295d8c-5b24-4583-b020-5b114001aadb" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /dev/sdk_cloud/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/dev/sdk_cloud/web/favicon.png -------------------------------------------------------------------------------- /dev/sdk_cloud/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/dev/sdk_cloud/web/icons/Icon-192.png -------------------------------------------------------------------------------- /dev/sdk_cloud/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/dev/sdk_cloud/web/icons/Icon-512.png -------------------------------------------------------------------------------- /dev/tools/.gitignore: -------------------------------------------------------------------------------- 1 | # Files and directories created by pub 2 | .dart_tool/ 3 | .packages 4 | # Remove the following pattern if you wish to check in your lock file 5 | pubspec.lock 6 | 7 | # Conventional directory for build outputs 8 | build/ 9 | 10 | # Directory created by dartdoc 11 | doc/api/ 12 | service-account.json -------------------------------------------------------------------------------- /dev/tools/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: d8c0deb1b6c116be79ceeca005f893be34ab5df2 8 | channel: master 9 | 10 | project_type: package 11 | -------------------------------------------------------------------------------- /dev/tools/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version, created by Stagehand 4 | -------------------------------------------------------------------------------- /dev/tools/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /dev/tools/README.md: -------------------------------------------------------------------------------- 1 | Tools for creating new project and for creating firebase apps. 2 | Make sure you have firebase cli, node, npm installed. 3 | -------------------------------------------------------------------------------- /dev/tools/bin/main.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 06/03/2020 4 | 5 | void main() { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /dev/tools/lib/create_project.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 06/03/2020 -------------------------------------------------------------------------------- /dev/tools/node/.gitignore: -------------------------------------------------------------------------------- 1 | # Typescript v1 declaration files 2 | typings/ 3 | 4 | node_modules/ 5 | src/config.ts -------------------------------------------------------------------------------- /dev/tools/node/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "resolveJsonModule": true, 4 | "esModuleInterop": true, 5 | "module": "commonjs", 6 | "noImplicitReturns": true, 7 | "noUnusedLocals": true, 8 | "outDir": "lib", 9 | "sourceMap": true, 10 | "strict": true, 11 | "target": "es2017" 12 | }, 13 | "compileOnSave": true, 14 | "include": [ 15 | "src" 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /dev/tools/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: tools 2 | description: A sample command-line application. 3 | # version: 1.0.0 4 | # homepage: https://www.example.com 5 | 6 | environment: 7 | sdk: '>=2.7.0 <3.0.0' 8 | 9 | dependencies: 10 | googleapis: ^0.54.0 11 | googleapis_beta: ^0.49.0 12 | googleapis_auth: ^0.2.11+1 13 | path: ^1.6.4 14 | strings: ^0.1.2 15 | xml: ^3.7.0 16 | dev_dependencies: 17 | pedantic: ^1.8.0 18 | test: ^1.6.0 19 | -------------------------------------------------------------------------------- /dev/tools/upload.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/dev/tools/upload.key -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: d8c0deb1b6c116be79ceeca005f893be34ab5df2 8 | channel: master 9 | 10 | project_type: package 11 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * Initial release. 4 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: d8c0deb1b6c116be79ceeca005f893be34ab5df2 8 | channel: master 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/README.md: -------------------------------------------------------------------------------- 1 | ## firebase_auth_dart_example 2 | 3 | Example app that uses `firebase_auth` and `firebase_auth_dart` to provide Firebase Auth SDK for Android, iOS, Web, Desktop. -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/android/app/src/main/kotlin/eu/long1/firebase_auth_dart_example/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package eu.long1.firebase_auth_dart_example 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/android/upload.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/android/upload.key -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/.gitignore: -------------------------------------------------------------------------------- 1 | # Flutter-related 2 | **/Flutter/ephemeral/ 3 | **/Pods/ 4 | 5 | # Xcode-related 6 | **/xcuserdata/ 7 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | @NSApplicationMain 5 | class AppDelegate: FlutterAppDelegate { 6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { 7 | return true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Debug.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Release.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/web/favicon.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_dart/example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_dart/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: d8c0deb1b6c116be79ceeca005f893be34ab5df2 8 | channel: master 9 | 10 | project_type: package 11 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.2 2 | 3 | - Add flutter example app 4 | 5 | ## 0.0.1 6 | 7 | - Initial release 8 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/README.md: -------------------------------------------------------------------------------- 1 | # firebase_auth_vm examples -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/dart/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version, created by Stagehand 4 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/dart/lib/src/update/base.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 16/12/2019 4 | 5 | part of firebase_auth_example; 6 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: d8c0deb1b6c116be79ceeca005f893be34ab5df2 8 | channel: master 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/android/app/src/main/kotlin/eu/long1/firebase_auth_vm_example/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package eu.long1.firebase_auth_vm_example 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/android/upload.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/android/upload.key -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/macos/.gitignore: -------------------------------------------------------------------------------- 1 | # Flutter-related 2 | **/Flutter/ephemeral/ 3 | **/Pods/ 4 | 5 | # Xcode-related 6 | **/xcuserdata/ 7 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | @NSApplicationMain 5 | class AppDelegate: FlutterAppDelegate { 6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { 7 | return true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_auth/firebase_auth_vm/example/flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /firebase_auth/firebase_auth_vm/lib/src/util/web_utils.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 08/12/2019 4 | 5 | part of firebase_auth_vm; 6 | 7 | String randomString(int length) { 8 | final Random random = Random(); 9 | const int max = 0x7A - 0x61 + 1; 10 | return String.fromCharCodes( 11 | List.generate(length, (_) => random.nextInt(max) + 0x61)); 12 | } 13 | -------------------------------------------------------------------------------- /firebase_core/_firebase_database_collection_vm/.gitignore: -------------------------------------------------------------------------------- 1 | # Files and directories created by pub 2 | .dart_tool/ 3 | .packages 4 | # Remove the following pattern if you wish to check in your lock file 5 | pubspec.lock 6 | 7 | # Conventional directory for build outputs 8 | build/ 9 | 10 | # Directory created by dartdoc 11 | doc/api/ 12 | .DS_Store -------------------------------------------------------------------------------- /firebase_core/_firebase_database_collection_vm/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.2 2 | 3 | - Update README 4 | - Fixed analyzer warnings 5 | 6 | ## 0.0.1 7 | 8 | - Initial version 9 | -------------------------------------------------------------------------------- /firebase_core/_firebase_database_collection_vm/README.md: -------------------------------------------------------------------------------- 1 | # firebase_database_collection_vm 2 | A package used by Firestore and Realtime Database packages. This package is not intended to be consumed directly. 3 | 4 | # Features and bugs 5 | Please file feature requests and bugs at the issue tracker. 6 | 7 | -------------------------------------------------------------------------------- /firebase_core/_firebase_database_collection_vm/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../../analysis_options.yaml 2 | 3 | analyzer: 4 | errors: 5 | avoid_as: ignore 6 | cascade_invocations: ignore -------------------------------------------------------------------------------- /firebase_core/_firebase_database_collection_vm/lib/_firebase_database_collection_vm.dart: -------------------------------------------------------------------------------- 1 | library firebase_database_collection; 2 | 3 | export 'src/immutable_sorted_map.dart'; 4 | export 'src/immutable_sorted_set.dart'; 5 | export 'src/standard_compartor.dart'; 6 | -------------------------------------------------------------------------------- /firebase_core/_firebase_database_collection_vm/lib/src/standard_compartor.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 19/09/2018 4 | 5 | Comparator standardComparator>() { 6 | return (A a, A b) => a.compareTo(b); 7 | } 8 | -------------------------------------------------------------------------------- /firebase_core/_firebase_database_collection_vm/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: _firebase_database_collection_vm 2 | description: For internal use of the Firestore and Realtime Database packages 3 | version: 0.0.2 4 | homepage: https://github.com/fluttercommunity/firebase_flutter_sdk 5 | 6 | environment: 7 | sdk: '>=2.0.0 <3.0.0' 8 | 9 | dev_dependencies: 10 | test: ^1.0.0 11 | dart_quickcheck: 12 | git: https://github.com/long1eu/dart_quickcheck.git -------------------------------------------------------------------------------- /firebase_core/_firebase_internal_vm/.gitignore: -------------------------------------------------------------------------------- 1 | # Files and directories created by pub 2 | .dart_tool/ 3 | .packages 4 | # Remove the following pattern if you wish to check in your lock file 5 | pubspec.lock 6 | 7 | # Conventional directory for build outputs 8 | build/ 9 | 10 | # Directory created by dartdoc 11 | doc/api/ 12 | .DS_Store -------------------------------------------------------------------------------- /firebase_core/_firebase_internal_vm/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.2 2 | 3 | - Update README 4 | - Moved util files from firebase_core_vm 5 | 6 | ## 0.0.1 7 | 8 | - Initial version 9 | -------------------------------------------------------------------------------- /firebase_core/_firebase_internal_vm/README.md: -------------------------------------------------------------------------------- 1 | # firebase_internal_vm 2 | A package used by Firestore SDK packages. This package is not intended to be consumed directly. 3 | 4 | # Features and bugs 5 | Please file feature requests and bugs at the issue tracker. 6 | 7 | -------------------------------------------------------------------------------- /firebase_core/_firebase_internal_vm/lib/_firebase_internal_vm.dart: -------------------------------------------------------------------------------- 1 | library firebase_internal; 2 | 3 | export 'src/auth.dart'; 4 | export 'src/internal.dart'; 5 | export 'src/util/log.dart'; 6 | export 'src/util/preconditions.dart'; 7 | export 'src/util/to_string_helper.dart'; 8 | -------------------------------------------------------------------------------- /firebase_core/_firebase_internal_vm/lib/src/util/base64_utils.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 16/09/2018 4 | 5 | import 'dart:convert'; 6 | 7 | class Base64Utils { 8 | static String encodeUrlSafeNoPadding(List url) { 9 | return url == null ? null : base64Encode(url); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /firebase_core/_firebase_internal_vm/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: _firebase_internal_vm 2 | description: For internal use of the Firebase packages 3 | version: 0.0.2 4 | homepage: https://github.com/fluttercommunity/firebase_flutter_sdk 5 | 6 | environment: 7 | sdk: '>=2.0.0 <3.0.0' 8 | 9 | dependencies: 10 | collection: ^1.0.0 11 | meta: ^1.0.0 12 | 13 | dev_dependencies: 14 | test: ^1.0.0 15 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: d8c0deb1b6c116be79ceeca005f893be34ab5df2 8 | channel: master 9 | 10 | project_type: package 11 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * Initial release. 4 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../../analysis_options.yaml 2 | 3 | analyzer: 4 | errors: 5 | prefer_mixin: ignore -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: d8c0deb1b6c116be79ceeca005f893be34ab5df2 8 | channel: master 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/README.md: -------------------------------------------------------------------------------- 1 | ## firebase_core_dart_example 2 | 3 | Example app that uses `firebase_core` and `firebase_core_dart` to provide Firebase Core SDK for Android, iOS, Web, Desktop. -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/android/app/src/main/kotlin/eu/long1/firebase_core_dart_example/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package eu.long1.firebase_core_dart_example 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/android/upload.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/android/upload.key -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/.gitignore: -------------------------------------------------------------------------------- 1 | # Flutter-related 2 | **/Flutter/ephemeral/ 3 | **/Pods/ 4 | 5 | # Xcode-related 6 | **/xcuserdata/ 7 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | @NSApplicationMain 5 | class AppDelegate: FlutterAppDelegate { 6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { 7 | return true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Debug.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Release.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/web/favicon.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_dart/example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_dart/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: d8c0deb1b6c116be79ceeca005f893be34ab5df2 8 | channel: master 9 | 10 | project_type: package 11 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.4 2 | 3 | - Expose `isWeb`, `isMobile` and `isDesktop` based on conditional imports 4 | - Throw unimplemented error when trying to create a FirebaseApp in a js/html context 5 | 6 | ## 0.0.3 7 | 8 | - Rename library from `firebase_common` to `firebase_core` 9 | 10 | ## 0.0.2 11 | 12 | - Add flutter example 13 | - Update README 14 | 15 | ## 0.0.1 16 | 17 | - Initial release -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: d8c0deb1b6c116be79ceeca005f893be34ab5df2 8 | channel: master 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/README.md: -------------------------------------------------------------------------------- 1 | # firebase_core_vm_example 2 | 3 | Flutter example app of direct usage of [firebase_core_vm](https://pub.dev/packages/firebase_core_vm). To use 4 | `firebase_core_vm` with the official [firebase_core](https://pub.dev/packages/firebase_core) plugin, see [firebase_core_dart](https://pub.dev/packages/firebase_core_dart). -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/android/app/src/main/kotlin/eu/long1/firebase_core_vm_example/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package eu.long1.firebase_core_vm_example 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/android/upload.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/android/upload.key -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/.gitignore: -------------------------------------------------------------------------------- 1 | # Flutter-related 2 | **/Flutter/ephemeral/ 3 | **/Pods/ 4 | 5 | # Xcode-related 6 | **/xcuserdata/ 7 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | @NSApplicationMain 5 | class AppDelegate: FlutterAppDelegate { 6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { 7 | return true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_core/firebase_core_vm/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Debug.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Release.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/lib/platform_dependencies.dart: -------------------------------------------------------------------------------- 1 | library platform_dependencies; 2 | 3 | export 'src/platform_dependencies.dart'; 4 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/lib/src/platform_io.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 04/03/2020 4 | 5 | import 'dart:io'; 6 | 7 | final bool isMobile = 8 | Platform.isAndroid || Platform.isIOS || Platform.isFuchsia; 9 | final bool isDesktop = !isMobile; 10 | const bool isWeb = false; 11 | -------------------------------------------------------------------------------- /firebase_core/firebase_core_vm/lib/src/platform_js.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 04/03/2020 4 | 5 | const bool isMobile = false; 6 | const bool isDesktop = false; 7 | const bool isWeb = true; 8 | -------------------------------------------------------------------------------- /firebase_storage_dart/.gitignore: -------------------------------------------------------------------------------- 1 | # Files and directories created by pub 2 | .dart_tool/ 3 | .packages 4 | # Remove the following pattern if you wish to check in your lock file 5 | pubspec.lock 6 | 7 | # Conventional directory for build outputs 8 | build/ 9 | 10 | # Directory created by dartdoc 11 | doc/api/ 12 | -------------------------------------------------------------------------------- /firebase_storage_dart/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version, created by Stagehand 4 | -------------------------------------------------------------------------------- /firebase_storage_dart/lib/firebase_storage.dart: -------------------------------------------------------------------------------- 1 | library firebase_storage_vm; 2 | -------------------------------------------------------------------------------- /firebase_storage_dart/lib/src/cancel_exception.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 21/10/2018 4 | 5 | import 'package:firebase_core/firebase_core.dart'; 6 | 7 | /// Represents an internal exception that is thrown to cancel a currently 8 | /// running task. 9 | class CancelException implements Exception { 10 | CancelException(); 11 | 12 | final String message = 'The operation was canceled.'; 13 | } 14 | -------------------------------------------------------------------------------- /firebase_storage_dart/lib/src/internal/version.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 19/09/2018 4 | 5 | /// Holds static version string of the SDK. 6 | class Version { 7 | static const String sdkVersion = '0.0.1-dev'; 8 | } 9 | -------------------------------------------------------------------------------- /firebase_storage_dart/test/firebase_storage_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:test/test.dart'; 2 | 3 | void main() { 4 | group('A group of tests', () {}); 5 | } 6 | -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/1.1mb.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_storage_dart/test/res/assets/1.1mb.dat -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/12kb.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_storage_dart/test/res/assets/12kb.dat -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/deleteBlob_task.txt: -------------------------------------------------------------------------------- 1 | deleting. 2 | onComplete. 3 | -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/downloadUrl_task.txt: -------------------------------------------------------------------------------- 1 | Getting Download Url. 2 | Received Download Url. 3 | getDownloadUrl:https://firebasestorage.googleapis.com/v0/b/project-5516366556574091405.appspot.com/o/flubbertest.txt?alt=media&token=39083245-565f-416c-9bca-a8c1338fe9de 4 | onComplete:Success= 5 | true 6 | done. 7 | -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/empty.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_storage_dart/test/res/assets/empty.dat -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/emptyDownload_task.txt: -------------------------------------------------------------------------------- 1 | 2 | onProgressUpdate: 3 | exceptionMessage: 4 | bytesDownloaded:0 5 | onProgressUpdate: 6 | exceptionMessage: 7 | bytesDownloaded:0 8 | onSuccess: 9 | exceptionMessage: 10 | bytesDownloaded:0 11 | onComplete:Success= 12 | true 13 | done. 14 | -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/emptyStreamDownload_background.txt: -------------------------------------------------------------------------------- 1 | 2 | doInBackground: 3 | exceptionMessage: 4 | bytesDownloaded:0 5 | done. 6 | -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/emptyStreamDownload_task.txt: -------------------------------------------------------------------------------- 1 | 2 | onProgressUpdate: 3 | exceptionMessage: 4 | bytesDownloaded:0 5 | onProgressUpdate: 6 | exceptionMessage: 7 | bytesDownloaded:0 8 | onProgressUpdate: 9 | exceptionMessage: 10 | bytesDownloaded:0 11 | onSuccess: 12 | exceptionMessage: 13 | bytesDownloaded:0 14 | onComplete:Success= 15 | true 16 | done. 17 | -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/fileDownloadCanceled_task.txt: -------------------------------------------------------------------------------- 1 | 2 | onProgressUpdate: 3 | exceptionMessage: 4 | bytesDownloaded:0 5 | onProgressUpdate: 6 | exceptionMessage: 7 | bytesDownloaded:0 8 | onCanceled: 9 | onComplete:Success= 10 | false 11 | done. 12 | -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/flubbertest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_storage_dart/test/res/assets/flubbertest.jpg -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/firebase_storage_dart/test/res/assets/image.jpg -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/streamDownloadCanceled_task.txt: -------------------------------------------------------------------------------- 1 | 2 | onProgressUpdate: 3 | exceptionMessage: 4 | bytesDownloaded:0 5 | onCanceled: 6 | onComplete:Success= 7 | false 8 | done. 9 | -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/streamDownloadWithETagChange_background.txt: -------------------------------------------------------------------------------- 1 | 2 | doInBackground: 3 | exceptionMessage: 4 | bytesDownloaded:0 5 | done. 6 | -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/streamDownloadWithResumeAndCancel_background.txt: -------------------------------------------------------------------------------- 1 | 2 | doInBackground: 3 | exceptionMessage: 4 | bytesDownloaded:0 5 | done. 6 | -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/streamDownloadWithResume_background.txt: -------------------------------------------------------------------------------- 1 | 2 | doInBackground: 3 | exceptionMessage: 4 | bytesDownloaded:0 5 | done. 6 | -------------------------------------------------------------------------------- /firebase_storage_dart/test/res/assets/streamDownload_background.txt: -------------------------------------------------------------------------------- 1 | 2 | doInBackground: 3 | exceptionMessage: 4 | bytesDownloaded:0 5 | done. 6 | -------------------------------------------------------------------------------- /google_sign_in_dart/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: d8c0deb1b6c116be79ceeca005f893be34ab5df2 8 | channel: master 9 | 10 | project_type: package 11 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: d8c0deb1b6c116be79ceeca005f893be34ab5df2 8 | channel: master 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/README.md: -------------------------------------------------------------------------------- 1 | # google_sign_in_dart_example 2 | 3 | Demonstrates how to use the google_sign_in_dart package. 4 | 5 | Demonstrates how to use `google_sign_in` and `google_sign_in_dart` to provide Google Sign In for Android, iOS, Web, Desktop. 6 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/android/app/src/main/kotlin/eu/long1/google_sign_in_dart_example/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package eu.long1.google_sign_in_dart_example 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/android/upload.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/android/upload.key -------------------------------------------------------------------------------- /google_sign_in_dart/example/gcp/.firebaserc: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "default": "flutter-sdk" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/gcp/firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "functions": { 3 | "predeploy": [ 4 | "npm --prefix \"$RESOURCE_DIR\" run lint", 5 | "npm --prefix \"$RESOURCE_DIR\" run build" 6 | ] 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/gcp/functions/.gitignore: -------------------------------------------------------------------------------- 1 | ## Compiled JavaScript files 2 | **/*.js 3 | **/*.js.map 4 | 5 | # Typescript v1 declaration files 6 | typings/ 7 | 8 | node_modules/ -------------------------------------------------------------------------------- /google_sign_in_dart/example/gcp/functions/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "noImplicitReturns": true, 5 | "noUnusedLocals": true, 6 | "outDir": "lib", 7 | "sourceMap": true, 8 | "strict": true, 9 | "target": "es2017" 10 | }, 11 | "compileOnSave": true, 12 | "include": [ 13 | "src" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /google_sign_in_dart/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/lib/platform_io.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 02/03/2020 4 | 5 | import 'dart:io'; 6 | 7 | /// Whether we are running in a desktop environment 8 | /// 9 | /// This should be conditionally imported with platform_io.dart 10 | /// `import 'platform_js.dart' if (dart.library.io) 'platform_io.dart';` 11 | final bool isDesktop = 12 | Platform.isWindows || Platform.isMacOS || Platform.isLinux; 13 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/lib/platform_js.dart: -------------------------------------------------------------------------------- 1 | // File created by 2 | // Lung Razvan 3 | // on 02/03/2020 4 | 5 | /// Whether we are running in a desktop environment 6 | /// 7 | /// This should be conditionally imported with platform_io.dart 8 | /// `import 'platform_js.dart' if (dart.library.io) 'platform_io.dart';` 9 | const bool isDesktop = false; 10 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | #ifndef GENERATED_PLUGIN_REGISTRANT_ 6 | #define GENERATED_PLUGIN_REGISTRANT_ 7 | 8 | #include 9 | 10 | // Registers Flutter plugins. 11 | void fl_register_plugins(FlPluginRegistry* registry); 12 | 13 | #endif // GENERATED_PLUGIN_REGISTRANT_ 14 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/linux/main.cc: -------------------------------------------------------------------------------- 1 | #include "my_application.h" 2 | 3 | int main(int argc, char** argv) { 4 | // Only X11 is currently supported. 5 | // Wayland support is being developed: https://github.com/flutter/flutter/issues/57932. 6 | gdk_set_allowed_backends("x11"); 7 | 8 | g_autoptr(MyApplication) app = my_application_new(); 9 | return g_application_run(G_APPLICATION(app), argc, argv); 10 | } 11 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/.gitignore: -------------------------------------------------------------------------------- 1 | # Flutter-related 2 | **/Flutter/ephemeral/ 3 | **/Pods/ 4 | 5 | # Xcode-related 6 | **/xcuserdata/ 7 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | @NSApplicationMain 5 | class AppDelegate: FlutterAppDelegate { 6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { 7 | return true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Debug.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Release.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.network.server 8 | 9 | com.apple.security.network.client 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /google_sign_in_dart/example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/web/favicon.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /google_sign_in_dart/example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/long1eu/firebase_dart_sdk/515bcd03c57a3ca9a3d4024e3cec1fa3c0513922/google_sign_in_dart/example/web/icons/Icon-512.png --------------------------------------------------------------------------------