widget tests

main
Yuliya Rudenko 2024-05-24 00:01:08 +02:00
parent 58d6f7f724
commit f3bd8bc35e
507 changed files with 5594 additions and 150 deletions

BIN
.DS_Store vendored

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -6,9 +6,14 @@
// @dart = 3.3
import 'dart:io'; // flutter_ignore: dart_io_import.
import 'package:path_provider_android/path_provider_android.dart';
import 'package:sqflite/sqflite.dart';
import 'package:path_provider_foundation/path_provider_foundation.dart';
import 'package:sqflite/sqflite.dart';
import 'package:path_provider_linux/path_provider_linux.dart';
import 'package:path_provider_foundation/path_provider_foundation.dart';
import 'package:sqflite/sqflite.dart';
import 'package:path_provider_windows/path_provider_windows.dart';
@pragma('vm:entry-point')
class _PluginRegistrant {
@ -16,6 +21,15 @@ class _PluginRegistrant {
@pragma('vm:entry-point')
static void register() {
if (Platform.isAndroid) {
try {
PathProviderAndroid.registerWith();
} catch (err) {
print(
'`path_provider_android` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
SqflitePlugin.registerWith();
} catch (err) {
@ -26,6 +40,15 @@ class _PluginRegistrant {
}
} else if (Platform.isIOS) {
try {
PathProviderFoundation.registerWith();
} catch (err) {
print(
'`path_provider_foundation` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
SqflitePlugin.registerWith();
} catch (err) {
@ -36,7 +59,25 @@ class _PluginRegistrant {
}
} else if (Platform.isLinux) {
try {
PathProviderLinux.registerWith();
} catch (err) {
print(
'`path_provider_linux` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
} else if (Platform.isMacOS) {
try {
PathProviderFoundation.registerWith();
} catch (err) {
print(
'`path_provider_foundation` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
SqflitePlugin.registerWith();
} catch (err) {
@ -47,6 +88,15 @@ class _PluginRegistrant {
}
} else if (Platform.isWindows) {
try {
PathProviderWindows.registerWith();
} catch (err) {
print(
'`path_provider_windows` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
}
}
}

View File

@ -1,6 +1,24 @@
{
"configVersion": 2,
"packages": [
{
"name": "_fe_analyzer_shared",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-67.0.0",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "analyzer",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/analyzer-6.4.1",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "args",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/args-2.5.0",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "async",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/async-2.11.0",
@ -13,6 +31,24 @@
"packageUri": "lib/",
"languageVersion": "2.17"
},
{
"name": "build",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/build-2.4.1",
"packageUri": "lib/",
"languageVersion": "2.19"
},
{
"name": "built_collection",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/built_collection-5.1.1",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "built_value",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/built_value-8.9.2",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "characters",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/characters-1.3.0",
@ -25,24 +61,72 @@
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "code_builder",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/code_builder-4.10.0",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "collection",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/collection-1.18.0",
"packageUri": "lib/",
"languageVersion": "2.18"
},
{
"name": "convert",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/convert-3.1.1",
"packageUri": "lib/",
"languageVersion": "2.18"
},
{
"name": "coverage",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/coverage-1.8.0",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "crypto",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/crypto-3.0.3",
"packageUri": "lib/",
"languageVersion": "2.19"
},
{
"name": "cupertino_icons",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.8",
"packageUri": "lib/",
"languageVersion": "3.1"
},
{
"name": "dart_style",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/dart_style-2.3.6",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "fake_async",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/fake_async-1.3.1",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "ffi",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/ffi-2.1.2",
"packageUri": "lib/",
"languageVersion": "3.3"
},
{
"name": "file",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/file-7.0.0",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "fixnum",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/fixnum-1.1.0",
"packageUri": "lib/",
"languageVersion": "2.19"
},
{
"name": "flutter",
"rootUri": "file:///Users/yuliyarudenko/flutter/packages/flutter",
@ -55,6 +139,12 @@
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "flutter_driver",
"rootUri": "file:///Users/yuliyarudenko/flutter/packages/flutter_driver",
"packageUri": "lib/",
"languageVersion": "3.2"
},
{
"name": "flutter_lints",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/flutter_lints-4.0.0",
@ -67,12 +157,60 @@
"packageUri": "lib/",
"languageVersion": "3.2"
},
{
"name": "frontend_server_client",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "fuchsia_remote_debug_protocol",
"rootUri": "file:///Users/yuliyarudenko/flutter/packages/fuchsia_remote_debug_protocol",
"packageUri": "lib/",
"languageVersion": "3.2"
},
{
"name": "glob",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/glob-2.1.2",
"packageUri": "lib/",
"languageVersion": "2.19"
},
{
"name": "http_multi_server",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "http_parser",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/http_parser-4.0.2",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "integration_test",
"rootUri": "file:///Users/yuliyarudenko/flutter/packages/integration_test",
"packageUri": "lib/",
"languageVersion": "3.2"
},
{
"name": "intl",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/intl-0.19.0",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "io",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/io-1.0.4",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "js",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/js-0.6.7",
"packageUri": "lib/",
"languageVersion": "2.19"
},
{
"name": "leak_tracker",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/leak_tracker-10.0.0",
@ -97,6 +235,12 @@
"packageUri": "lib/",
"languageVersion": "3.1"
},
{
"name": "logging",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/logging-1.2.0",
"packageUri": "lib/",
"languageVersion": "2.19"
},
{
"name": "matcher",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/matcher-0.12.16+1",
@ -115,18 +259,150 @@
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "mime",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/mime-1.0.5",
"packageUri": "lib/",
"languageVersion": "3.2"
},
{
"name": "mockito",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/mockito-5.4.4",
"packageUri": "lib/",
"languageVersion": "3.1"
},
{
"name": "node_preamble",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/node_preamble-2.0.2",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "package_config",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/package_config-2.1.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "path",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path-1.9.0",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "path_provider",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider-2.1.3",
"packageUri": "lib/",
"languageVersion": "3.1"
},
{
"name": "path_provider_android",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_android-2.2.4",
"packageUri": "lib/",
"languageVersion": "3.2"
},
{
"name": "path_provider_foundation",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0",
"packageUri": "lib/",
"languageVersion": "3.2"
},
{
"name": "path_provider_linux",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1",
"packageUri": "lib/",
"languageVersion": "2.19"
},
{
"name": "path_provider_platform_interface",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.1.2",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "path_provider_windows",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1",
"packageUri": "lib/",
"languageVersion": "2.19"
},
{
"name": "platform",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/platform-3.1.4",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "plugin_platform_interface",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.8",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "pool",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/pool-1.5.1",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "process",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/process-5.0.2",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "pub_semver",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/pub_semver-2.1.4",
"packageUri": "lib/",
"languageVersion": "2.17"
},
{
"name": "shelf",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf-1.4.1",
"packageUri": "lib/",
"languageVersion": "2.17"
},
{
"name": "shelf_packages_handler",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf_packages_handler-3.0.2",
"packageUri": "lib/",
"languageVersion": "2.17"
},
{
"name": "shelf_static",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf_static-1.1.2",
"packageUri": "lib/",
"languageVersion": "2.17"
},
{
"name": "shelf_web_socket",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4",
"packageUri": "lib/",
"languageVersion": "2.17"
},
{
"name": "sky_engine",
"rootUri": "file:///Users/yuliyarudenko/flutter/bin/cache/pkg/sky_engine",
"packageUri": "lib/",
"languageVersion": "3.2"
},
{
"name": "source_gen",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_gen-1.5.0",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "source_map_stack_trace",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_map_stack_trace-2.1.1",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "source_maps",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_maps-0.10.12",
"packageUri": "lib/",
"languageVersion": "2.18"
},
{
"name": "source_span",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_span-1.10.0",
@ -145,6 +421,18 @@
"packageUri": "lib/",
"languageVersion": "3.3"
},
{
"name": "sqflite_common_ffi",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3",
"packageUri": "lib/",
"languageVersion": "3.3"
},
{
"name": "sqlite3",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3",
"packageUri": "lib/",
"languageVersion": "3.3"
},
{
"name": "stack_trace",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/stack_trace-1.11.1",
@ -163,6 +451,12 @@
"packageUri": "lib/",
"languageVersion": "2.18"
},
{
"name": "sync_http",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sync_http-0.3.1",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "synchronized",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/synchronized-3.1.0+1",
@ -175,12 +469,30 @@
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "test",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/test-1.24.9",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "test_api",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/test_api-0.6.1",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "test_core",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/test_core-0.5.9",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "typed_data",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/typed_data-1.3.2",
"packageUri": "lib/",
"languageVersion": "2.17"
},
{
"name": "vector_math",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/vector_math-2.1.4",
@ -193,6 +505,54 @@
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "watcher",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/watcher-1.1.0",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "web",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/web-0.5.1",
"packageUri": "lib/",
"languageVersion": "3.3"
},
{
"name": "web_socket_channel",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.5",
"packageUri": "lib/",
"languageVersion": "3.3"
},
{
"name": "webdriver",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/webdriver-3.0.3",
"packageUri": "lib/",
"languageVersion": "2.18"
},
{
"name": "webkit_inspection_protocol",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/webkit_inspection_protocol-1.2.1",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "win32",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0",
"packageUri": "lib/",
"languageVersion": "3.3"
},
{
"name": "xdg_directories",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/xdg_directories-1.0.4",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "yaml",
"rootUri": "file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/yaml-3.1.2",
"packageUri": "lib/",
"languageVersion": "2.19"
},
{
"name": "cpd",
"rootUri": "../",
@ -200,7 +560,7 @@
"languageVersion": "3.3"
}
],
"generated": "2024-05-19T21:11:34.909549Z",
"generated": "2024-05-23T21:33:20.615924Z",
"generator": "pub",
"generatorVersion": "3.3.3"
}

View File

@ -1,3 +1,15 @@
_fe_analyzer_shared
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-67.0.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-67.0.0/lib/
analyzer
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/analyzer-6.4.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/analyzer-6.4.1/lib/
args
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/args-2.5.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/args-2.5.0/lib/
async
2.18
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/async-2.11.0/
@ -6,6 +18,18 @@ boolean_selector
2.17
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/lib/
build
2.19
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/build-2.4.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/build-2.4.1/lib/
built_collection
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/built_collection-5.1.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/built_collection-5.1.1/lib/
built_value
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/built_value-8.9.2/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/built_value-8.9.2/lib/
characters
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/characters-1.3.0/
@ -14,18 +38,50 @@ clock
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/clock-1.1.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/clock-1.1.1/lib/
code_builder
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/code_builder-4.10.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/code_builder-4.10.0/lib/
collection
2.18
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/collection-1.18.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/collection-1.18.0/lib/
convert
2.18
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/convert-3.1.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/convert-3.1.1/lib/
coverage
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/coverage-1.8.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/coverage-1.8.0/lib/
crypto
2.19
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/crypto-3.0.3/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/crypto-3.0.3/lib/
cupertino_icons
3.1
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.8/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.8/lib/
dart_style
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/dart_style-2.3.6/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/dart_style-2.3.6/lib/
fake_async
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/fake_async-1.3.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/fake_async-1.3.1/lib/
ffi
3.3
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/ffi-2.1.2/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/ffi-2.1.2/lib/
file
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/file-7.0.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/file-7.0.0/lib/
fixnum
2.19
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/fixnum-1.1.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/fixnum-1.1.0/lib/
flutter_chart
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/flutter_chart-0.1.6/
@ -34,10 +90,34 @@ flutter_lints
3.1
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/flutter_lints-4.0.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/flutter_lints-4.0.0/lib/
frontend_server_client
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/lib/
glob
2.19
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/glob-2.1.2/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/glob-2.1.2/lib/
http_multi_server
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/lib/
http_parser
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/http_parser-4.0.2/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/http_parser-4.0.2/lib/
intl
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/intl-0.19.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/intl-0.19.0/lib/
io
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/io-1.0.4/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/io-1.0.4/lib/
js
2.19
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/js-0.6.7/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/js-0.6.7/lib/
leak_tracker
3.1
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/leak_tracker-10.0.0/
@ -54,6 +134,10 @@ lints
3.1
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/lints-4.0.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/lints-4.0.0/lib/
logging
2.19
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/logging-1.2.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/logging-1.2.0/lib/
matcher
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/matcher-0.12.16+1/
@ -66,10 +150,98 @@ meta
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/meta-1.11.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/meta-1.11.0/lib/
mime
3.2
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/mime-1.0.5/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/mime-1.0.5/lib/
mockito
3.1
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/mockito-5.4.4/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/mockito-5.4.4/lib/
node_preamble
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/node_preamble-2.0.2/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/node_preamble-2.0.2/lib/
package_config
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/package_config-2.1.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/package_config-2.1.0/lib/
path
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path-1.9.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path-1.9.0/lib/
path_provider
3.1
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider-2.1.3/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider-2.1.3/lib/
path_provider_android
3.2
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_android-2.2.4/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_android-2.2.4/lib/
path_provider_foundation
3.2
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/lib/
path_provider_linux
2.19
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/lib/
path_provider_platform_interface
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.1.2/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.1.2/lib/
path_provider_windows
2.19
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1/lib/
platform
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/platform-3.1.4/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/platform-3.1.4/lib/
plugin_platform_interface
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.8/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.8/lib/
pool
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/pool-1.5.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/pool-1.5.1/lib/
process
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/process-5.0.2/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/process-5.0.2/lib/
pub_semver
2.17
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/lib/
shelf
2.17
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf-1.4.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf-1.4.1/lib/
shelf_packages_handler
2.17
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf_packages_handler-3.0.2/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf_packages_handler-3.0.2/lib/
shelf_static
2.17
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf_static-1.1.2/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf_static-1.1.2/lib/
shelf_web_socket
2.17
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib/
source_gen
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_gen-1.5.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_gen-1.5.0/lib/
source_map_stack_trace
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_map_stack_trace-2.1.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_map_stack_trace-2.1.1/lib/
source_maps
2.18
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_maps-0.10.12/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_maps-0.10.12/lib/
source_span
2.18
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_span-1.10.0/
@ -82,6 +254,14 @@ sqflite_common
3.3
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common-2.5.4/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common-2.5.4/lib/
sqflite_common_ffi
3.3
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/
sqlite3
3.3
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/
stack_trace
2.18
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/stack_trace-1.11.1/
@ -94,6 +274,10 @@ string_scanner
2.18
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/lib/
sync_http
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sync_http-0.3.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sync_http-0.3.1/lib/
synchronized
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/synchronized-3.1.0+1/
@ -102,10 +286,22 @@ term_glyph
2.12
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/lib/
test
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/test-1.24.9/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/test-1.24.9/lib/
test_api
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/test_api-0.6.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/test_api-0.6.1/lib/
test_core
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/test_core-0.5.9/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/test_core-0.5.9/lib/
typed_data
2.17
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/typed_data-1.3.2/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/typed_data-1.3.2/lib/
vector_math
2.14
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/vector_math-2.1.4/
@ -114,6 +310,38 @@ vm_service
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/vm_service-13.0.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/vm_service-13.0.0/lib/
watcher
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/watcher-1.1.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/watcher-1.1.0/lib/
web
3.3
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/web-0.5.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/web-0.5.1/lib/
web_socket_channel
3.3
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.5/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.5/lib/
webdriver
2.18
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/webdriver-3.0.3/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/webdriver-3.0.3/lib/
webkit_inspection_protocol
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/webkit_inspection_protocol-1.2.1/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/webkit_inspection_protocol-1.2.1/lib/
win32
3.3
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/
xdg_directories
3.0
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/xdg_directories-1.0.4/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/xdg_directories-1.0.4/lib/
yaml
2.19
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/yaml-3.1.2/
file:///Users/yuliyarudenko/.pub-cache/hosted/pub.dev/yaml-3.1.2/lib/
cpd
3.3
file:///Users/yuliyarudenko/cpd/
@ -126,8 +354,20 @@ flutter
3.2
file:///Users/yuliyarudenko/flutter/packages/flutter/
file:///Users/yuliyarudenko/flutter/packages/flutter/lib/
flutter_driver
3.2
file:///Users/yuliyarudenko/flutter/packages/flutter_driver/
file:///Users/yuliyarudenko/flutter/packages/flutter_driver/lib/
flutter_test
3.2
file:///Users/yuliyarudenko/flutter/packages/flutter_test/
file:///Users/yuliyarudenko/flutter/packages/flutter_test/lib/
fuchsia_remote_debug_protocol
3.2
file:///Users/yuliyarudenko/flutter/packages/fuchsia_remote_debug_protocol/
file:///Users/yuliyarudenko/flutter/packages/fuchsia_remote_debug_protocol/lib/
integration_test
3.2
file:///Users/yuliyarudenko/flutter/packages/integration_test/
file:///Users/yuliyarudenko/flutter/packages/integration_test/lib/
2

View File

@ -1,2 +1,8 @@
# This is a generated file; do not edit or check into version control.
integration_test=/Users/yuliyarudenko/flutter/packages/integration_test/
path_provider=/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider-2.1.3/
path_provider_android=/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_android-2.2.4/
path_provider_foundation=/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/
path_provider_linux=/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/
path_provider_windows=/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1/
sqflite=/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/

View File

@ -1 +1 @@
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"sqflite","path":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/","shared_darwin_source":true,"native_build":true,"dependencies":[]}],"android":[{"name":"sqflite","path":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/","native_build":true,"dependencies":[]}],"macos":[{"name":"sqflite","path":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/","shared_darwin_source":true,"native_build":true,"dependencies":[]}],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"sqflite","dependencies":[]}],"date_created":"2024-05-20 22:42:33.985291","version":"3.19.5"}
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"integration_test","path":"/Users/yuliyarudenko/flutter/packages/integration_test/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/","shared_darwin_source":true,"native_build":true,"dependencies":[]},{"name":"sqflite","path":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/","shared_darwin_source":true,"native_build":true,"dependencies":[]}],"android":[{"name":"integration_test","path":"/Users/yuliyarudenko/flutter/packages/integration_test/","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_android-2.2.4/","native_build":true,"dependencies":[]},{"name":"sqflite","path":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/","shared_darwin_source":true,"native_build":true,"dependencies":[]},{"name":"sqflite","path":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/","shared_darwin_source":true,"native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1/","native_build":false,"dependencies":[]}],"web":[]},"dependencyGraph":[{"name":"integration_test","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]},{"name":"sqflite","dependencies":[]}],"date_created":"2024-05-23 23:59:19.391997","version":"3.19.5"}

View File

@ -2,6 +2,27 @@
<library name="Dart Packages" type="DartPackagesLibraryType">
<properties>
<option name="packageNameToDirsMap">
<entry key="_fe_analyzer_shared">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/_fe_analyzer_shared-67.0.0/lib" />
</list>
</value>
</entry>
<entry key="analyzer">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/analyzer-6.4.1/lib" />
</list>
</value>
</entry>
<entry key="args">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/args-2.5.0/lib" />
</list>
</value>
</entry>
<entry key="async">
<value>
<list>
@ -16,6 +37,27 @@
</list>
</value>
</entry>
<entry key="build">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/build-2.4.1/lib" />
</list>
</value>
</entry>
<entry key="built_collection">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/built_collection-5.1.1/lib" />
</list>
</value>
</entry>
<entry key="built_value">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/built_value-8.9.2/lib" />
</list>
</value>
</entry>
<entry key="characters">
<value>
<list>
@ -30,6 +72,13 @@
</list>
</value>
</entry>
<entry key="code_builder">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/code_builder-4.10.0/lib" />
</list>
</value>
</entry>
<entry key="collection">
<value>
<list>
@ -37,6 +86,27 @@
</list>
</value>
</entry>
<entry key="convert">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/convert-3.1.1/lib" />
</list>
</value>
</entry>
<entry key="coverage">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/coverage-1.8.0/lib" />
</list>
</value>
</entry>
<entry key="crypto">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/crypto-3.0.3/lib" />
</list>
</value>
</entry>
<entry key="cupertino_icons">
<value>
<list>
@ -44,6 +114,13 @@
</list>
</value>
</entry>
<entry key="dart_style">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/dart_style-2.3.6/lib" />
</list>
</value>
</entry>
<entry key="fake_async">
<value>
<list>
@ -51,6 +128,27 @@
</list>
</value>
</entry>
<entry key="ffi">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/ffi-2.1.2/lib" />
</list>
</value>
</entry>
<entry key="file">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/file-7.0.0/lib" />
</list>
</value>
</entry>
<entry key="fixnum">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/fixnum-1.1.0/lib" />
</list>
</value>
</entry>
<entry key="flutter">
<value>
<list>
@ -65,6 +163,13 @@
</list>
</value>
</entry>
<entry key="flutter_driver">
<value>
<list>
<option value="$PROJECT_DIR$/../flutter/packages/flutter_driver/lib" />
</list>
</value>
</entry>
<entry key="flutter_lints">
<value>
<list>
@ -79,6 +184,48 @@
</list>
</value>
</entry>
<entry key="frontend_server_client">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/lib" />
</list>
</value>
</entry>
<entry key="fuchsia_remote_debug_protocol">
<value>
<list>
<option value="$PROJECT_DIR$/../flutter/packages/fuchsia_remote_debug_protocol/lib" />
</list>
</value>
</entry>
<entry key="glob">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/glob-2.1.2/lib" />
</list>
</value>
</entry>
<entry key="http_multi_server">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/lib" />
</list>
</value>
</entry>
<entry key="http_parser">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/http_parser-4.0.2/lib" />
</list>
</value>
</entry>
<entry key="integration_test">
<value>
<list>
<option value="$PROJECT_DIR$/../flutter/packages/integration_test/lib" />
</list>
</value>
</entry>
<entry key="intl">
<value>
<list>
@ -86,6 +233,20 @@
</list>
</value>
</entry>
<entry key="io">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/io-1.0.4/lib" />
</list>
</value>
</entry>
<entry key="js">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/js-0.6.7/lib" />
</list>
</value>
</entry>
<entry key="leak_tracker">
<value>
<list>
@ -114,6 +275,13 @@
</list>
</value>
</entry>
<entry key="logging">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/logging-1.2.0/lib" />
</list>
</value>
</entry>
<entry key="matcher">
<value>
<list>
@ -135,6 +303,34 @@
</list>
</value>
</entry>
<entry key="mime">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/mime-1.0.5/lib" />
</list>
</value>
</entry>
<entry key="mockito">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/mockito-5.4.4/lib" />
</list>
</value>
</entry>
<entry key="node_preamble">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/node_preamble-2.0.2/lib" />
</list>
</value>
</entry>
<entry key="package_config">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/package_config-2.1.0/lib" />
</list>
</value>
</entry>
<entry key="path">
<value>
<list>
@ -142,6 +338,111 @@
</list>
</value>
</entry>
<entry key="path_provider">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider-2.1.3/lib" />
</list>
</value>
</entry>
<entry key="path_provider_android">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider_android-2.2.4/lib" />
</list>
</value>
</entry>
<entry key="path_provider_foundation">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/lib" />
</list>
</value>
</entry>
<entry key="path_provider_linux">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/lib" />
</list>
</value>
</entry>
<entry key="path_provider_platform_interface">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.1.2/lib" />
</list>
</value>
</entry>
<entry key="path_provider_windows">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1/lib" />
</list>
</value>
</entry>
<entry key="platform">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/platform-3.1.4/lib" />
</list>
</value>
</entry>
<entry key="plugin_platform_interface">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.8/lib" />
</list>
</value>
</entry>
<entry key="pool">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/pool-1.5.1/lib" />
</list>
</value>
</entry>
<entry key="process">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/process-5.0.2/lib" />
</list>
</value>
</entry>
<entry key="pub_semver">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/pub_semver-2.1.4/lib" />
</list>
</value>
</entry>
<entry key="shelf">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/shelf-1.4.1/lib" />
</list>
</value>
</entry>
<entry key="shelf_packages_handler">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/shelf_packages_handler-3.0.2/lib" />
</list>
</value>
</entry>
<entry key="shelf_static">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/shelf_static-1.1.2/lib" />
</list>
</value>
</entry>
<entry key="shelf_web_socket">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib" />
</list>
</value>
</entry>
<entry key="sky_engine">
<value>
<list>
@ -149,6 +450,27 @@
</list>
</value>
</entry>
<entry key="source_gen">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/source_gen-1.5.0/lib" />
</list>
</value>
</entry>
<entry key="source_map_stack_trace">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/source_map_stack_trace-2.1.1/lib" />
</list>
</value>
</entry>
<entry key="source_maps">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/source_maps-0.10.12/lib" />
</list>
</value>
</entry>
<entry key="source_span">
<value>
<list>
@ -170,6 +492,20 @@
</list>
</value>
</entry>
<entry key="sqflite_common_ffi">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib" />
</list>
</value>
</entry>
<entry key="sqlite3">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib" />
</list>
</value>
</entry>
<entry key="stack_trace">
<value>
<list>
@ -191,6 +527,13 @@
</list>
</value>
</entry>
<entry key="sync_http">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/sync_http-0.3.1/lib" />
</list>
</value>
</entry>
<entry key="synchronized">
<value>
<list>
@ -205,6 +548,13 @@
</list>
</value>
</entry>
<entry key="test">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/test-1.24.9/lib" />
</list>
</value>
</entry>
<entry key="test_api">
<value>
<list>
@ -212,6 +562,20 @@
</list>
</value>
</entry>
<entry key="test_core">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/test_core-0.5.9/lib" />
</list>
</value>
</entry>
<entry key="typed_data">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/typed_data-1.3.2/lib" />
</list>
</value>
</entry>
<entry key="vector_math">
<value>
<list>
@ -226,41 +590,157 @@
</list>
</value>
</entry>
<entry key="watcher">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/watcher-1.1.0/lib" />
</list>
</value>
</entry>
<entry key="web">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/web-0.5.1/lib" />
</list>
</value>
</entry>
<entry key="web_socket_channel">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/web_socket_channel-2.4.5/lib" />
</list>
</value>
</entry>
<entry key="webdriver">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/webdriver-3.0.3/lib" />
</list>
</value>
</entry>
<entry key="webkit_inspection_protocol">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/webkit_inspection_protocol-1.2.1/lib" />
</list>
</value>
</entry>
<entry key="win32">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/win32-5.5.0/lib" />
</list>
</value>
</entry>
<entry key="xdg_directories">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/xdg_directories-1.0.4/lib" />
</list>
</value>
</entry>
<entry key="yaml">
<value>
<list>
<option value="$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/yaml-3.1.2/lib" />
</list>
</value>
</entry>
</option>
</properties>
<CLASSES>
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/_fe_analyzer_shared-67.0.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/analyzer-6.4.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/args-2.5.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/async-2.11.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/build-2.4.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/built_collection-5.1.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/built_value-8.9.2/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/characters-1.3.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/clock-1.1.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/code_builder-4.10.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/collection-1.18.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/convert-3.1.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/coverage-1.8.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/crypto-3.0.3/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/cupertino_icons-1.0.8/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/dart_style-2.3.6/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/fake_async-1.3.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/ffi-2.1.2/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/file-7.0.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/fixnum-1.1.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/flutter_chart-0.1.6/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/flutter_lints-4.0.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/glob-2.1.2/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/http_parser-4.0.2/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/intl-0.19.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/io-1.0.4/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/js-0.6.7/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/leak_tracker-10.0.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/leak_tracker_flutter_testing-2.0.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/leak_tracker_testing-2.0.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/lints-4.0.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/logging-1.2.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/matcher-0.12.16+1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/material_color_utilities-0.8.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/meta-1.11.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/mime-1.0.5/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/mockito-5.4.4/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/node_preamble-2.0.2/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/package_config-2.1.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path-1.9.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider-2.1.3/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider_android-2.2.4/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.1.2/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/platform-3.1.4/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.8/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/pool-1.5.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/process-5.0.2/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/pub_semver-2.1.4/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/shelf-1.4.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/shelf_packages_handler-3.0.2/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/shelf_static-1.1.2/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/source_gen-1.5.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/source_map_stack_trace-2.1.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/source_maps-0.10.12/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/source_span-1.10.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/sqflite_common-2.5.4/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/stack_trace-1.11.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/stream_channel-2.1.2/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/string_scanner-1.2.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/sync_http-0.3.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/synchronized-3.1.0+1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/term_glyph-1.2.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/test-1.24.9/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/test_api-0.6.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/test_core-0.5.9/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/typed_data-1.3.2/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/vm_service-13.0.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/watcher-1.1.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/web-0.5.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/web_socket_channel-2.4.5/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/webdriver-3.0.3/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/webkit_inspection_protocol-1.2.1/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/win32-5.5.0/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/xdg_directories-1.0.4/lib" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/yaml-3.1.2/lib" />
<root url="file://$PROJECT_DIR$/../flutter/bin/cache/pkg/sky_engine/lib" />
<root url="file://$PROJECT_DIR$/../flutter/packages/flutter/lib" />
<root url="file://$PROJECT_DIR$/../flutter/packages/flutter_driver/lib" />
<root url="file://$PROJECT_DIR$/../flutter/packages/flutter_test/lib" />
<root url="file://$PROJECT_DIR$/../flutter/packages/fuchsia_remote_debug_protocol/lib" />
<root url="file://$PROJECT_DIR$/../flutter/packages/integration_test/lib" />
</CLASSES>
<JAVADOC />
<SOURCES />

View File

@ -2,6 +2,12 @@
<library name="Flutter Plugins" type="FlutterPluginsLibraryType">
<CLASSES>
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1" />
<root url="file://$PROJECT_DIR$/../flutter/packages/integration_test" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider_android-2.2.4" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1" />
<root url="file://$PROJECT_DIR$/../.pub-cache/hosted/pub.dev/path_provider-2.1.3" />
</CLASSES>
<JAVADOC />
<SOURCES />

View File

@ -0,0 +1,76 @@
{
"main_library": {
"exported_symbols": [
{
"data": {
"global": [
"_$s24path_provider_foundation18PathProviderPluginC012getContainerD018appGroupIdentifierSSSgSS_tFTq",
"_$s24path_provider_foundation18PathProviderPluginCMn",
"_path_provider_foundationVersionString",
"_$s24path_provider_foundation18PathProviderPluginCMa",
"_$s24path_provider_foundation20PathProviderApiSetupCMa",
"_$s24path_provider_foundation20PathProviderApiSetupCN",
"_$s24path_provider_foundation20PathProviderApiSetupC5setUp15binaryMessenger3apiySo013FlutterBinaryK0_p_AA0deF0_pSgtFZ",
"_$s24path_provider_foundation13DirectoryTypeOSQAAMc",
"_$s24path_provider_foundation18PathProviderPluginC012getContainerD018appGroupIdentifierSSSgSS_tF",
"_$s24path_provider_foundation18PathProviderPluginCfD",
"_$s24path_provider_foundation13DirectoryTypeOSHAAMc",
"_$s24path_provider_foundation13DirectoryTypeO8rawValueSivg",
"_$s24path_provider_foundation13DirectoryTypeOMa",
"_$s24path_provider_foundation20PathProviderApiSetupCACycfCTq",
"_$s24path_provider_foundation15PathProviderApiMp",
"_$s24path_provider_foundation20PathProviderApiSetupCfD",
"_path_provider_foundationVersionNumber",
"_$s24path_provider_foundation20PathProviderApiSetupCfd",
"_$s24path_provider_foundation18PathProviderPluginC012getDirectoryD04typeSSSgAA0H4TypeO_tFTq",
"_$s24path_provider_foundation18PathProviderPluginCAA0dE3ApiAAMc",
"_$s24path_provider_foundation18PathProviderPluginC8register4withySo07FlutterF9Registrar_p_tFZ",
"_$s24path_provider_foundation13DirectoryTypeO8rawValueSivpMV",
"_$s24path_provider_foundation13DirectoryTypeOSYAAMc",
"_$s24path_provider_foundation13DirectoryTypeON",
"_$s24path_provider_foundation20PathProviderApiSetupCMn",
"_$s24path_provider_foundation18PathProviderPluginCACycfC",
"_$s24path_provider_foundation15PathProviderApiTL",
"_$s24path_provider_foundation18PathProviderPluginC012getDirectoryD04typeSSSgAA0H4TypeO_tF",
"_$s24path_provider_foundation18PathProviderPluginCN",
"_$s24path_provider_foundation13DirectoryTypeO8rawValueACSgSi_tcfC",
"_$s24path_provider_foundation13DirectoryTypeOMn",
"_$s24path_provider_foundation18PathProviderPluginCAA0dE3ApiAAWP",
"_$s24path_provider_foundation18PathProviderPluginCACycfc",
"_$s24path_provider_foundation20PathProviderApiSetupCACycfC",
"_$s24path_provider_foundation20PathProviderApiSetupCACycfc",
"_$s24path_provider_foundation20PathProviderApiSetupCMm"
],
"objc_class": [
"PodsDummy_path_provider_foundation",
"_TtC24path_provider_foundation18PathProviderPlugin"
]
}
}
],
"flags": [
{
"attributes": [
"not_app_extension_safe"
]
}
],
"install_names": [
{
"name": "@rpath/path_provider_foundation.framework/Versions/A/path_provider_foundation"
}
],
"swift_abi": [
{
"abi": 7
}
],
"target_info": [
{
"min_deployment": "11",
"target": "arm64-macos"
}
]
},
"tapi_tbd_version": 5
}

View File

@ -0,0 +1 @@
/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/EagerLinkingTBDs/Debug/path_provider_foundation.framework/Versions/A/path_provider_foundation.tbd

View File

@ -1 +1 @@
-target arm64-apple-macos10.14 '-std=gnu11' -fmodules -gmodules '-fmodules-cache-path=/Users/yuliyarudenko/cpd/build/macos/ModuleCache.noindex' '-fmodule-name=Pods_Runner' -fpascal-strings -O0 -fno-common '-DPOD_CONFIGURATION_DEBUG=1' '-DDEBUG=1' '-DCOCOAPODS=1' -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -g -iquote /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-generated-files.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-own-target-headers.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-all-non-framework-target-headers.hmap -ivfsoverlay /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/all-product-headers.yaml -iquote /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-project-headers.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/include -I/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Headers -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/DerivedSources-normal/arm64 -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/DerivedSources/arm64 -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/DerivedSources -F/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug -F/Users/yuliyarudenko/flutter/bin/cache/artifacts/engine/darwin-x64 -F/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite
-target arm64-apple-macos10.14 '-std=gnu11' -fmodules -gmodules '-fmodules-cache-path=/Users/yuliyarudenko/cpd/build/macos/ModuleCache.noindex' '-fmodule-name=Pods_Runner' -fpascal-strings -O0 -fno-common '-DPOD_CONFIGURATION_DEBUG=1' '-DDEBUG=1' '-DCOCOAPODS=1' -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -g -iquote /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-generated-files.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-own-target-headers.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-all-non-framework-target-headers.hmap -ivfsoverlay /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/all-product-headers.yaml -iquote /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-project-headers.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/include -I/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Headers -I/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Headers -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/DerivedSources-normal/arm64 -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/DerivedSources/arm64 -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/DerivedSources -F/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug -F/Users/yuliyarudenko/flutter/bin/cache/artifacts/engine/darwin-x64 -F/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation -F/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite

View File

@ -1 +1 @@
-target arm64-apple-macos10.14 '-std=gnu11' -fobjc-arc -fmodules -gmodules '-fmodules-cache-path=/Users/yuliyarudenko/cpd/build/macos/ModuleCache.noindex' '-fmodule-name=Pods_Runner' -fpascal-strings -O0 -fno-common '-DPOD_CONFIGURATION_DEBUG=1' '-DDEBUG=1' '-DCOCOAPODS=1' '-DOBJC_OLD_DISPATCH_PROTOTYPES=0' -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -g -iquote /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-generated-files.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-own-target-headers.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-all-non-framework-target-headers.hmap -ivfsoverlay /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/all-product-headers.yaml -iquote /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-project-headers.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/include -I/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Headers -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/DerivedSources-normal/arm64 -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/DerivedSources/arm64 -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/DerivedSources -F/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug -F/Users/yuliyarudenko/flutter/bin/cache/artifacts/engine/darwin-x64 -F/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite
-target arm64-apple-macos10.14 '-std=gnu11' -fobjc-arc -fmodules -gmodules '-fmodules-cache-path=/Users/yuliyarudenko/cpd/build/macos/ModuleCache.noindex' '-fmodule-name=Pods_Runner' -fpascal-strings -O0 -fno-common '-DPOD_CONFIGURATION_DEBUG=1' '-DDEBUG=1' '-DCOCOAPODS=1' '-DOBJC_OLD_DISPATCH_PROTOTYPES=0' -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -g -iquote /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-generated-files.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-own-target-headers.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-all-non-framework-target-headers.hmap -ivfsoverlay /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/all-product-headers.yaml -iquote /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/Pods_Runner-project-headers.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/include -I/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Headers -I/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Headers -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/DerivedSources-normal/arm64 -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/DerivedSources/arm64 -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/DerivedSources -F/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug -F/Users/yuliyarudenko/flutter/bin/cache/artifacts/engine/darwin-x64 -F/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation -F/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite

View File

@ -1 +1 @@
{"case-sensitive":"false","roots":[{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h","name":"Pods-Runner-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteCursor.h","name":"SqfliteCursor.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDB.h","name":"SqfliteDarwinDB.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabase.h","name":"SqfliteDarwinDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseAdditions.h","name":"SqfliteDarwinDatabaseAdditions.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseQueue.h","name":"SqfliteDarwinDatabaseQueue.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinImport.h","name":"SqfliteDarwinImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinResultSet.h","name":"SqfliteDarwinResultSet.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDatabase.h","name":"SqfliteDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteImport.h","name":"SqfliteImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteOperation.h","name":"SqfliteOperation.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqflitePlugin.h","name":"SqflitePlugin.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/sqflite/sqflite-umbrella.h","name":"sqflite-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/sqflite.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Modules","type":"directory"}],"version":0}
{"case-sensitive":"false","roots":[{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h","name":"Pods-Runner-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-umbrella.h","name":"path_provider_foundation-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Headers/path_provider_foundation-Swift.h","name":"path_provider_foundation-Swift.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Versions/A/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteCursor.h","name":"SqfliteCursor.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDB.h","name":"SqfliteDarwinDB.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabase.h","name":"SqfliteDarwinDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseAdditions.h","name":"SqfliteDarwinDatabaseAdditions.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseQueue.h","name":"SqfliteDarwinDatabaseQueue.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinImport.h","name":"SqfliteDarwinImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinResultSet.h","name":"SqfliteDarwinResultSet.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDatabase.h","name":"SqfliteDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteImport.h","name":"SqfliteImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteOperation.h","name":"SqfliteOperation.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqflitePlugin.h","name":"SqflitePlugin.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/sqflite/sqflite-umbrella.h","name":"sqflite-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/sqflite.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Modules","type":"directory"}],"version":0}

View File

@ -1 +1 @@
{"case-sensitive":"false","roots":[{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h","name":"Pods-Runner-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteCursor.h","name":"SqfliteCursor.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDB.h","name":"SqfliteDarwinDB.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabase.h","name":"SqfliteDarwinDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseAdditions.h","name":"SqfliteDarwinDatabaseAdditions.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseQueue.h","name":"SqfliteDarwinDatabaseQueue.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinImport.h","name":"SqfliteDarwinImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinResultSet.h","name":"SqfliteDarwinResultSet.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDatabase.h","name":"SqfliteDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteImport.h","name":"SqfliteImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteOperation.h","name":"SqfliteOperation.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqflitePlugin.h","name":"SqflitePlugin.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/sqflite/sqflite-umbrella.h","name":"sqflite-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/sqflite.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Modules","type":"directory"}],"version":0}
{"case-sensitive":"false","roots":[{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h","name":"Pods-Runner-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-umbrella.h","name":"path_provider_foundation-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Headers/path_provider_foundation-Swift.h","name":"path_provider_foundation-Swift.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Versions/A/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteCursor.h","name":"SqfliteCursor.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDB.h","name":"SqfliteDarwinDB.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabase.h","name":"SqfliteDarwinDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseAdditions.h","name":"SqfliteDarwinDatabaseAdditions.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseQueue.h","name":"SqfliteDarwinDatabaseQueue.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinImport.h","name":"SqfliteDarwinImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinResultSet.h","name":"SqfliteDarwinResultSet.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDatabase.h","name":"SqfliteDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteImport.h","name":"SqfliteImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteOperation.h","name":"SqfliteOperation.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqflitePlugin.h","name":"SqflitePlugin.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/sqflite/sqflite-umbrella.h","name":"sqflite-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/sqflite.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Modules","type":"directory"}],"version":0}

View File

@ -0,0 +1,5 @@
extern const unsigned char path_provider_foundationVersionString[];
extern const double path_provider_foundationVersionNumber;
const unsigned char path_provider_foundationVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:path_provider_foundation PROJECT:Pods-1" "\n";
const double path_provider_foundationVersionNumber __attribute__ ((used)) = (double)1.;

View File

@ -0,0 +1 @@
-target arm64-apple-macos10.14 '-std=gnu11' -fmodules -gmodules '-fmodules-cache-path=/Users/yuliyarudenko/cpd/build/macos/ModuleCache.noindex' '-fmodule-name=path_provider_foundation' -fpascal-strings -O0 -fno-common '-DPOD_CONFIGURATION_DEBUG=1' '-DDEBUG=1' '-DCOCOAPODS=1' -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -g -iquote /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/path_provider_foundation-generated-files.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/path_provider_foundation-own-target-headers.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/path_provider_foundation-all-non-framework-target-headers.hmap -ivfsoverlay /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/all-product-headers.yaml -iquote /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/path_provider_foundation-project-headers.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/include -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/DerivedSources-normal/arm64 -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/DerivedSources/arm64 -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/DerivedSources -F/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation -F/Users/yuliyarudenko/flutter/bin/cache/artifacts/engine/darwin-x64

View File

@ -0,0 +1 @@
-target arm64-apple-macos10.14 '-std=gnu11' -fobjc-arc -fmodules -gmodules '-fmodules-cache-path=/Users/yuliyarudenko/cpd/build/macos/ModuleCache.noindex' '-fmodule-name=path_provider_foundation' -fpascal-strings -O0 -fno-common '-DPOD_CONFIGURATION_DEBUG=1' '-DDEBUG=1' '-DCOCOAPODS=1' '-DOBJC_OLD_DISPATCH_PROTOTYPES=0' -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -g -iquote /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/path_provider_foundation-generated-files.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/path_provider_foundation-own-target-headers.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/path_provider_foundation-all-non-framework-target-headers.hmap -ivfsoverlay /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/all-product-headers.yaml -iquote /Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/path_provider_foundation-project-headers.hmap -I/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/include -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/DerivedSources-normal/arm64 -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/DerivedSources/arm64 -I/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/DerivedSources -F/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation -F/Users/yuliyarudenko/flutter/bin/cache/artifacts/engine/darwin-x64

View File

@ -0,0 +1,28 @@
{
"" : {
"diagnostics" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/path_provider_foundation-master.dia",
"emit-module-dependencies" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/path_provider_foundation-master-emit-module.d",
"emit-module-diagnostics" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/path_provider_foundation-master-emit-module.dia",
"swift-dependencies" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/path_provider_foundation-master.swiftdeps"
},
"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/darwin/path_provider_foundation/Sources/path_provider_foundation/messages.g.swift" : {
"const-values" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/messages.g.swiftconstvalues",
"dependencies" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/messages.g.d",
"diagnostics" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/messages.g.dia",
"index-unit-output-path" : "/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/messages.g.o",
"llvm-bc" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/messages.g.bc",
"object" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/messages.g.o",
"swift-dependencies" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/messages.g.swiftdeps",
"swiftmodule" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/messages.g~partial.swiftmodule"
},
"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/darwin/path_provider_foundation/Sources/path_provider_foundation/PathProviderPlugin.swift" : {
"const-values" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/PathProviderPlugin.swiftconstvalues",
"dependencies" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/PathProviderPlugin.d",
"diagnostics" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/PathProviderPlugin.dia",
"index-unit-output-path" : "/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/PathProviderPlugin.o",
"llvm-bc" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/PathProviderPlugin.bc",
"object" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/PathProviderPlugin.o",
"swift-dependencies" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/PathProviderPlugin.swiftdeps",
"swiftmodule" : "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/PathProviderPlugin~partial.swiftmodule"
}
}

View File

@ -0,0 +1,315 @@
// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
#ifndef PATH_PROVIDER_FOUNDATION_SWIFT_H
#define PATH_PROVIDER_FOUNDATION_SWIFT_H
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"
#if !defined(__has_include)
# define __has_include(x) 0
#endif
#if !defined(__has_attribute)
# define __has_attribute(x) 0
#endif
#if !defined(__has_feature)
# define __has_feature(x) 0
#endif
#if !defined(__has_warning)
# define __has_warning(x) 0
#endif
#if __has_include(<swift/objc-prologue.h>)
# include <swift/objc-prologue.h>
#endif
#pragma clang diagnostic ignored "-Wauto-import"
#if defined(__OBJC__)
#include <Foundation/Foundation.h>
#endif
#if defined(__cplusplus)
#include <cstdint>
#include <cstddef>
#include <cstdbool>
#include <cstring>
#include <stdlib.h>
#include <new>
#include <type_traits>
#else
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <string.h>
#endif
#if defined(__cplusplus)
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h>
#else
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
# ifndef __ptrauth_swift_value_witness_function_pointer
# define __ptrauth_swift_value_witness_function_pointer(x)
# endif
# ifndef __ptrauth_swift_class_method_pointer
# define __ptrauth_swift_class_method_pointer(x)
# endif
#pragma clang diagnostic pop
#endif
#endif
#if !defined(SWIFT_TYPEDEFS)
# define SWIFT_TYPEDEFS 1
# if __has_include(<uchar.h>)
# include <uchar.h>
# elif !defined(__cplusplus)
typedef uint_least16_t char16_t;
typedef uint_least32_t char32_t;
# endif
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif
#if !defined(SWIFT_PASTE)
# define SWIFT_PASTE_HELPER(x, y) x##y
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
#endif
#if !defined(SWIFT_METATYPE)
# define SWIFT_METATYPE(X) Class
#endif
#if !defined(SWIFT_CLASS_PROPERTY)
# if __has_feature(objc_class_property)
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
# else
# define SWIFT_CLASS_PROPERTY(...)
# endif
#endif
#if !defined(SWIFT_RUNTIME_NAME)
# if __has_attribute(objc_runtime_name)
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
# else
# define SWIFT_RUNTIME_NAME(X)
# endif
#endif
#if !defined(SWIFT_COMPILE_NAME)
# if __has_attribute(swift_name)
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
# else
# define SWIFT_COMPILE_NAME(X)
# endif
#endif
#if !defined(SWIFT_METHOD_FAMILY)
# if __has_attribute(objc_method_family)
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
# else
# define SWIFT_METHOD_FAMILY(X)
# endif
#endif
#if !defined(SWIFT_NOESCAPE)
# if __has_attribute(noescape)
# define SWIFT_NOESCAPE __attribute__((noescape))
# else
# define SWIFT_NOESCAPE
# endif
#endif
#if !defined(SWIFT_RELEASES_ARGUMENT)
# if __has_attribute(ns_consumed)
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
# else
# define SWIFT_RELEASES_ARGUMENT
# endif
#endif
#if !defined(SWIFT_WARN_UNUSED_RESULT)
# if __has_attribute(warn_unused_result)
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
# else
# define SWIFT_WARN_UNUSED_RESULT
# endif
#endif
#if !defined(SWIFT_NORETURN)
# if __has_attribute(noreturn)
# define SWIFT_NORETURN __attribute__((noreturn))
# else
# define SWIFT_NORETURN
# endif
#endif
#if !defined(SWIFT_CLASS_EXTRA)
# define SWIFT_CLASS_EXTRA
#endif
#if !defined(SWIFT_PROTOCOL_EXTRA)
# define SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_ENUM_EXTRA)
# define SWIFT_ENUM_EXTRA
#endif
#if !defined(SWIFT_CLASS)
# if __has_attribute(objc_subclassing_restricted)
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# else
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# endif
#endif
#if !defined(SWIFT_RESILIENT_CLASS)
# if __has_attribute(objc_class_stub)
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
# else
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
# endif
#endif
#if !defined(SWIFT_PROTOCOL)
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_EXTENSION)
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
#endif
#if !defined(OBJC_DESIGNATED_INITIALIZER)
# if __has_attribute(objc_designated_initializer)
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
# else
# define OBJC_DESIGNATED_INITIALIZER
# endif
#endif
#if !defined(SWIFT_ENUM_ATTR)
# if __has_attribute(enum_extensibility)
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
# else
# define SWIFT_ENUM_ATTR(_extensibility)
# endif
#endif
#if !defined(SWIFT_ENUM)
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# if __has_feature(generalized_swift_name)
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# else
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
# endif
#endif
#if !defined(SWIFT_UNAVAILABLE)
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
#endif
#if !defined(SWIFT_UNAVAILABLE_MSG)
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
#endif
#if !defined(SWIFT_AVAILABILITY)
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
#endif
#if !defined(SWIFT_WEAK_IMPORT)
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
#endif
#if !defined(SWIFT_DEPRECATED)
# define SWIFT_DEPRECATED __attribute__((deprecated))
#endif
#if !defined(SWIFT_DEPRECATED_MSG)
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
#endif
#if !defined(SWIFT_DEPRECATED_OBJC)
# if __has_feature(attribute_diagnose_if_objc)
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
# else
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
# endif
#endif
#if defined(__OBJC__)
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
# else
# define SWIFT_EXTERN extern
# endif
#endif
#if !defined(SWIFT_CALL)
# define SWIFT_CALL __attribute__((swiftcall))
#endif
#if !defined(SWIFT_INDIRECT_RESULT)
# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
#endif
#if !defined(SWIFT_CONTEXT)
# define SWIFT_CONTEXT __attribute__((swift_context))
#endif
#if !defined(SWIFT_ERROR_RESULT)
# define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
#endif
#if defined(__cplusplus)
# define SWIFT_NOEXCEPT noexcept
#else
# define SWIFT_NOEXCEPT
#endif
#if !defined(SWIFT_C_INLINE_THUNK)
# if __has_attribute(always_inline)
# if __has_attribute(nodebug)
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
# else
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
# endif
# else
# define SWIFT_C_INLINE_THUNK inline
# endif
#endif
#if defined(_WIN32)
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
#endif
#else
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL
#endif
#endif
#if defined(__OBJC__)
#if __has_feature(objc_modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
@import FlutterMacOS;
@import ObjectiveC;
#endif
#endif
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
#if __has_warning("-Wpragma-clang-attribute")
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
#endif
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wnullability"
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
#if __has_attribute(external_source_symbol)
# pragma push_macro("any")
# undef any
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="path_provider_foundation",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
# pragma pop_macro("any")
#endif
#if defined(__OBJC__)
@protocol FlutterPluginRegistrar;
SWIFT_CLASS("_TtC24path_provider_foundation18PathProviderPlugin")
@interface PathProviderPlugin : NSObject <FlutterPlugin>
+ (void)registerWithRegistrar:(id <FlutterPluginRegistrar> _Nonnull)registrar;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
#if defined(__cplusplus)
#endif
#pragma clang diagnostic pop
#endif

View File

@ -0,0 +1,4 @@
dependencies: \
/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/module.modulemap \
/Users/yuliyarudenko/cpd/macos/Pods/Target\ Support\ Files/path_provider_foundation/path_provider_foundation-dummy.m \
/Users/yuliyarudenko/cpd/macos/Pods/Target\ Support\ Files/path_provider_foundation/path_provider_foundation-prefix.pch

View File

@ -0,0 +1,4 @@
/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/path_provider_foundation_vers.o
/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/path_provider_foundation-dummy.o
/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/messages.g.o
/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/PathProviderPlugin.o

View File

@ -0,0 +1,2 @@
/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/messages.g.swiftconstvalues
/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/Objects-normal/arm64/PathProviderPlugin.swiftconstvalues

View File

@ -0,0 +1,2 @@
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/darwin/path_provider_foundation/Sources/path_provider_foundation/messages.g.swift
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/darwin/path_provider_foundation/Sources/path_provider_foundation/PathProviderPlugin.swift

View File

@ -0,0 +1,9 @@
{
"ABIRoot": {
"kind": "Root",
"name": "TopLevel",
"printedName": "TopLevel",
"json_format_version": 8
},
"ConstValues": []
}

View File

@ -0,0 +1,3 @@
dependencies: \
/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/module.modulemap \
/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/DerivedSources/path_provider_foundation_vers.c

View File

@ -1 +1 @@
{"case-sensitive":"false","roots":[{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h","name":"Pods-Runner-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteCursor.h","name":"SqfliteCursor.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDB.h","name":"SqfliteDarwinDB.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabase.h","name":"SqfliteDarwinDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseAdditions.h","name":"SqfliteDarwinDatabaseAdditions.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseQueue.h","name":"SqfliteDarwinDatabaseQueue.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinImport.h","name":"SqfliteDarwinImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinResultSet.h","name":"SqfliteDarwinResultSet.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDatabase.h","name":"SqfliteDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteImport.h","name":"SqfliteImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteOperation.h","name":"SqfliteOperation.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqflitePlugin.h","name":"SqflitePlugin.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/sqflite/sqflite-umbrella.h","name":"sqflite-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/sqflite.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Modules","type":"directory"}],"version":0}
{"case-sensitive":"false","roots":[{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h","name":"Pods-Runner-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-umbrella.h","name":"path_provider_foundation-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Headers/path_provider_foundation-Swift.h","name":"path_provider_foundation-Swift.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Versions/A/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteCursor.h","name":"SqfliteCursor.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDB.h","name":"SqfliteDarwinDB.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabase.h","name":"SqfliteDarwinDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseAdditions.h","name":"SqfliteDarwinDatabaseAdditions.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseQueue.h","name":"SqfliteDarwinDatabaseQueue.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinImport.h","name":"SqfliteDarwinImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinResultSet.h","name":"SqfliteDarwinResultSet.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDatabase.h","name":"SqfliteDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteImport.h","name":"SqfliteImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteOperation.h","name":"SqfliteOperation.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqflitePlugin.h","name":"SqflitePlugin.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/sqflite/sqflite-umbrella.h","name":"sqflite-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/sqflite.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Modules","type":"directory"}],"version":0}

View File

@ -0,0 +1,11 @@
framework module path_provider_foundation {
umbrella header "path_provider_foundation-umbrella.h"
export *
module * { export * }
}
module path_provider_foundation.Swift {
header "path_provider_foundation-Swift.h"
requires objc
}

View File

@ -0,0 +1,23 @@
{
'version': 0,
'use-external-names': 'false',
'case-sensitive': 'false',
'roots': [{
'type': 'directory',
'name': "/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Modules"
'contents': [{
'type': 'file',
'name': "module.modulemap",
'external-contents': "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/unextended-module.modulemap",
}]
},
{
'type': 'directory',
'name': "/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Headers"
'contents': [{
'type': 'file',
'name': "path_provider_foundation-Swift.h",
'external-contents': "/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/unextended-interface-header.h",
}]
}]
}

View File

@ -0,0 +1,10 @@
framework module path_provider_foundation {
umbrella header "path_provider_foundation-umbrella.h"
export *
module * { export * }
}
module path_provider_foundation.__Swift {
exclude header "path_provider_foundation-Swift.h"
}

View File

@ -1 +1 @@
{"case-sensitive":"false","roots":[{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h","name":"Pods-Runner-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteCursor.h","name":"SqfliteCursor.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDB.h","name":"SqfliteDarwinDB.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabase.h","name":"SqfliteDarwinDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseAdditions.h","name":"SqfliteDarwinDatabaseAdditions.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseQueue.h","name":"SqfliteDarwinDatabaseQueue.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinImport.h","name":"SqfliteDarwinImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinResultSet.h","name":"SqfliteDarwinResultSet.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDatabase.h","name":"SqfliteDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteImport.h","name":"SqfliteImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteOperation.h","name":"SqfliteOperation.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqflitePlugin.h","name":"SqflitePlugin.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/sqflite/sqflite-umbrella.h","name":"sqflite-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/sqflite.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Modules","type":"directory"}],"version":0}
{"case-sensitive":"false","roots":[{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h","name":"Pods-Runner-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-umbrella.h","name":"path_provider_foundation-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Headers/path_provider_foundation-Swift.h","name":"path_provider_foundation-Swift.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Versions/A/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteCursor.h","name":"SqfliteCursor.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDB.h","name":"SqfliteDarwinDB.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabase.h","name":"SqfliteDarwinDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseAdditions.h","name":"SqfliteDarwinDatabaseAdditions.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseQueue.h","name":"SqfliteDarwinDatabaseQueue.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinImport.h","name":"SqfliteDarwinImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinResultSet.h","name":"SqfliteDarwinResultSet.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDatabase.h","name":"SqfliteDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteImport.h","name":"SqfliteImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteOperation.h","name":"SqfliteOperation.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqflitePlugin.h","name":"SqflitePlugin.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/sqflite/sqflite-umbrella.h","name":"sqflite-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/sqflite.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Modules","type":"directory"}],"version":0}

View File

@ -1 +1 @@
{"case-sensitive":"false","roots":[{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h","name":"Pods-Runner-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteCursor.h","name":"SqfliteCursor.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDB.h","name":"SqfliteDarwinDB.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabase.h","name":"SqfliteDarwinDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseAdditions.h","name":"SqfliteDarwinDatabaseAdditions.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseQueue.h","name":"SqfliteDarwinDatabaseQueue.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinImport.h","name":"SqfliteDarwinImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinResultSet.h","name":"SqfliteDarwinResultSet.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDatabase.h","name":"SqfliteDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteImport.h","name":"SqfliteImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteOperation.h","name":"SqfliteOperation.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqflitePlugin.h","name":"SqflitePlugin.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/sqflite/sqflite-umbrella.h","name":"sqflite-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/sqflite.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Modules","type":"directory"}],"version":0}
{"case-sensitive":"false","roots":[{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h","name":"Pods-Runner-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/Pods-Runner.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/Pods_Runner.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/path_provider_foundation/path_provider_foundation-umbrella.h","name":"path_provider_foundation-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/path_provider_foundation.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Modules","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Headers/path_provider_foundation-Swift.h","name":"path_provider_foundation-Swift.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework/Versions/A/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteCursor.h","name":"SqfliteCursor.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDB.h","name":"SqfliteDarwinDB.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabase.h","name":"SqfliteDarwinDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseAdditions.h","name":"SqfliteDarwinDatabaseAdditions.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseQueue.h","name":"SqfliteDarwinDatabaseQueue.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinImport.h","name":"SqfliteDarwinImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinResultSet.h","name":"SqfliteDarwinResultSet.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDatabase.h","name":"SqfliteDatabase.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteImport.h","name":"SqfliteImport.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteOperation.h","name":"SqfliteOperation.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqflitePlugin.h","name":"SqflitePlugin.h","type":"file"},{"external-contents":"/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/sqflite/sqflite-umbrella.h","name":"sqflite-umbrella.h","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Headers","type":"directory"},{"contents":[{"external-contents":"/Users/yuliyarudenko/cpd/build/macos/Build/Intermediates.noindex/Pods.build/Debug/sqflite.build/module.modulemap","name":"module.modulemap","type":"file"}],"name":"/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework/Modules","type":"directory"}],"version":0}

View File

@ -1,5 +1,11 @@
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/_fe_analyzer_shared-67.0.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/analyzer-6.4.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/args-2.5.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/async-2.11.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/boolean_selector-2.1.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/build-2.4.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/built_collection-5.1.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/built_value-8.9.2/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/characters-1.3.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/characters.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/characters.dart
@ -9,6 +15,7 @@
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/constants.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/characters-1.3.0/lib/src/grapheme_clusters/table.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/clock-1.1.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/code_builder-4.10.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/collection-1.18.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/collection-1.18.0/lib/collection.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/collection-1.18.0/lib/src/algorithms.dart
@ -34,16 +41,35 @@
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/collection-1.18.0/lib/src/unmodifiable_wrappers.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/collection-1.18.0/lib/src/utils.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/collection-1.18.0/lib/src/wrappers.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/convert-3.1.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/coverage-1.8.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/crypto-3.0.3/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.8/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.8/assets/CupertinoIcons.ttf
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/dart_style-2.3.6/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/fake_async-1.3.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/ffi-2.1.2/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/ffi-2.1.2/lib/ffi.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/ffi-2.1.2/lib/src/allocation.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/ffi-2.1.2/lib/src/arena.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/ffi-2.1.2/lib/src/utf16.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/ffi-2.1.2/lib/src/utf8.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/file-7.0.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/fixnum-1.1.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/flutter_chart-0.1.6/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/flutter_lints-4.0.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/frontend_server_client-3.2.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/glob-2.1.2/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/http_multi_server-3.2.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/http_parser-4.0.2/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/intl-0.19.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/io-1.0.4/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/js-0.6.7/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/leak_tracker-10.0.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/leak_tracker_flutter_testing-2.0.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/leak_tracker_testing-2.0.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/lints-4.0.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/logging-1.2.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/matcher-0.12.16+1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/material_color_utilities-0.8.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/material_color_utilities-0.8.0/lib/blend/blend.dart
@ -85,6 +111,10 @@
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/meta-1.11.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/meta-1.11.0/lib/meta.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/meta-1.11.0/lib/meta_meta.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/mime-1.0.5/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/mockito-5.4.4/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/node_preamble-2.0.2/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/package_config-2.1.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path-1.9.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path-1.9.0/lib/path.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path-1.9.0/lib/src/characters.dart
@ -99,6 +129,43 @@
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path-1.9.0/lib/src/style/url.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path-1.9.0/lib/src/style/windows.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path-1.9.0/lib/src/utils.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider-2.1.3/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_android-2.2.4/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_android-2.2.4/lib/messages.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_android-2.2.4/lib/path_provider_android.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/lib/messages.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/lib/path_provider_foundation.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/lib/path_provider_linux.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/lib/src/get_application_id.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/lib/src/get_application_id_real.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/lib/src/path_provider_linux.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.1.2/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.1.2/lib/path_provider_platform_interface.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.1.2/lib/src/enums.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_platform_interface-2.1.2/lib/src/method_channel_path_provider.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1/lib/path_provider_windows.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1/lib/src/folders.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1/lib/src/path_provider_windows_real.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/platform-3.1.4/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/platform-3.1.4/lib/platform.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/platform-3.1.4/lib/src/interface/local_platform.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/platform-3.1.4/lib/src/interface/platform.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/platform-3.1.4/lib/src/testing/fake_platform.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.8/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/plugin_platform_interface-2.1.8/lib/plugin_platform_interface.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/pool-1.5.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/process-5.0.2/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/pub_semver-2.1.4/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf-1.4.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf_packages_handler-3.0.2/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf_static-1.1.2/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/shelf_web_socket-1.0.4/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_gen-1.5.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_map_stack_trace-2.1.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_maps-0.10.12/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/source_span-1.10.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/lib/sqflite.dart
@ -154,16 +221,65 @@
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common-2.5.4/lib/src/utils.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common-2.5.4/lib/src/value_utils.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common-2.5.4/lib/utils/utils.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/sqflite_ffi.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/constant.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/database_factory_ffi.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/database_factory_ffi_io.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/database_tracker.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/env_utils.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/import.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/isolate.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/method_call.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/mixin/handler_mixin.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/sqflite_ffi.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/sqflite_ffi_exception.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/sqflite_ffi_handler.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/sqflite_ffi_impl.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/sqflite_ffi_impl_io.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/sqflite_ffi_io.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/sqflite_import.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/windows/setup.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqflite_common_ffi-2.3.3/lib/src/windows/setup_impl.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/common.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/open.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/sqlite3.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/constants.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/database.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/exception.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/ffi/api.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/ffi/bindings.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/ffi/implementation.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/ffi/load_library.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/ffi/memory.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/ffi/sqlite3.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/functions.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/implementation/bindings.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/implementation/database.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/implementation/exception.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/implementation/finalizer.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/implementation/sqlite3.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/implementation/statement.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/implementation/utils.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/result_set.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/sqlite3.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/statement.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sqlite3-2.4.3/lib/src/vfs.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/stack_trace-1.11.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/stream_channel-2.1.2/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/string_scanner-1.2.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/sync_http-0.3.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/synchronized-3.1.0+1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/synchronized-3.1.0+1/lib/src/basic_lock.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/synchronized-3.1.0+1/lib/src/reentrant_lock.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/synchronized-3.1.0+1/lib/src/utils.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/synchronized-3.1.0+1/lib/synchronized.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/term_glyph-1.2.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/test-1.24.9/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/test_api-0.6.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/test_core-0.5.9/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/typed_data-1.3.2/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/vector_math-2.1.4/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/aabb2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/aabb3.dart
@ -191,6 +307,284 @@
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/src/vector_math_64/vector4.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/vector_math-2.1.4/lib/vector_math_64.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/vm_service-13.0.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/watcher-1.1.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/web-0.5.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/web_socket_channel-2.4.5/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/webdriver-3.0.3/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/webkit_inspection_protocol-1.2.1/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/bstr.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/callbacks.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iagileobject.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iapplicationactivationmanager.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxfactory.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxfile.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxfilesenumerator.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxmanifestapplication.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxmanifestapplicationsenumerator.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxmanifestospackagedependency.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxmanifestpackagedependenciesenumerator.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxmanifestpackagedependency.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxmanifestpackageid.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxmanifestproperties.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxmanifestreader.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxmanifestreader2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxmanifestreader3.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxmanifestreader4.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxmanifestreader5.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxmanifestreader6.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxmanifestreader7.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iappxpackagereader.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iaudiocaptureclient.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iaudioclient.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iaudioclient2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iaudioclient3.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iaudioclientduckingcontrol.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iaudioclock.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iaudioclock2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iaudioclockadjustment.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iaudiorenderclient.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iaudiosessioncontrol.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iaudiosessionmanager.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iaudiostreamvolume.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ibindctx.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ichannelaudiovolume.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iclassfactory.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iconnectionpoint.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iconnectionpointcontainer.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/idesktopwallpaper.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/idispatch.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ienumidlist.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ienummoniker.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ienumnetworkconnections.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ienumnetworks.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ienumresources.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ienumspellingerror.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ienumstring.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ienumvariant.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ienumwbemclassobject.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ierrorinfo.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ifiledialog.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ifiledialog2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ifiledialogcustomize.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ifileisinuse.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ifileopendialog.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ifilesavedialog.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iinitializewithwindow.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iinspectable.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iknownfolder.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iknownfoldermanager.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/imetadataassemblyimport.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/imetadatadispenser.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/imetadatadispenserex.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/imetadataimport.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/imetadataimport2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/imetadatatables.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/imetadatatables2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/immdevice.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/immdevicecollection.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/immdeviceenumerator.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/immendpoint.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/immnotificationclient.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/imodalwindow.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/imoniker.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/inetwork.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/inetworkconnection.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/inetworklistmanager.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/inetworklistmanagerevents.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ipersist.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ipersistfile.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ipersistmemory.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ipersiststream.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ipropertystore.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iprovideclassinfo.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/irestrictederrorinfo.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/irunningobjecttable.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/isensor.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/isensorcollection.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/isensordatareport.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/isensormanager.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/isequentialstream.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ishellfolder.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ishellitem.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ishellitem2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ishellitemarray.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ishellitemfilter.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ishellitemimagefactory.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ishellitemresources.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ishelllink.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ishelllinkdatalist.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ishelllinkdual.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ishellservice.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/isimpleaudiovolume.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispeechaudioformat.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispeechbasestream.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispeechobjecttoken.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispeechobjecttokens.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispeechvoice.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispeechvoicestatus.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispeechwaveformatex.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispellchecker.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispellchecker2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispellcheckerchangedeventhandler.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispellcheckerfactory.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispellingerror.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispeventsource.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispnotifysource.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ispvoice.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/istream.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/isupporterrorinfo.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/itypeinfo.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomation.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomation2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomation3.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomation4.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomation5.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomation6.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationandcondition.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationannotationpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationboolcondition.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationcacherequest.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationcondition.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationcustomnavigationpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationdockpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationdragpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationdroptargetpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationelement.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationelement2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationelement3.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationelement4.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationelement5.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationelement6.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationelement7.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationelement8.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationelement9.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationelementarray.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationexpandcollapsepattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationgriditempattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationgridpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationinvokepattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationitemcontainerpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationlegacyiaccessiblepattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationmultipleviewpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationnotcondition.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationobjectmodelpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationorcondition.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationpropertycondition.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationproxyfactory.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationproxyfactoryentry.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationproxyfactorymapping.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationrangevaluepattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationscrollitempattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationscrollpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationselectionitempattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationselectionpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationselectionpattern2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationspreadsheetitempattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationspreadsheetpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationstylespattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationsynchronizedinputpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationtableitempattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationtablepattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationtextchildpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationtexteditpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationtextpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationtextpattern2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationtextrange.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationtextrange2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationtextrange3.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationtextrangearray.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationtogglepattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationtransformpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationtransformpattern2.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationtreewalker.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationvaluepattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationvirtualizeditempattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuiautomationwindowpattern.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iunknown.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iuri.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/ivirtualdesktopmanager.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iwbemclassobject.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iwbemconfigurerefresher.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iwbemcontext.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iwbemhiperfenum.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iwbemlocator.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iwbemobjectaccess.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iwbemrefresher.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iwbemservices.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iwebauthenticationcoremanagerinterop.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/com/iwinhttprequest.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/combase.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/constants.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/constants_metadata.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/constants_nodoc.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/enums.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/enums.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/exceptions.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/extensions/dialogs.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/extensions/int_to_hexstring.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/extensions/list_to_blob.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/extensions/set_ansi.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/extensions/set_string.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/extensions/set_string_array.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/extensions/unpack_utf16.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/guid.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/inline.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/macros.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/propertykey.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/structs.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/types.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/utils.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/variant.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/advapi32.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/api_ms_win_core_apiquery_l2_1_0.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/api_ms_win_core_comm_l1_1_1.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/api_ms_win_core_comm_l1_1_2.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/api_ms_win_core_handle_l1_1_0.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/api_ms_win_core_sysinfo_l1_2_3.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/api_ms_win_core_winrt_error_l1_1_0.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/api_ms_win_core_winrt_l1_1_0.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/api_ms_win_core_winrt_string_l1_1_0.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/api_ms_win_ro_typeresolution_l1_1_0.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/api_ms_win_ro_typeresolution_l1_1_1.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/api_ms_win_shcore_scaling_l1_1_1.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/api_ms_win_wsl_api_l1_1_0.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/bluetoothapis.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/bthprops.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/comctl32.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/comdlg32.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/crypt32.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/dbghelp.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/dwmapi.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/dxva2.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/gdi32.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/iphlpapi.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/kernel32.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/magnification.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/netapi32.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/ntdll.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/ole32.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/oleaut32.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/powrprof.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/rometadata.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/scarddlg.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/setupapi.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/shell32.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/shlwapi.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/user32.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/uxtheme.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/version.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/winmm.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/winscard.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/winspool.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/wlanapi.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/win32/xinput1_4.g.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/winmd_constants.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/src/winrt_helpers.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/win32-5.5.0/lib/win32.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/xdg_directories-1.0.4/LICENSE
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/xdg_directories-1.0.4/lib/xdg_directories.dart
/Users/yuliyarudenko/.pub-cache/hosted/pub.dev/yaml-3.1.2/LICENSE
/Users/yuliyarudenko/cpd/assets/appbar_background.png
/Users/yuliyarudenko/cpd/lib/database/db.dart
/Users/yuliyarudenko/cpd/lib/database/habit.dart

View File

@ -1,2 +1,3 @@
/Users/yuliyarudenko/cpd/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh
/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/path_provider_foundation/path_provider_foundation.framework
/Users/yuliyarudenko/cpd/build/macos/Build/Products/Debug/sqflite/sqflite.framework

Some files were not shown because too many files have changed in this diff Show More