novo projeto
This commit is contained in:
16
.dart_tool/dartpad/web_plugin_registrant.dart
Normal file
16
.dart_tool/dartpad/web_plugin_registrant.dart
Normal file
@@ -0,0 +1,16 @@
|
||||
// Flutter web plugin registrant file.
|
||||
//
|
||||
// Generated file. Do not edit.
|
||||
//
|
||||
|
||||
// @dart = 2.13
|
||||
// ignore_for_file: type=lint
|
||||
|
||||
import 'package:shared_preferences_web/shared_preferences_web.dart';
|
||||
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
|
||||
|
||||
void registerPlugins([final Registrar? pluginRegistrar]) {
|
||||
final Registrar registrar = pluginRegistrar ?? webPluginRegistrar;
|
||||
SharedPreferencesPlugin.registerWith(registrar);
|
||||
registrar.registerMessageHandler();
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
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
@@ -0,0 +1 @@
|
||||
{"inputs":["D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\.dart_tool\\package_config_subset"],"outputs":["D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart"]}
|
||||
@@ -0,0 +1 @@
|
||||
{"inputs":[],"outputs":[]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
["D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/desenvolvimento.png","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/homologacao.png","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/logoEduca.png","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/logoRKM.PNG","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/fonts/Nunito-Regular.ttf","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/line_icons/lib/assets/fonts/LineIcons.ttf","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts/MaterialIcons-Regular.otf","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders/ink_sparkle.frag","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.json","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z"]
|
||||
92
.dart_tool/flutter_build/dart_plugin_registrant.dart
Normal file
92
.dart_tool/flutter_build/dart_plugin_registrant.dart
Normal file
@@ -0,0 +1,92 @@
|
||||
//
|
||||
// Generated file. Do not edit.
|
||||
// This file is generated from template in file `flutter_tools/lib/src/flutter_plugins.dart`.
|
||||
//
|
||||
|
||||
// @dart = 3.1
|
||||
|
||||
import 'dart:io'; // flutter_ignore: dart_io_import.
|
||||
import 'package:shared_preferences_android/shared_preferences_android.dart';
|
||||
import 'package:shared_preferences_foundation/shared_preferences_foundation.dart';
|
||||
import 'package:path_provider_linux/path_provider_linux.dart';
|
||||
import 'package:shared_preferences_linux/shared_preferences_linux.dart';
|
||||
import 'package:shared_preferences_foundation/shared_preferences_foundation.dart';
|
||||
import 'package:path_provider_windows/path_provider_windows.dart';
|
||||
import 'package:shared_preferences_windows/shared_preferences_windows.dart';
|
||||
|
||||
@pragma('vm:entry-point')
|
||||
class _PluginRegistrant {
|
||||
|
||||
@pragma('vm:entry-point')
|
||||
static void register() {
|
||||
if (Platform.isAndroid) {
|
||||
try {
|
||||
SharedPreferencesAndroid.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`shared_preferences_android` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
} else if (Platform.isIOS) {
|
||||
try {
|
||||
SharedPreferencesFoundation.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`shared_preferences_foundation` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
} 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'
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
SharedPreferencesLinux.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`shared_preferences_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 {
|
||||
SharedPreferencesFoundation.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`shared_preferences_foundation` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
} 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'
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
SharedPreferencesWindows.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`shared_preferences_windows` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
350
.dart_tool/package_config.json
Normal file
350
.dart_tool/package_config.json
Normal file
@@ -0,0 +1,350 @@
|
||||
{
|
||||
"configVersion": 2,
|
||||
"packages": [
|
||||
{
|
||||
"name": "args",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.2",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "asn1lib",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/asn1lib-1.5.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "async",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.11.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "boolean_selector",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.17"
|
||||
},
|
||||
{
|
||||
"name": "brasil_fields",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/brasil_fields-1.14.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "characters",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.3.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "clock",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "collection",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.2",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "convert",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "crypto",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "cupertino_icons",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.6",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "encrypt",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/encrypt-5.0.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "fake_async",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "ffi",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.1.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "file",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/file-7.0.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "flutter",
|
||||
"rootUri": "file:///C:/src/flutter/packages/flutter",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "flutter_lints",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "flutter_localizations",
|
||||
"rootUri": "file:///C:/src/flutter/packages/flutter_localizations",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "flutter_test",
|
||||
"rootUri": "file:///C:/src/flutter/packages/flutter_test",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "flutter_web_plugins",
|
||||
"rootUri": "file:///C:/src/flutter/packages/flutter_web_plugins",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "gainer_crypto",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/gainer_crypto-0.0.6",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.17"
|
||||
},
|
||||
{
|
||||
"name": "http",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.1.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "http_parser",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "intl",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.18.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "js",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.7",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "line_icons",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/line_icons-2.0.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "lints",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.1.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "matcher",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.16",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "material_color_utilities",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.5.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.17"
|
||||
},
|
||||
{
|
||||
"name": "meta",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.9.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "path",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "path_provider_linux",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.2.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "path_provider_platform_interface",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.1.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "path_provider_windows",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.2.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "platform",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "plugin_platform_interface",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.6",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "pointycastle",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.14"
|
||||
},
|
||||
{
|
||||
"name": "shared_preferences",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences-2.2.2",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "shared_preferences_android",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_android-2.2.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "shared_preferences_foundation",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_foundation-2.3.4",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "shared_preferences_linux",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_linux-2.3.2",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "shared_preferences_platform_interface",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_platform_interface-2.3.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "shared_preferences_web",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_web-2.2.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "shared_preferences_windows",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_windows-2.3.2",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "sky_engine",
|
||||
"rootUri": "file:///C:/src/flutter/bin/cache/pkg/sky_engine",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "source_span",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.10.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "stack_trace",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "stream_channel",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.14"
|
||||
},
|
||||
{
|
||||
"name": "string_scanner",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "term_glyph",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "test_api",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.6.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "typed_data",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.2",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.17"
|
||||
},
|
||||
{
|
||||
"name": "vector_math",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.14"
|
||||
},
|
||||
{
|
||||
"name": "web",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/web-0.1.4-beta",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.1"
|
||||
},
|
||||
{
|
||||
"name": "win32",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/win32-5.0.9",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "xdg_directories",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "rkm_educa_prof_app",
|
||||
"rootUri": "../",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.1"
|
||||
}
|
||||
],
|
||||
"generated": "2023-11-06T17:29:35.535016Z",
|
||||
"generator": "pub",
|
||||
"generatorVersion": "3.1.4"
|
||||
}
|
||||
229
.dart_tool/package_config_subset
Normal file
229
.dart_tool/package_config_subset
Normal file
@@ -0,0 +1,229 @@
|
||||
args
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.2/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.2/lib/
|
||||
asn1lib
|
||||
3.0
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/asn1lib-1.5.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/asn1lib-1.5.0/lib/
|
||||
async
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.11.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.11.0/lib/
|
||||
boolean_selector
|
||||
2.17
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/lib/
|
||||
brasil_fields
|
||||
3.0
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/brasil_fields-1.14.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/brasil_fields-1.14.0/lib/
|
||||
characters
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.3.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.3.0/lib/
|
||||
clock
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/lib/
|
||||
collection
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.2/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.2/lib/
|
||||
convert
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/lib/
|
||||
crypto
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/lib/
|
||||
cupertino_icons
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.6/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.6/lib/
|
||||
encrypt
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/encrypt-5.0.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/encrypt-5.0.3/lib/
|
||||
fake_async
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/lib/
|
||||
ffi
|
||||
3.0
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.1.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.1.0/lib/
|
||||
file
|
||||
3.0
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/file-7.0.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/file-7.0.0/lib/
|
||||
flutter_lints
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.3/lib/
|
||||
gainer_crypto
|
||||
2.17
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/gainer_crypto-0.0.6/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/gainer_crypto-0.0.6/lib/
|
||||
http
|
||||
3.0
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.1.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.1.0/lib/
|
||||
http_parser
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/lib/
|
||||
intl
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.18.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.18.1/lib/
|
||||
js
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.7/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.7/lib/
|
||||
line_icons
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/line_icons-2.0.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/line_icons-2.0.3/lib/
|
||||
lints
|
||||
3.0
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.1.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.1.1/lib/
|
||||
matcher
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.16/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.16/lib/
|
||||
material_color_utilities
|
||||
2.17
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.5.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/
|
||||
meta
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.9.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.9.1/lib/
|
||||
path
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.3/lib/
|
||||
path_provider_linux
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.2.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.2.1/lib/
|
||||
path_provider_platform_interface
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.1.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.1.1/lib/
|
||||
path_provider_windows
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.2.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.2.1/lib/
|
||||
platform
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.3/lib/
|
||||
plugin_platform_interface
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.6/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.6/lib/
|
||||
pointycastle
|
||||
2.14
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/lib/
|
||||
shared_preferences
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences-2.2.2/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences-2.2.2/lib/
|
||||
shared_preferences_android
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_android-2.2.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_android-2.2.1/lib/
|
||||
shared_preferences_foundation
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_foundation-2.3.4/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_foundation-2.3.4/lib/
|
||||
shared_preferences_linux
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_linux-2.3.2/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_linux-2.3.2/lib/
|
||||
shared_preferences_platform_interface
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_platform_interface-2.3.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_platform_interface-2.3.1/lib/
|
||||
shared_preferences_web
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_web-2.2.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_web-2.2.1/lib/
|
||||
shared_preferences_windows
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_windows-2.3.2/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_windows-2.3.2/lib/
|
||||
source_span
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.10.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.10.0/lib/
|
||||
stack_trace
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/lib/
|
||||
stream_channel
|
||||
2.14
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/lib/
|
||||
string_scanner
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/lib/
|
||||
term_glyph
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/lib/
|
||||
test_api
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.6.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.6.0/lib/
|
||||
typed_data
|
||||
2.17
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.2/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.2/lib/
|
||||
vector_math
|
||||
2.14
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/lib/
|
||||
web
|
||||
3.1
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/web-0.1.4-beta/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/web-0.1.4-beta/lib/
|
||||
win32
|
||||
3.0
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/win32-5.0.9/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/win32-5.0.9/lib/
|
||||
xdg_directories
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.3/lib/
|
||||
sky_engine
|
||||
3.0
|
||||
file:///C:/src/flutter/bin/cache/pkg/sky_engine/
|
||||
file:///C:/src/flutter/bin/cache/pkg/sky_engine/lib/
|
||||
flutter
|
||||
3.0
|
||||
file:///C:/src/flutter/packages/flutter/
|
||||
file:///C:/src/flutter/packages/flutter/lib/
|
||||
flutter_localizations
|
||||
3.0
|
||||
file:///C:/src/flutter/packages/flutter_localizations/
|
||||
file:///C:/src/flutter/packages/flutter_localizations/lib/
|
||||
flutter_test
|
||||
3.0
|
||||
file:///C:/src/flutter/packages/flutter_test/
|
||||
file:///C:/src/flutter/packages/flutter_test/lib/
|
||||
flutter_web_plugins
|
||||
3.0
|
||||
file:///C:/src/flutter/packages/flutter_web_plugins/
|
||||
file:///C:/src/flutter/packages/flutter_web_plugins/lib/
|
||||
rkm_educa_prof_app
|
||||
3.1
|
||||
file:///D:/PROJETOS/FLUTTER/rkm_educa_prof_app/
|
||||
file:///D:/PROJETOS/FLUTTER/rkm_educa_prof_app/lib/
|
||||
2
|
||||
1
.dart_tool/version
Normal file
1
.dart_tool/version
Normal file
@@ -0,0 +1 @@
|
||||
3.13.8
|
||||
9
.flutter-plugins
Normal file
9
.flutter-plugins
Normal file
@@ -0,0 +1,9 @@
|
||||
# This is a generated file; do not edit or check into version control.
|
||||
path_provider_linux=C:\\Users\\Reginaldo\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\
|
||||
path_provider_windows=C:\\Users\\Reginaldo\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.2.1\\
|
||||
shared_preferences=C:\\Users\\Reginaldo\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences-2.2.2\\
|
||||
shared_preferences_android=C:\\Users\\Reginaldo\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_android-2.2.1\\
|
||||
shared_preferences_foundation=C:\\Users\\Reginaldo\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_foundation-2.3.4\\
|
||||
shared_preferences_linux=C:\\Users\\Reginaldo\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_linux-2.3.2\\
|
||||
shared_preferences_web=C:\\Users\\Reginaldo\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_web-2.2.1\\
|
||||
shared_preferences_windows=C:\\Users\\Reginaldo\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_windows-2.3.2\\
|
||||
1
.flutter-plugins-dependencies
Normal file
1
.flutter-plugins-dependencies
Normal file
@@ -0,0 +1 @@
|
||||
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"shared_preferences_foundation","path":"C:\\\\Users\\\\Reginaldo\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\shared_preferences_foundation-2.3.4\\\\","shared_darwin_source":true,"native_build":true,"dependencies":[]}],"android":[{"name":"shared_preferences_android","path":"C:\\\\Users\\\\Reginaldo\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\shared_preferences_android-2.2.1\\\\","native_build":true,"dependencies":[]}],"macos":[{"name":"shared_preferences_foundation","path":"C:\\\\Users\\\\Reginaldo\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\shared_preferences_foundation-2.3.4\\\\","shared_darwin_source":true,"native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"C:\\\\Users\\\\Reginaldo\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_linux-2.2.1\\\\","native_build":false,"dependencies":[]},{"name":"shared_preferences_linux","path":"C:\\\\Users\\\\Reginaldo\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\shared_preferences_linux-2.3.2\\\\","native_build":false,"dependencies":["path_provider_linux"]}],"windows":[{"name":"path_provider_windows","path":"C:\\\\Users\\\\Reginaldo\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_windows-2.2.1\\\\","native_build":false,"dependencies":[]},{"name":"shared_preferences_windows","path":"C:\\\\Users\\\\Reginaldo\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\shared_preferences_windows-2.3.2\\\\","native_build":false,"dependencies":["path_provider_windows"]}],"web":[{"name":"shared_preferences_web","path":"C:\\\\Users\\\\Reginaldo\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\shared_preferences_web-2.2.1\\\\","dependencies":[]}]},"dependencyGraph":[{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]},{"name":"shared_preferences","dependencies":["shared_preferences_android","shared_preferences_foundation","shared_preferences_linux","shared_preferences_web","shared_preferences_windows"]},{"name":"shared_preferences_android","dependencies":[]},{"name":"shared_preferences_foundation","dependencies":[]},{"name":"shared_preferences_linux","dependencies":["path_provider_linux"]},{"name":"shared_preferences_web","dependencies":[]},{"name":"shared_preferences_windows","dependencies":["path_provider_windows"]}],"date_created":"2023-11-06 14:32:53.207256","version":"3.13.8"}
|
||||
3
.idea/.gitignore
generated
vendored
Normal file
3
.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
460
.idea/libraries/Dart_Packages.xml
generated
Normal file
460
.idea/libraries/Dart_Packages.xml
generated
Normal file
@@ -0,0 +1,460 @@
|
||||
<component name="libraryTable">
|
||||
<library name="Dart Packages" type="DartPackagesLibraryType">
|
||||
<properties>
|
||||
<option name="packageNameToDirsMap">
|
||||
<entry key="args">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.2/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="asn1lib">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/asn1lib-1.5.0/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="async">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.11.0/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="boolean_selector">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="brasil_fields">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/brasil_fields-1.14.0/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="characters">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.3.0/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="clock">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="collection">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.2/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="convert">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="crypto">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="cupertino_icons">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.6/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="encrypt">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/encrypt-5.0.3/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="fake_async">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="ffi">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.1.0/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="file">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/file-7.0.0/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="flutter">
|
||||
<value>
|
||||
<list>
|
||||
<option value="C:/src/flutter/packages/flutter/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="flutter_lints">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.3/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="flutter_localizations">
|
||||
<value>
|
||||
<list>
|
||||
<option value="C:/src/flutter/packages/flutter_localizations/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="flutter_test">
|
||||
<value>
|
||||
<list>
|
||||
<option value="C:/src/flutter/packages/flutter_test/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="flutter_web_plugins">
|
||||
<value>
|
||||
<list>
|
||||
<option value="C:/src/flutter/packages/flutter_web_plugins/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="gainer_crypto">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/gainer_crypto-0.0.6/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="http">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.1.0/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="http_parser">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="intl">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.18.1/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="js">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.7/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="line_icons">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/line_icons-2.0.3/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="lints">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.1.1/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="matcher">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.16/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="material_color_utilities">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.5.0/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="meta">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.9.1/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="path">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.3/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="path_provider_linux">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/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="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.1.1/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="path_provider_windows">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.2.1/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="platform">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.3/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="plugin_platform_interface">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.6/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="pointycastle">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="shared_preferences">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences-2.2.2/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="shared_preferences_android">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_android-2.2.1/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="shared_preferences_foundation">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_foundation-2.3.4/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="shared_preferences_linux">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_linux-2.3.2/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="shared_preferences_platform_interface">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_platform_interface-2.3.1/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="shared_preferences_web">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_web-2.2.1/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="shared_preferences_windows">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_windows-2.3.2/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="sky_engine">
|
||||
<value>
|
||||
<list>
|
||||
<option value="C:/src/flutter/bin/cache/pkg/sky_engine/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="source_span">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.10.0/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="stack_trace">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="stream_channel">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="string_scanner">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="term_glyph">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="test_api">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.6.0/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="typed_data">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.2/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="vector_math">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="web">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/web-0.1.4-beta/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="win32">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/win32-5.0.9/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="xdg_directories">
|
||||
<value>
|
||||
<list>
|
||||
<option value="$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.3/lib" />
|
||||
</list>
|
||||
</value>
|
||||
</entry>
|
||||
</option>
|
||||
</properties>
|
||||
<CLASSES>
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.2/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/asn1lib-1.5.0/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.11.0/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/brasil_fields-1.14.0/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.3.0/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.2/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.6/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/encrypt-5.0.3/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.1.0/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/file-7.0.0/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.3/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/gainer_crypto-0.0.6/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.1.0/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.18.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.7/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/line_icons-2.0.3/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.1.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.16/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.5.0/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.9.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.3/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.2.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.1.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.2.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.3/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.6/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences-2.2.2/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_android-2.2.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_foundation-2.3.4/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_linux-2.3.2/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_platform_interface-2.3.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_web-2.2.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_windows-2.3.2/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.10.0/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.6.0/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.2/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/web-0.1.4-beta/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/win32-5.0.9/lib" />
|
||||
<root url="file://$USER_HOME$/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.3/lib" />
|
||||
<root url="file://C:/src/flutter/bin/cache/pkg/sky_engine/lib" />
|
||||
<root url="file://C:/src/flutter/packages/flutter/lib" />
|
||||
<root url="file://C:/src/flutter/packages/flutter_localizations/lib" />
|
||||
<root url="file://C:/src/flutter/packages/flutter_test/lib" />
|
||||
<root url="file://C:/src/flutter/packages/flutter_web_plugins/lib" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</component>
|
||||
29
.idea/libraries/Dart_SDK.xml
generated
Normal file
29
.idea/libraries/Dart_SDK.xml
generated
Normal file
@@ -0,0 +1,29 @@
|
||||
<component name="libraryTable">
|
||||
<library name="Dart SDK">
|
||||
<CLASSES>
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/async" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/cli" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/collection" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/convert" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/core" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/developer" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/ffi" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/html" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/indexed_db" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/io" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/isolate" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/js" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/js_interop" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/js_interop_unsafe" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/js_util" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/math" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/mirrors" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/svg" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/typed_data" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/web_audio" />
|
||||
<root url="file://C:/src/flutter/bin/cache/dart-sdk/lib/web_gl" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</component>
|
||||
7
.idea/libraries/Flutter_Plugins.xml
generated
Normal file
7
.idea/libraries/Flutter_Plugins.xml
generated
Normal file
@@ -0,0 +1,7 @@
|
||||
<component name="libraryTable">
|
||||
<library name="Flutter Plugins" type="FlutterPluginsLibraryType">
|
||||
<CLASSES />
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</component>
|
||||
15
.idea/libraries/KotlinJavaRuntime.xml
generated
Normal file
15
.idea/libraries/KotlinJavaRuntime.xml
generated
Normal file
@@ -0,0 +1,15 @@
|
||||
<component name="libraryTable">
|
||||
<library name="KotlinJavaRuntime">
|
||||
<CLASSES>
|
||||
<root url="jar://$KOTLIN_BUNDLED$/lib/kotlin-stdlib.jar!/" />
|
||||
<root url="jar://$KOTLIN_BUNDLED$/lib/kotlin-reflect.jar!/" />
|
||||
<root url="jar://$KOTLIN_BUNDLED$/lib/kotlin-test.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES>
|
||||
<root url="jar://$KOTLIN_BUNDLED$/lib/kotlin-stdlib-sources.jar!/" />
|
||||
<root url="jar://$KOTLIN_BUNDLED$/lib/kotlin-reflect-sources.jar!/" />
|
||||
<root url="jar://$KOTLIN_BUNDLED$/lib/kotlin-test-sources.jar!/" />
|
||||
</SOURCES>
|
||||
</library>
|
||||
</component>
|
||||
9
.idea/misc.xml
generated
Normal file
9
.idea/misc.xml
generated
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_19" project-jdk-name="Android API 30 Platform" project-jdk-type="Android SDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
<component name="ProjectType">
|
||||
<option name="id" value="io.flutter" />
|
||||
</component>
|
||||
</project>
|
||||
9
.idea/modules.xml
generated
Normal file
9
.idea/modules.xml
generated
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/rkm_educa_prof_app.iml" filepath="$PROJECT_DIR$/rkm_educa_prof_app.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/android/rkm_educa_prof_app_android.iml" filepath="$PROJECT_DIR$/android/rkm_educa_prof_app_android.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
||||
6
.idea/runConfigurations/main_dart.xml
generated
Normal file
6
.idea/runConfigurations/main_dart.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<component name="ProjectRunConfigurationManager">
|
||||
<configuration default="false" name="main.dart" type="FlutterRunConfigurationType" factoryName="Flutter">
|
||||
<option name="filePath" value="$PROJECT_DIR$/lib/main.dart" />
|
||||
<method />
|
||||
</configuration>
|
||||
</component>
|
||||
6
.idea/vcs.xml
generated
Normal file
6
.idea/vcs.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
||||
BIN
android/.gradle/7.5/checksums/checksums.lock
Normal file
BIN
android/.gradle/7.5/checksums/checksums.lock
Normal file
Binary file not shown.
BIN
android/.gradle/7.5/checksums/md5-checksums.bin
Normal file
BIN
android/.gradle/7.5/checksums/md5-checksums.bin
Normal file
Binary file not shown.
BIN
android/.gradle/7.5/checksums/sha1-checksums.bin
Normal file
BIN
android/.gradle/7.5/checksums/sha1-checksums.bin
Normal file
Binary file not shown.
Binary file not shown.
BIN
android/.gradle/7.5/executionHistory/executionHistory.bin
Normal file
BIN
android/.gradle/7.5/executionHistory/executionHistory.bin
Normal file
Binary file not shown.
BIN
android/.gradle/7.5/executionHistory/executionHistory.lock
Normal file
BIN
android/.gradle/7.5/executionHistory/executionHistory.lock
Normal file
Binary file not shown.
BIN
android/.gradle/7.5/fileChanges/last-build.bin
Normal file
BIN
android/.gradle/7.5/fileChanges/last-build.bin
Normal file
Binary file not shown.
BIN
android/.gradle/7.5/fileHashes/fileHashes.bin
Normal file
BIN
android/.gradle/7.5/fileHashes/fileHashes.bin
Normal file
Binary file not shown.
BIN
android/.gradle/7.5/fileHashes/fileHashes.lock
Normal file
BIN
android/.gradle/7.5/fileHashes/fileHashes.lock
Normal file
Binary file not shown.
BIN
android/.gradle/7.5/fileHashes/resourceHashesCache.bin
Normal file
BIN
android/.gradle/7.5/fileHashes/resourceHashesCache.bin
Normal file
Binary file not shown.
0
android/.gradle/7.5/gc.properties
Normal file
0
android/.gradle/7.5/gc.properties
Normal file
BIN
android/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Normal file
BIN
android/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Normal file
Binary file not shown.
2
android/.gradle/buildOutputCleanup/cache.properties
Normal file
2
android/.gradle/buildOutputCleanup/cache.properties
Normal file
@@ -0,0 +1,2 @@
|
||||
#Wed Nov 01 08:34:21 BRT 2023
|
||||
gradle.version=7.5
|
||||
BIN
android/.gradle/buildOutputCleanup/outputFiles.bin
Normal file
BIN
android/.gradle/buildOutputCleanup/outputFiles.bin
Normal file
Binary file not shown.
BIN
android/.gradle/file-system.probe
Normal file
BIN
android/.gradle/file-system.probe
Normal file
Binary file not shown.
0
android/.gradle/vcs-1/gc.properties
Normal file
0
android/.gradle/vcs-1/gc.properties
Normal file
@@ -0,0 +1,24 @@
|
||||
package io.flutter.plugins;
|
||||
|
||||
import androidx.annotation.Keep;
|
||||
import androidx.annotation.NonNull;
|
||||
import io.flutter.Log;
|
||||
|
||||
import io.flutter.embedding.engine.FlutterEngine;
|
||||
|
||||
/**
|
||||
* Generated file. Do not edit.
|
||||
* This file is generated by the Flutter tool based on the
|
||||
* plugins that support the Android platform.
|
||||
*/
|
||||
@Keep
|
||||
public final class GeneratedPluginRegistrant {
|
||||
private static final String TAG = "GeneratedPluginRegistrant";
|
||||
public static void registerWith(@NonNull FlutterEngine flutterEngine) {
|
||||
try {
|
||||
flutterEngine.getPlugins().add(new io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin());
|
||||
} catch (Exception e) {
|
||||
Log.e(TAG, "Error registering plugin shared_preferences_android, io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
android/gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
BIN
android/gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
Binary file not shown.
160
android/gradlew
vendored
Normal file
160
android/gradlew
vendored
Normal file
@@ -0,0 +1,160 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
##############################################################################
|
||||
##
|
||||
## Gradle start up script for UN*X
|
||||
##
|
||||
##############################################################################
|
||||
|
||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
DEFAULT_JVM_OPTS=""
|
||||
|
||||
APP_NAME="Gradle"
|
||||
APP_BASE_NAME=`basename "$0"`
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD="maximum"
|
||||
|
||||
warn ( ) {
|
||||
echo "$*"
|
||||
}
|
||||
|
||||
die ( ) {
|
||||
echo
|
||||
echo "$*"
|
||||
echo
|
||||
exit 1
|
||||
}
|
||||
|
||||
# OS specific support (must be 'true' or 'false').
|
||||
cygwin=false
|
||||
msys=false
|
||||
darwin=false
|
||||
case "`uname`" in
|
||||
CYGWIN* )
|
||||
cygwin=true
|
||||
;;
|
||||
Darwin* )
|
||||
darwin=true
|
||||
;;
|
||||
MINGW* )
|
||||
msys=true
|
||||
;;
|
||||
esac
|
||||
|
||||
# Attempt to set APP_HOME
|
||||
# Resolve links: $0 may be a link
|
||||
PRG="$0"
|
||||
# Need this for relative symlinks.
|
||||
while [ -h "$PRG" ] ; do
|
||||
ls=`ls -ld "$PRG"`
|
||||
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||
if expr "$link" : '/.*' > /dev/null; then
|
||||
PRG="$link"
|
||||
else
|
||||
PRG=`dirname "$PRG"`"/$link"
|
||||
fi
|
||||
done
|
||||
SAVED="`pwd`"
|
||||
cd "`dirname \"$PRG\"`/" >/dev/null
|
||||
APP_HOME="`pwd -P`"
|
||||
cd "$SAVED" >/dev/null
|
||||
|
||||
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||
|
||||
# Determine the Java command to use to start the JVM.
|
||||
if [ -n "$JAVA_HOME" ] ; then
|
||||
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||
# IBM's JDK on AIX uses strange locations for the executables
|
||||
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||
else
|
||||
JAVACMD="$JAVA_HOME/bin/java"
|
||||
fi
|
||||
if [ ! -x "$JAVACMD" ] ; then
|
||||
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||
|
||||
Please set the JAVA_HOME variable in your environment to match the
|
||||
location of your Java installation."
|
||||
fi
|
||||
else
|
||||
JAVACMD="java"
|
||||
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
|
||||
Please set the JAVA_HOME variable in your environment to match the
|
||||
location of your Java installation."
|
||||
fi
|
||||
|
||||
# Increase the maximum file descriptors if we can.
|
||||
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
|
||||
MAX_FD_LIMIT=`ulimit -H -n`
|
||||
if [ $? -eq 0 ] ; then
|
||||
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
|
||||
MAX_FD="$MAX_FD_LIMIT"
|
||||
fi
|
||||
ulimit -n $MAX_FD
|
||||
if [ $? -ne 0 ] ; then
|
||||
warn "Could not set maximum file descriptor limit: $MAX_FD"
|
||||
fi
|
||||
else
|
||||
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
|
||||
fi
|
||||
fi
|
||||
|
||||
# For Darwin, add options to specify how the application appears in the dock
|
||||
if $darwin; then
|
||||
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
|
||||
fi
|
||||
|
||||
# For Cygwin, switch paths to Windows format before running java
|
||||
if $cygwin ; then
|
||||
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
|
||||
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
|
||||
JAVACMD=`cygpath --unix "$JAVACMD"`
|
||||
|
||||
# We build the pattern for arguments to be converted via cygpath
|
||||
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
|
||||
SEP=""
|
||||
for dir in $ROOTDIRSRAW ; do
|
||||
ROOTDIRS="$ROOTDIRS$SEP$dir"
|
||||
SEP="|"
|
||||
done
|
||||
OURCYGPATTERN="(^($ROOTDIRS))"
|
||||
# Add a user-defined pattern to the cygpath arguments
|
||||
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
|
||||
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
|
||||
fi
|
||||
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||
i=0
|
||||
for arg in "$@" ; do
|
||||
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
|
||||
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
|
||||
|
||||
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
|
||||
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
|
||||
else
|
||||
eval `echo args$i`="\"$arg\""
|
||||
fi
|
||||
i=$((i+1))
|
||||
done
|
||||
case $i in
|
||||
(0) set -- ;;
|
||||
(1) set -- "$args0" ;;
|
||||
(2) set -- "$args0" "$args1" ;;
|
||||
(3) set -- "$args0" "$args1" "$args2" ;;
|
||||
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
|
||||
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
|
||||
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
|
||||
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
|
||||
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
|
||||
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
|
||||
function splitJvmOpts() {
|
||||
JVM_OPTS=("$@")
|
||||
}
|
||||
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
|
||||
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
|
||||
|
||||
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
|
||||
90
android/gradlew.bat
vendored
Normal file
90
android/gradlew.bat
vendored
Normal file
@@ -0,0 +1,90 @@
|
||||
@if "%DEBUG%" == "" @echo off
|
||||
@rem ##########################################################################
|
||||
@rem
|
||||
@rem Gradle startup script for Windows
|
||||
@rem
|
||||
@rem ##########################################################################
|
||||
|
||||
@rem Set local scope for the variables with windows NT shell
|
||||
if "%OS%"=="Windows_NT" setlocal
|
||||
|
||||
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
set DEFAULT_JVM_OPTS=
|
||||
|
||||
set DIRNAME=%~dp0
|
||||
if "%DIRNAME%" == "" set DIRNAME=.
|
||||
set APP_BASE_NAME=%~n0
|
||||
set APP_HOME=%DIRNAME%
|
||||
|
||||
@rem Find java.exe
|
||||
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||
|
||||
set JAVA_EXE=java.exe
|
||||
%JAVA_EXE% -version >NUL 2>&1
|
||||
if "%ERRORLEVEL%" == "0" goto init
|
||||
|
||||
echo.
|
||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
echo.
|
||||
echo Please set the JAVA_HOME variable in your environment to match the
|
||||
echo location of your Java installation.
|
||||
|
||||
goto fail
|
||||
|
||||
:findJavaFromJavaHome
|
||||
set JAVA_HOME=%JAVA_HOME:"=%
|
||||
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||
|
||||
if exist "%JAVA_EXE%" goto init
|
||||
|
||||
echo.
|
||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||
echo.
|
||||
echo Please set the JAVA_HOME variable in your environment to match the
|
||||
echo location of your Java installation.
|
||||
|
||||
goto fail
|
||||
|
||||
:init
|
||||
@rem Get command-line arguments, handling Windowz variants
|
||||
|
||||
if not "%OS%" == "Windows_NT" goto win9xME_args
|
||||
if "%@eval[2+2]" == "4" goto 4NT_args
|
||||
|
||||
:win9xME_args
|
||||
@rem Slurp the command line arguments.
|
||||
set CMD_LINE_ARGS=
|
||||
set _SKIP=2
|
||||
|
||||
:win9xME_args_slurp
|
||||
if "x%~1" == "x" goto execute
|
||||
|
||||
set CMD_LINE_ARGS=%*
|
||||
goto execute
|
||||
|
||||
:4NT_args
|
||||
@rem Get arguments from the 4NT Shell from JP Software
|
||||
set CMD_LINE_ARGS=%$
|
||||
|
||||
:execute
|
||||
@rem Setup the command line
|
||||
|
||||
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||
|
||||
@rem Execute Gradle
|
||||
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
|
||||
|
||||
:end
|
||||
@rem End local scope for the variables with windows NT shell
|
||||
if "%ERRORLEVEL%"=="0" goto mainEnd
|
||||
|
||||
:fail
|
||||
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||
rem the _cmd.exe /c_ return code!
|
||||
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||
exit /b 1
|
||||
|
||||
:mainEnd
|
||||
if "%OS%"=="Windows_NT" endlocal
|
||||
|
||||
:omega
|
||||
5
android/local.properties
Normal file
5
android/local.properties
Normal file
@@ -0,0 +1,5 @@
|
||||
sdk.dir=C:/Users/Reginaldo/AppData/Local/Android/Sdk
|
||||
flutter.sdk=C:\\src\\flutter
|
||||
flutter.buildMode=debug
|
||||
flutter.versionName=1.0.0
|
||||
flutter.versionCode=1
|
||||
29
android/rkm_educa_prof_app_android.iml
Normal file
29
android/rkm_educa_prof_app_android.iml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="FacetManager">
|
||||
<facet type="android" name="Android">
|
||||
<configuration>
|
||||
<option name="ALLOW_USER_CONFIGURATION" value="false" />
|
||||
<option name="GEN_FOLDER_RELATIVE_PATH_APT" value="/gen" />
|
||||
<option name="GEN_FOLDER_RELATIVE_PATH_AIDL" value="/gen" />
|
||||
<option name="MANIFEST_FILE_RELATIVE_PATH" value="/app/src/main/AndroidManifest.xml" />
|
||||
<option name="RES_FOLDER_RELATIVE_PATH" value="/app/src/main/res" />
|
||||
<option name="ASSETS_FOLDER_RELATIVE_PATH" value="/app/src/main/assets" />
|
||||
<option name="LIBS_FOLDER_RELATIVE_PATH" value="/app/src/main/libs" />
|
||||
<option name="PROGUARD_LOGS_FOLDER_RELATIVE_PATH" value="/app/src/main/proguard_logs" />
|
||||
</configuration>
|
||||
</facet>
|
||||
</component>
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/app/src/main/java" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/app/src/main/kotlin" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" generated="true" />
|
||||
</content>
|
||||
<orderEntry type="jdk" jdkName="Android API 29 Platform" jdkType="Android SDK" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="library" name="Flutter for Android" level="project" />
|
||||
<orderEntry type="library" name="KotlinJavaRuntime" level="project" />
|
||||
</component>
|
||||
</module>
|
||||
1
build/21d5d6dccd1efcf137b733f779ec0418/_composite.stamp
Normal file
1
build/21d5d6dccd1efcf137b733f779ec0418/_composite.stamp
Normal file
@@ -0,0 +1 @@
|
||||
{"inputs":[],"outputs":[]}
|
||||
@@ -0,0 +1 @@
|
||||
{"inputs":["D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\.dart_tool\\package_config_subset"],"outputs":["D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart"]}
|
||||
@@ -0,0 +1 @@
|
||||
{"inputs":[],"outputs":[]}
|
||||
BIN
build/ac373d9ff87a3d6bdb2f4c024cd759bf.cache.dill.track.dill
Normal file
BIN
build/ac373d9ff87a3d6bdb2f4c024cd759bf.cache.dill.track.dill
Normal file
Binary file not shown.
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* Automatically generated file. DO NOT MODIFY
|
||||
*/
|
||||
package com.rkm.educaprof.rkm_educa_prof_app;
|
||||
|
||||
public final class BuildConfig {
|
||||
public static final boolean DEBUG = Boolean.parseBoolean("true");
|
||||
public static final String APPLICATION_ID = "com.rkm.educaprof.rkm_educa_prof_app";
|
||||
public static final String BUILD_TYPE = "debug";
|
||||
public static final int VERSION_CODE = 1;
|
||||
public static final String VERSION_NAME = "1.0.0";
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{}
|
||||
@@ -0,0 +1,2 @@
|
||||
#- File Locator -
|
||||
listingFile=../../../outputs/apk/debug/output-metadata.json
|
||||
@@ -0,0 +1,2 @@
|
||||
appMetadataVersion=1.1
|
||||
androidGradlePluginVersion=7.3.0
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
{"assets/fonts/Nunito-Regular.ttf":["assets/fonts/Nunito-Regular.ttf"],"assets/images/desenvolvimento.png":["assets/images/desenvolvimento.png"],"assets/images/homologacao.png":["assets/images/homologacao.png"],"assets/images/logoEduca.png":["assets/images/logoEduca.png"],"assets/images/logoRKM.PNG":["assets/images/logoRKM.PNG"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"],"packages/line_icons/lib/assets/fonts/LineIcons.ttf":["packages/line_icons/lib/assets/fonts/LineIcons.ttf"]}
|
||||
@@ -0,0 +1 @@
|
||||
[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"Nunito","fonts":[{"asset":"assets/fonts/Nunito-Regular.ttf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]},{"family":"packages/line_icons/Awesome Line Icons 1.3.0","fonts":[{"asset":"packages/line_icons/lib/assets/fonts/LineIcons.ttf"}]}]
|
||||
BIN
build/app/intermediates/assets/debug/flutter_assets/NOTICES.Z
Normal file
BIN
build/app/intermediates/assets/debug/flutter_assets/NOTICES.Z
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 53 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 76 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 55 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"version": 3,
|
||||
"artifactType": {
|
||||
"type": "COMPATIBLE_SCREEN_MANIFEST",
|
||||
"kind": "Directory"
|
||||
},
|
||||
"applicationId": "com.rkm.educaprof.rkm_educa_prof_app",
|
||||
"variantName": "debug",
|
||||
"elements": []
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build/app/intermediates/dex/debug/mergeDexDebug/classes.dex
Normal file
BIN
build/app/intermediates/dex/debug/mergeDexDebug/classes.dex
Normal file
Binary file not shown.
BIN
build/app/intermediates/dex_archive_input_jar_hashes/debug/out
Normal file
BIN
build/app/intermediates/dex_archive_input_jar_hashes/debug/out
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user