├── .github ├── DISCUSSION_TEMPLATE │ └── question.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── coverage.yml │ ├── create-app.yml │ ├── handle-linked-issues-on-pr-merge.yml │ ├── main.yml │ ├── pr-merge-comment.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .vscode └── launch.json ├── LICENSE.txt ├── README.md ├── contributing.md ├── fastlane ├── README.md └── metadata ├── frontend ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── .cxx │ │ │ ├── Debug │ │ │ │ └── 5g23q2b2 │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ ├── .cmake │ │ │ │ │ │ └── api │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ │ └── reply │ │ │ │ │ │ │ ├── cache-v2-695e4135a4e74050afe4.json │ │ │ │ │ │ │ ├── cmakeFiles-v1-e9e2c3eccf7df7aabf9d.json │ │ │ │ │ │ │ ├── codemodel-v2-cb04ac5400797a9aef7b.json │ │ │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ │ │ └── index-2025-06-11T07-06-08-0394.json │ │ │ │ │ ├── CMakeCache.txt │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ │ └── rules.ninja │ │ │ │ │ ├── additional_project_files.txt │ │ │ │ │ ├── android_gradle_build.json │ │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ │ ├── build.ninja │ │ │ │ │ ├── build_file_index.txt │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ │ ├── prefab_config.json │ │ │ │ │ └── symbol_folder_index.txt │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ ├── .cmake │ │ │ │ │ │ └── api │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ │ └── reply │ │ │ │ │ │ │ ├── cache-v2-e0b2b7dc25c2eedf8534.json │ │ │ │ │ │ │ ├── cmakeFiles-v1-4fca85f14dae804eb2bf.json │ │ │ │ │ │ │ ├── codemodel-v2-2a530577e8628ca10c44.json │ │ │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ │ │ └── index-2025-06-11T07-06-08-0883.json │ │ │ │ │ ├── CMakeCache.txt │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ │ └── rules.ninja │ │ │ │ │ ├── additional_project_files.txt │ │ │ │ │ ├── android_gradle_build.json │ │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ │ ├── build.ninja │ │ │ │ │ ├── build_file_index.txt │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ │ ├── prefab_config.json │ │ │ │ │ └── symbol_folder_index.txt │ │ │ │ │ ├── hash_key.txt │ │ │ │ │ ├── x86 │ │ │ │ │ ├── .cmake │ │ │ │ │ │ └── api │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ │ └── reply │ │ │ │ │ │ │ ├── cache-v2-5ed22d1f4500ee514320.json │ │ │ │ │ │ │ ├── cmakeFiles-v1-dd2f56c1e5f157ffe258.json │ │ │ │ │ │ │ ├── codemodel-v2-d60137d6c73ace70c868.json │ │ │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ │ │ └── index-2025-06-11T07-06-09-0339.json │ │ │ │ │ ├── CMakeCache.txt │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ │ └── rules.ninja │ │ │ │ │ ├── additional_project_files.txt │ │ │ │ │ ├── android_gradle_build.json │ │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ │ ├── build.ninja │ │ │ │ │ ├── build_file_index.txt │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ │ ├── prefab_config.json │ │ │ │ │ └── symbol_folder_index.txt │ │ │ │ │ └── x86_64 │ │ │ │ │ ├── .cmake │ │ │ │ │ └── api │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── query │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ └── reply │ │ │ │ │ │ ├── cache-v2-a1f999fc7becff2d421c.json │ │ │ │ │ │ ├── cmakeFiles-v1-eba92458bfe074087671.json │ │ │ │ │ │ ├── codemodel-v2-a935db48a0ccc234440d.json │ │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ │ └── index-2025-06-11T07-06-09-0758.json │ │ │ │ │ ├── CMakeCache.txt │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ └── rules.ninja │ │ │ │ │ ├── additional_project_files.txt │ │ │ │ │ ├── android_gradle_build.json │ │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ │ ├── build.ninja │ │ │ │ │ ├── build_file_index.txt │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ │ ├── prefab_config.json │ │ │ │ │ └── symbol_folder_index.txt │ │ │ └── RelWithDebInfo │ │ │ │ └── 5a2ow273 │ │ │ │ ├── arm64-v8a │ │ │ │ ├── .cmake │ │ │ │ │ └── api │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── query │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ └── reply │ │ │ │ │ │ ├── cache-v2-074f85b7ba6bd535df87.json │ │ │ │ │ │ ├── cmakeFiles-v1-d706b32366456452fed8.json │ │ │ │ │ │ ├── codemodel-v2-4bbd7d7b1351c78acdc0.json │ │ │ │ │ │ ├── directory-.-RelWithDebInfo-f5ebdc15457944623624.json │ │ │ │ │ │ └── index-2025-05-20T09-52-55-0900.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ └── rules.ninja │ │ │ │ ├── additional_project_files.txt │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ ├── build.ninja │ │ │ │ ├── build_file_index.txt │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ ├── prefab_config.json │ │ │ │ └── symbol_folder_index.txt │ │ │ │ ├── armeabi-v7a │ │ │ │ ├── .cmake │ │ │ │ │ └── api │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── query │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ └── reply │ │ │ │ │ │ ├── cache-v2-eb9f7ddce63994157595.json │ │ │ │ │ │ ├── cmakeFiles-v1-a94f55424807df25b748.json │ │ │ │ │ │ ├── codemodel-v2-b0ffae8416008c95fa84.json │ │ │ │ │ │ ├── directory-.-RelWithDebInfo-f5ebdc15457944623624.json │ │ │ │ │ │ └── index-2025-05-20T09-52-56-0239.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ └── rules.ninja │ │ │ │ ├── additional_project_files.txt │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ ├── build.ninja │ │ │ │ ├── build_file_index.txt │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ ├── prefab_config.json │ │ │ │ └── symbol_folder_index.txt │ │ │ │ ├── hash_key.txt │ │ │ │ ├── x86 │ │ │ │ ├── .cmake │ │ │ │ │ └── api │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── query │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ └── reply │ │ │ │ │ │ ├── cache-v2-81888bc2f0b8f816536f.json │ │ │ │ │ │ ├── cmakeFiles-v1-e73717b62f3716fd5e71.json │ │ │ │ │ │ ├── codemodel-v2-746f40f92b851debfcca.json │ │ │ │ │ │ ├── directory-.-RelWithDebInfo-f5ebdc15457944623624.json │ │ │ │ │ │ └── index-2025-05-20T09-52-56-0564.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ └── rules.ninja │ │ │ │ ├── additional_project_files.txt │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ ├── build.ninja │ │ │ │ ├── build_file_index.txt │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ ├── prefab_config.json │ │ │ │ └── symbol_folder_index.txt │ │ │ │ └── x86_64 │ │ │ │ ├── .cmake │ │ │ │ └── api │ │ │ │ │ └── v1 │ │ │ │ │ ├── query │ │ │ │ │ └── client-agp │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ └── reply │ │ │ │ │ ├── cache-v2-a6aec7c1235d432afa2b.json │ │ │ │ │ ├── cmakeFiles-v1-fc6d3ad1807f06984a47.json │ │ │ │ │ ├── codemodel-v2-43b9217eeddc9878ac88.json │ │ │ │ │ ├── directory-.-RelWithDebInfo-f5ebdc15457944623624.json │ │ │ │ │ └── index-2025-05-20T09-52-57-0382.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ ├── TargetDirectories.txt │ │ │ │ ├── cmake.check_cache │ │ │ │ └── rules.ninja │ │ │ │ ├── additional_project_files.txt │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ ├── build.ninja │ │ │ │ ├── build_file_index.txt │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ ├── prefab_config.json │ │ │ │ └── symbol_folder_index.txt │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── github │ │ │ │ │ └── msdeluise │ │ │ │ │ └── coin_trail │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_notification.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_notification.png │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_notification.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_notification.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── ic_notification.png │ │ │ │ ├── drawable │ │ │ │ └── ic_notification.png │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_foreground.webp │ │ │ │ ├── ic_launcher_monocrome.webp │ │ │ │ ├── ic_launcher_monocrome_foreground.webp │ │ │ │ ├── ic_launcher_monocrome_round.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_foreground.webp │ │ │ │ ├── ic_launcher_monocrome.webp │ │ │ │ ├── ic_launcher_monocrome_foreground.webp │ │ │ │ ├── ic_launcher_monocrome_round.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_foreground.webp │ │ │ │ ├── ic_launcher_monocrome.webp │ │ │ │ ├── ic_launcher_monocrome_foreground.webp │ │ │ │ ├── ic_launcher_monocrome_round.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_foreground.webp │ │ │ │ ├── ic_launcher_monocrome.webp │ │ │ │ ├── ic_launcher_monocrome_foreground.webp │ │ │ │ ├── ic_launcher_monocrome_round.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_foreground.webp │ │ │ │ ├── ic_launcher_monocrome.webp │ │ │ │ ├── ic_launcher_monocrome_foreground.webp │ │ │ │ ├── ic_launcher_monocrome_round.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── fastlane │ │ ├── Appfile │ │ ├── Fastfile │ │ └── metadata │ │ │ └── android │ │ │ └── en-US │ │ │ ├── changelogs │ │ │ ├── 10.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ ├── 5.txt │ │ │ ├── 6.txt │ │ │ ├── 7.txt │ │ │ ├── 8.txt │ │ │ └── 9.txt │ │ │ ├── full_description.txt │ │ │ ├── images │ │ │ ├── featureGraphic.png │ │ │ ├── icon.png │ │ │ └── phoneScreenshots │ │ │ │ ├── 10_en-US.png │ │ │ │ ├── 1_en-US.png │ │ │ │ ├── 2_en-US.png │ │ │ │ ├── 3_en-US.png │ │ │ │ ├── 4_en-US.png │ │ │ │ ├── 5_en-US.png │ │ │ │ ├── 6_en-US.png │ │ │ │ ├── 7_en-US.png │ │ │ │ ├── 8_en-US.png │ │ │ │ └── 9_en-US.png │ │ │ ├── short_description.txt │ │ │ ├── title.txt │ │ │ └── video.txt │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── icon │ │ ├── logo.png │ │ └── notification.png │ └── images │ │ └── generic-plant.jpg ├── devtools_options.yaml ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-50x50@1x.png │ │ │ │ ├── Icon-App-50x50@2x.png │ │ │ │ ├── Icon-App-57x57@1x.png │ │ │ │ ├── Icon-App-57x57@2x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-72x72@1x.png │ │ │ │ ├── Icon-App-72x72@2x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ └── RunnerTests │ │ └── RunnerTests.swift ├── l10n.yaml ├── lib │ ├── config │ │ └── dependencies.dart │ ├── data │ │ ├── repository │ │ │ ├── crud_repository.dart │ │ │ ├── event_repository.dart │ │ │ ├── event_type_repository.dart │ │ │ ├── image_repository.dart │ │ │ ├── notifications_lang_repository.dart │ │ │ ├── plant_repository.dart │ │ │ ├── reminder_occurrence_repository.dart │ │ │ ├── reminder_repository.dart │ │ │ ├── species_care_repository.dart │ │ │ ├── species_repository.dart │ │ │ ├── species_synonym_repository.dart │ │ │ └── user_setting_repository.dart │ │ └── service │ │ │ ├── notification_service.dart │ │ │ ├── reminder_occurrence_service.dart │ │ │ ├── scheduling_service.dart │ │ │ └── search │ │ │ ├── cache │ │ │ ├── app_cache.dart │ │ │ └── app_cache_pref.dart │ │ │ ├── flora_codex_searcher.dart │ │ │ ├── local_searcher.dart │ │ │ ├── species_searcher.dart │ │ │ └── species_searcher_facade.dart │ ├── database │ │ ├── database.dart │ │ └── database.g.dart │ ├── domain │ │ └── models │ │ │ ├── reminder_occurrence.dart │ │ │ ├── species_searcher_result.dart │ │ │ └── user_settings_keys.dart │ ├── l10n │ │ ├── app_en.arb │ │ ├── app_it.arb │ │ └── generated │ │ │ ├── app_localizations.dart │ │ │ ├── app_localizations_en.dart │ │ │ └── app_localizations_it.dart │ ├── main.dart │ ├── routing │ │ ├── router.dart │ │ └── routes.dart │ ├── ui │ │ ├── calendar │ │ │ ├── view_models │ │ │ │ └── calendar_viewmodel.dart │ │ │ └── widgets │ │ │ │ ├── calendar_header.dart │ │ │ │ ├── calendar_screen.dart │ │ │ │ ├── event_and_reminder_occurrences_list.dart │ │ │ │ └── filter │ │ │ │ ├── activity_filter.dart │ │ │ │ ├── event_type_step.dart │ │ │ │ └── plant_step.dart │ │ ├── core │ │ │ ├── themes │ │ │ │ ├── colors.dart │ │ │ │ ├── dimens.dart │ │ │ │ └── theme.dart │ │ │ └── ui │ │ │ │ ├── error_indicator.dart │ │ │ │ ├── event_card.dart │ │ │ │ ├── reminder_occurrence_card.dart │ │ │ │ ├── scroll_behaviour.dart │ │ │ │ ├── step_section.dart │ │ │ │ ├── stepper.dart │ │ │ │ ├── summary.dart │ │ │ │ └── tag_chip.dart │ │ ├── event │ │ │ ├── view_models │ │ │ │ ├── edit_event_viewmodel.dart │ │ │ │ └── event_viewmodel.dart │ │ │ └── widgets │ │ │ │ ├── create │ │ │ │ ├── date_step.dart │ │ │ │ ├── event_screen.dart │ │ │ │ ├── event_type_step.dart │ │ │ │ ├── note_step.dart │ │ │ │ └── plant_step.dart │ │ │ │ └── edit │ │ │ │ ├── date_section.dart │ │ │ │ ├── edit_event_screen.dart │ │ │ │ ├── event_type_section.dart │ │ │ │ ├── note_section.dart │ │ │ │ └── plant_section.dart │ │ ├── home │ │ │ ├── view_models │ │ │ │ └── home_viewmodel.dart │ │ │ └── widgets │ │ │ │ ├── carousel.dart │ │ │ │ ├── home_screen.dart │ │ │ │ ├── homescreen_empty_data.dart │ │ │ │ └── reminder_occurrence_list.dart │ │ ├── main │ │ │ └── app_main_view.dart │ │ ├── plant │ │ │ ├── view_models │ │ │ │ ├── add_plant_viewmodel.dart │ │ │ │ ├── edit_plant_viewmodel.dart │ │ │ │ └── plant_view_model.dart │ │ │ └── widgets │ │ │ │ ├── create │ │ │ │ ├── add_plant_screen.dart │ │ │ │ ├── location_step.dart │ │ │ │ ├── name_step.dart │ │ │ │ ├── price_step.dart │ │ │ │ ├── seller_step.dart │ │ │ │ └── start_date_step.dart │ │ │ │ ├── edit │ │ │ │ ├── edit_plant_screen.dart │ │ │ │ ├── location_step.dart │ │ │ │ ├── name_step.dart │ │ │ │ ├── price_step.dart │ │ │ │ ├── seller_step.dart │ │ │ │ └── start_date_step.dart │ │ │ │ ├── grid_widget.dart │ │ │ │ ├── info_widget.dart │ │ │ │ ├── plant_avatar.dart │ │ │ │ ├── plant_gallery │ │ │ │ ├── fullscreen_gallery_viewer.dart │ │ │ │ └── plant_gallery.dart │ │ │ │ └── plant_screen.dart │ │ ├── search │ │ │ ├── view_models │ │ │ │ └── search_viewmodel.dart │ │ │ └── widgets │ │ │ │ ├── empty_search.dart │ │ │ │ ├── search_page.dart │ │ │ │ └── species_card.dart │ │ ├── settings │ │ │ ├── view_models │ │ │ │ ├── event_type │ │ │ │ │ ├── add_event_type_viewmodel.dart │ │ │ │ │ ├── edit_event_type_viewmodel.dart │ │ │ │ │ └── event_type_viewmodel.dart │ │ │ │ ├── reminder │ │ │ │ │ ├── add_reminder_viewmodel.dart │ │ │ │ │ ├── edit_reminder_viewmodel.dart │ │ │ │ │ └── reminder_viewmodel.dart │ │ │ │ └── settings_viewmodel.dart │ │ │ └── widgets │ │ │ │ ├── data_sources_screen.dart │ │ │ │ ├── database_and_cache_screen.dart │ │ │ │ ├── event_type │ │ │ │ ├── create │ │ │ │ │ ├── add_event_type_screen.dart │ │ │ │ │ ├── color_step.dart │ │ │ │ │ ├── description_step.dart │ │ │ │ │ ├── icon_step.dart │ │ │ │ │ └── name_step.dart │ │ │ │ ├── edit │ │ │ │ │ ├── color_step.dart │ │ │ │ │ ├── description_step.dart │ │ │ │ │ ├── edit_event_type_screen.dart │ │ │ │ │ ├── icon_step.dart │ │ │ │ │ └── name_step.dart │ │ │ │ └── event_type_screen.dart │ │ │ │ ├── info_screen.dart │ │ │ │ ├── notifications_screen.dart │ │ │ │ ├── reminder │ │ │ │ ├── create │ │ │ │ │ ├── add_reminder_screen.dart │ │ │ │ │ ├── end_step.dart │ │ │ │ │ ├── event_type_step.dart │ │ │ │ │ ├── frequency_step.dart │ │ │ │ │ ├── plant_step.dart │ │ │ │ │ ├── repeat_after_step.dart │ │ │ │ │ └── start_step.dart │ │ │ │ ├── edit │ │ │ │ │ ├── edit_reminder_screen.dart │ │ │ │ │ ├── end_step.dart │ │ │ │ │ ├── event_type_step.dart │ │ │ │ │ ├── frequency_step.dart │ │ │ │ │ ├── plant_step.dart │ │ │ │ │ ├── repeat_after_step.dart │ │ │ │ │ └── start_step.dart │ │ │ │ └── reminder_screen.dart │ │ │ │ ├── settings_screen.dart │ │ │ │ └── support_banner.dart │ │ └── species │ │ │ ├── view_models │ │ │ ├── add_species_viewmodel.dart │ │ │ ├── edit_species_viewmodel.dart │ │ │ └── view_species_viewmodel.dart │ │ │ └── widgets │ │ │ ├── create │ │ │ ├── add_species_screen.dart │ │ │ ├── avatar_step.dart │ │ │ ├── care_step.dart │ │ │ └── classification_step.dart │ │ │ ├── edit │ │ │ ├── avatar_step.dart │ │ │ ├── care_step.dart │ │ │ ├── classification_step.dart │ │ │ └── edit_species_screen.dart │ │ │ └── view │ │ │ ├── species_image.dart │ │ │ └── view_species_screen.dart │ └── utils │ │ ├── common.dart │ │ ├── icons.dart │ │ └── stream_code.dart ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── main.cc │ ├── my_application.cc │ └── my_application.h ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_1024.png │ │ │ │ ├── app_icon_128.png │ │ │ │ ├── app_icon_16.png │ │ │ │ ├── app_icon_256.png │ │ │ │ ├── app_icon_32.png │ │ │ │ ├── app_icon_512.png │ │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── Configs │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements │ └── RunnerTests │ │ └── RunnerTests.swift ├── pubspec.lock ├── pubspec.yaml ├── test │ └── data │ │ ├── plant_repository_test.dart │ │ └── plant_repository_test.mocks.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h └── images ├── banner.png ├── bmc-button.png ├── logo-plain.png ├── logo-siluette.png ├── logo-siluette.xcf └── logo-square.png /.github/DISCUSSION_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/.github/DISCUSSION_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/create-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/.github/workflows/create-app.yml -------------------------------------------------------------------------------- /.github/workflows/handle-linked-issues-on-pr-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/.github/workflows/handle-linked-issues-on-pr-merge.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pr-merge-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/.github/workflows/pr-merge-comment.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/contributing.md -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/metadata: -------------------------------------------------------------------------------- 1 | ../frontend/android/fastlane/metadata -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/.metadata -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- 1 | # plant_it 2 | 3 | A new Flutter project. 4 | -------------------------------------------------------------------------------- /frontend/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/analysis_options.yaml -------------------------------------------------------------------------------- /frontend/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/.gitignore -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/.cmake/api/v1/reply/cache-v2-695e4135a4e74050afe4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/.cmake/api/v1/reply/cache-v2-695e4135a4e74050afe4.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-e9e2c3eccf7df7aabf9d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-e9e2c3eccf7df7aabf9d.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-cb04ac5400797a9aef7b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-cb04ac5400797a9aef7b.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/.cmake/api/v1/reply/index-2025-06-11T07-06-08-0394.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/.cmake/api/v1/reply/index-2025-06-11T07-06-08-0394.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeCache.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/android_gradle_build.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/android_gradle_build_mini.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/build.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/build_file_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/cmake_install.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/configure_fingerprint.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/metadata_generation_command.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/prefab_config.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/arm64-v8a/symbol_folder_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/.cmake/api/v1/reply/cache-v2-e0b2b7dc25c2eedf8534.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/.cmake/api/v1/reply/cache-v2-e0b2b7dc25c2eedf8534.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-4fca85f14dae804eb2bf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-4fca85f14dae804eb2bf.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-2a530577e8628ca10c44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-2a530577e8628ca10c44.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/.cmake/api/v1/reply/index-2025-06-11T07-06-08-0883.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/.cmake/api/v1/reply/index-2025-06-11T07-06-08-0883.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeCache.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/android_gradle_build.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/android_gradle_build_mini.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/build.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/build_file_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/cmake_install.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/configure_fingerprint.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/metadata_generation_command.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/prefab_config.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/armeabi-v7a/symbol_folder_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/hash_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/hash_key.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/.cmake/api/v1/reply/cache-v2-5ed22d1f4500ee514320.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/.cmake/api/v1/reply/cache-v2-5ed22d1f4500ee514320.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/.cmake/api/v1/reply/cmakeFiles-v1-dd2f56c1e5f157ffe258.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/.cmake/api/v1/reply/cmakeFiles-v1-dd2f56c1e5f157ffe258.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/.cmake/api/v1/reply/codemodel-v2-d60137d6c73ace70c868.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/.cmake/api/v1/reply/codemodel-v2-d60137d6c73ace70c868.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/.cmake/api/v1/reply/index-2025-06-11T07-06-09-0339.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/.cmake/api/v1/reply/index-2025-06-11T07-06-09-0339.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeCache.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/android_gradle_build.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/android_gradle_build_mini.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/build.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/build_file_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/cmake_install.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/configure_fingerprint.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/metadata_generation_command.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/prefab_config.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86/symbol_folder_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/.cmake/api/v1/reply/cache-v2-a1f999fc7becff2d421c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/.cmake/api/v1/reply/cache-v2-a1f999fc7becff2d421c.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-eba92458bfe074087671.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-eba92458bfe074087671.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/.cmake/api/v1/reply/codemodel-v2-a935db48a0ccc234440d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/.cmake/api/v1/reply/codemodel-v2-a935db48a0ccc234440d.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/.cmake/api/v1/reply/index-2025-06-11T07-06-09-0758.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/.cmake/api/v1/reply/index-2025-06-11T07-06-09-0758.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeCache.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/android_gradle_build.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/android_gradle_build_mini.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/build.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/build_file_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/cmake_install.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/configure_fingerprint.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/metadata_generation_command.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/prefab_config.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/Debug/5g23q2b2/x86_64/symbol_folder_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/.cmake/api/v1/reply/cache-v2-074f85b7ba6bd535df87.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/.cmake/api/v1/reply/cache-v2-074f85b7ba6bd535df87.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-d706b32366456452fed8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-d706b32366456452fed8.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-4bbd7d7b1351c78acdc0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-4bbd7d7b1351c78acdc0.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/.cmake/api/v1/reply/directory-.-RelWithDebInfo-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/.cmake/api/v1/reply/directory-.-RelWithDebInfo-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/.cmake/api/v1/reply/index-2025-05-20T09-52-55-0900.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/.cmake/api/v1/reply/index-2025-05-20T09-52-55-0900.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeCache.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/android_gradle_build.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/android_gradle_build_mini.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/build.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/build_file_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/cmake_install.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/configure_fingerprint.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/metadata_generation_command.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/prefab_config.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/arm64-v8a/symbol_folder_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/.cmake/api/v1/reply/cache-v2-eb9f7ddce63994157595.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/.cmake/api/v1/reply/cache-v2-eb9f7ddce63994157595.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a94f55424807df25b748.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a94f55424807df25b748.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-b0ffae8416008c95fa84.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-b0ffae8416008c95fa84.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/.cmake/api/v1/reply/directory-.-RelWithDebInfo-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/.cmake/api/v1/reply/directory-.-RelWithDebInfo-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/.cmake/api/v1/reply/index-2025-05-20T09-52-56-0239.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/.cmake/api/v1/reply/index-2025-05-20T09-52-56-0239.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeCache.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/android_gradle_build.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/android_gradle_build_mini.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/build.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/build_file_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/cmake_install.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/configure_fingerprint.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/metadata_generation_command.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/prefab_config.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/armeabi-v7a/symbol_folder_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/hash_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/hash_key.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/.cmake/api/v1/reply/cache-v2-81888bc2f0b8f816536f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/.cmake/api/v1/reply/cache-v2-81888bc2f0b8f816536f.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/.cmake/api/v1/reply/cmakeFiles-v1-e73717b62f3716fd5e71.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/.cmake/api/v1/reply/cmakeFiles-v1-e73717b62f3716fd5e71.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/.cmake/api/v1/reply/codemodel-v2-746f40f92b851debfcca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/.cmake/api/v1/reply/codemodel-v2-746f40f92b851debfcca.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/.cmake/api/v1/reply/directory-.-RelWithDebInfo-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/.cmake/api/v1/reply/directory-.-RelWithDebInfo-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/.cmake/api/v1/reply/index-2025-05-20T09-52-56-0564.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/.cmake/api/v1/reply/index-2025-05-20T09-52-56-0564.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeCache.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/android_gradle_build.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/android_gradle_build_mini.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/build.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/build_file_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/cmake_install.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/configure_fingerprint.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/metadata_generation_command.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/prefab_config.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86/symbol_folder_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/.cmake/api/v1/reply/cache-v2-a6aec7c1235d432afa2b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/.cmake/api/v1/reply/cache-v2-a6aec7c1235d432afa2b.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-fc6d3ad1807f06984a47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-fc6d3ad1807f06984a47.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/.cmake/api/v1/reply/codemodel-v2-43b9217eeddc9878ac88.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/.cmake/api/v1/reply/codemodel-v2-43b9217eeddc9878ac88.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/.cmake/api/v1/reply/directory-.-RelWithDebInfo-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/.cmake/api/v1/reply/directory-.-RelWithDebInfo-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/.cmake/api/v1/reply/index-2025-05-20T09-52-57-0382.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/.cmake/api/v1/reply/index-2025-05-20T09-52-57-0382.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeCache.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/android_gradle_build.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/android_gradle_build_mini.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/build.ninja -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/build_file_index.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/cmake_install.cmake -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/configure_fingerprint.bin -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/metadata_generation_command.txt -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/prefab_config.json -------------------------------------------------------------------------------- /frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/.cxx/RelWithDebInfo/5a2ow273/x86_64/symbol_folder_index.txt -------------------------------------------------------------------------------- /frontend/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/build.gradle -------------------------------------------------------------------------------- /frontend/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /frontend/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /frontend/android/app/src/main/kotlin/com/github/msdeluise/coin_trail/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/kotlin/com/github/msdeluise/coin_trail/MainActivity.kt -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/drawable-hdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/drawable-hdpi/ic_notification.png -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/drawable-mdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/drawable-mdpi/ic_notification.png -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/drawable-xhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/drawable-xhdpi/ic_notification.png -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/drawable-xxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/drawable-xxhdpi/ic_notification.png -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/drawable-xxxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/drawable-xxxhdpi/ic_notification.png -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/drawable/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/drawable/ic_notification.png -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher_monocrome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher_monocrome.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher_monocrome_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher_monocrome_foreground.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher_monocrome_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher_monocrome_round.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher_monocrome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher_monocrome.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher_monocrome_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher_monocrome_foreground.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher_monocrome_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher_monocrome_round.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monocrome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monocrome.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monocrome_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monocrome_foreground.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monocrome_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monocrome_round.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monocrome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monocrome.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monocrome_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monocrome_foreground.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monocrome_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monocrome_round.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monocrome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monocrome.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monocrome_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monocrome_foreground.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monocrome_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monocrome_round.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /frontend/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /frontend/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/build.gradle -------------------------------------------------------------------------------- /frontend/android/fastlane/Appfile: -------------------------------------------------------------------------------- 1 | json_key_file("") 2 | package_name("com.github.mdeluise.plantit") -------------------------------------------------------------------------------- /frontend/android/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/Fastfile -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/changelogs/10.txt -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/changelogs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/changelogs/2.txt -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/changelogs/3.txt -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/changelogs/4.txt -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/changelogs/5.txt -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/changelogs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/changelogs/6.txt -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/changelogs/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/changelogs/7.txt -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/changelogs/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/changelogs/8.txt -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/changelogs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/changelogs/9.txt -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/10_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/10_en-US.png -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.png -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.png -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/5_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/5_en-US.png -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/6_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/6_en-US.png -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/7_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/7_en-US.png -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/8_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/8_en-US.png -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/9_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/images/phoneScreenshots/9_en-US.png -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Plant-it -------------------------------------------------------------------------------- /frontend/android/fastlane/metadata/android/en-US/video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/gradle.properties -------------------------------------------------------------------------------- /frontend/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /frontend/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/android/settings.gradle -------------------------------------------------------------------------------- /frontend/assets/icon/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/assets/icon/logo.png -------------------------------------------------------------------------------- /frontend/assets/icon/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/assets/icon/notification.png -------------------------------------------------------------------------------- /frontend/assets/images/generic-plant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/assets/images/generic-plant.jpg -------------------------------------------------------------------------------- /frontend/devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/devtools_options.yaml -------------------------------------------------------------------------------- /frontend/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/.gitignore -------------------------------------------------------------------------------- /frontend/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /frontend/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /frontend/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /frontend/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /frontend/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /frontend/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /frontend/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /frontend/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /frontend/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /frontend/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /frontend/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /frontend/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /frontend/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /frontend/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /frontend/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /frontend/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/Runner/Info.plist -------------------------------------------------------------------------------- /frontend/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /frontend/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /frontend/l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/l10n.yaml -------------------------------------------------------------------------------- /frontend/lib/config/dependencies.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/config/dependencies.dart -------------------------------------------------------------------------------- /frontend/lib/data/repository/crud_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/repository/crud_repository.dart -------------------------------------------------------------------------------- /frontend/lib/data/repository/event_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/repository/event_repository.dart -------------------------------------------------------------------------------- /frontend/lib/data/repository/event_type_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/repository/event_type_repository.dart -------------------------------------------------------------------------------- /frontend/lib/data/repository/image_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/repository/image_repository.dart -------------------------------------------------------------------------------- /frontend/lib/data/repository/notifications_lang_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/repository/notifications_lang_repository.dart -------------------------------------------------------------------------------- /frontend/lib/data/repository/plant_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/repository/plant_repository.dart -------------------------------------------------------------------------------- /frontend/lib/data/repository/reminder_occurrence_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/repository/reminder_occurrence_repository.dart -------------------------------------------------------------------------------- /frontend/lib/data/repository/reminder_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/repository/reminder_repository.dart -------------------------------------------------------------------------------- /frontend/lib/data/repository/species_care_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/repository/species_care_repository.dart -------------------------------------------------------------------------------- /frontend/lib/data/repository/species_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/repository/species_repository.dart -------------------------------------------------------------------------------- /frontend/lib/data/repository/species_synonym_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/repository/species_synonym_repository.dart -------------------------------------------------------------------------------- /frontend/lib/data/repository/user_setting_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/repository/user_setting_repository.dart -------------------------------------------------------------------------------- /frontend/lib/data/service/notification_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/service/notification_service.dart -------------------------------------------------------------------------------- /frontend/lib/data/service/reminder_occurrence_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/service/reminder_occurrence_service.dart -------------------------------------------------------------------------------- /frontend/lib/data/service/scheduling_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/service/scheduling_service.dart -------------------------------------------------------------------------------- /frontend/lib/data/service/search/cache/app_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/service/search/cache/app_cache.dart -------------------------------------------------------------------------------- /frontend/lib/data/service/search/cache/app_cache_pref.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/service/search/cache/app_cache_pref.dart -------------------------------------------------------------------------------- /frontend/lib/data/service/search/flora_codex_searcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/service/search/flora_codex_searcher.dart -------------------------------------------------------------------------------- /frontend/lib/data/service/search/local_searcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/service/search/local_searcher.dart -------------------------------------------------------------------------------- /frontend/lib/data/service/search/species_searcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/service/search/species_searcher.dart -------------------------------------------------------------------------------- /frontend/lib/data/service/search/species_searcher_facade.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/data/service/search/species_searcher_facade.dart -------------------------------------------------------------------------------- /frontend/lib/database/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/database/database.dart -------------------------------------------------------------------------------- /frontend/lib/database/database.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/database/database.g.dart -------------------------------------------------------------------------------- /frontend/lib/domain/models/reminder_occurrence.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/domain/models/reminder_occurrence.dart -------------------------------------------------------------------------------- /frontend/lib/domain/models/species_searcher_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/domain/models/species_searcher_result.dart -------------------------------------------------------------------------------- /frontend/lib/domain/models/user_settings_keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/domain/models/user_settings_keys.dart -------------------------------------------------------------------------------- /frontend/lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /frontend/lib/l10n/app_it.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/l10n/app_it.arb -------------------------------------------------------------------------------- /frontend/lib/l10n/generated/app_localizations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/l10n/generated/app_localizations.dart -------------------------------------------------------------------------------- /frontend/lib/l10n/generated/app_localizations_en.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/l10n/generated/app_localizations_en.dart -------------------------------------------------------------------------------- /frontend/lib/l10n/generated/app_localizations_it.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/l10n/generated/app_localizations_it.dart -------------------------------------------------------------------------------- /frontend/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/main.dart -------------------------------------------------------------------------------- /frontend/lib/routing/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/routing/router.dart -------------------------------------------------------------------------------- /frontend/lib/routing/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/routing/routes.dart -------------------------------------------------------------------------------- /frontend/lib/ui/calendar/view_models/calendar_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/calendar/view_models/calendar_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/calendar/widgets/calendar_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/calendar/widgets/calendar_header.dart -------------------------------------------------------------------------------- /frontend/lib/ui/calendar/widgets/calendar_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/calendar/widgets/calendar_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/calendar/widgets/event_and_reminder_occurrences_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/calendar/widgets/event_and_reminder_occurrences_list.dart -------------------------------------------------------------------------------- /frontend/lib/ui/calendar/widgets/filter/activity_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/calendar/widgets/filter/activity_filter.dart -------------------------------------------------------------------------------- /frontend/lib/ui/calendar/widgets/filter/event_type_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/calendar/widgets/filter/event_type_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/calendar/widgets/filter/plant_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/calendar/widgets/filter/plant_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/core/themes/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/core/themes/colors.dart -------------------------------------------------------------------------------- /frontend/lib/ui/core/themes/dimens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/core/themes/dimens.dart -------------------------------------------------------------------------------- /frontend/lib/ui/core/themes/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/core/themes/theme.dart -------------------------------------------------------------------------------- /frontend/lib/ui/core/ui/error_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/core/ui/error_indicator.dart -------------------------------------------------------------------------------- /frontend/lib/ui/core/ui/event_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/core/ui/event_card.dart -------------------------------------------------------------------------------- /frontend/lib/ui/core/ui/reminder_occurrence_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/core/ui/reminder_occurrence_card.dart -------------------------------------------------------------------------------- /frontend/lib/ui/core/ui/scroll_behaviour.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/core/ui/scroll_behaviour.dart -------------------------------------------------------------------------------- /frontend/lib/ui/core/ui/step_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/core/ui/step_section.dart -------------------------------------------------------------------------------- /frontend/lib/ui/core/ui/stepper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/core/ui/stepper.dart -------------------------------------------------------------------------------- /frontend/lib/ui/core/ui/summary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/core/ui/summary.dart -------------------------------------------------------------------------------- /frontend/lib/ui/core/ui/tag_chip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/core/ui/tag_chip.dart -------------------------------------------------------------------------------- /frontend/lib/ui/event/view_models/edit_event_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/event/view_models/edit_event_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/event/view_models/event_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/event/view_models/event_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/event/widgets/create/date_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/event/widgets/create/date_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/event/widgets/create/event_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/event/widgets/create/event_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/event/widgets/create/event_type_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/event/widgets/create/event_type_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/event/widgets/create/note_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/event/widgets/create/note_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/event/widgets/create/plant_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/event/widgets/create/plant_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/event/widgets/edit/date_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/event/widgets/edit/date_section.dart -------------------------------------------------------------------------------- /frontend/lib/ui/event/widgets/edit/edit_event_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/event/widgets/edit/edit_event_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/event/widgets/edit/event_type_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/event/widgets/edit/event_type_section.dart -------------------------------------------------------------------------------- /frontend/lib/ui/event/widgets/edit/note_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/event/widgets/edit/note_section.dart -------------------------------------------------------------------------------- /frontend/lib/ui/event/widgets/edit/plant_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/event/widgets/edit/plant_section.dart -------------------------------------------------------------------------------- /frontend/lib/ui/home/view_models/home_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/home/view_models/home_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/home/widgets/carousel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/home/widgets/carousel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/home/widgets/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/home/widgets/home_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/home/widgets/homescreen_empty_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/home/widgets/homescreen_empty_data.dart -------------------------------------------------------------------------------- /frontend/lib/ui/home/widgets/reminder_occurrence_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/home/widgets/reminder_occurrence_list.dart -------------------------------------------------------------------------------- /frontend/lib/ui/main/app_main_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/main/app_main_view.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/view_models/add_plant_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/view_models/add_plant_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/view_models/edit_plant_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/view_models/edit_plant_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/view_models/plant_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/view_models/plant_view_model.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/create/add_plant_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/create/add_plant_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/create/location_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/create/location_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/create/name_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/create/name_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/create/price_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/create/price_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/create/seller_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/create/seller_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/create/start_date_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/create/start_date_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/edit/edit_plant_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/edit/edit_plant_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/edit/location_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/edit/location_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/edit/name_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/edit/name_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/edit/price_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/edit/price_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/edit/seller_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/edit/seller_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/edit/start_date_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/edit/start_date_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/grid_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/grid_widget.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/info_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/info_widget.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/plant_avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/plant_avatar.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/plant_gallery/fullscreen_gallery_viewer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/plant_gallery/fullscreen_gallery_viewer.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/plant_gallery/plant_gallery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/plant_gallery/plant_gallery.dart -------------------------------------------------------------------------------- /frontend/lib/ui/plant/widgets/plant_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/plant/widgets/plant_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/search/view_models/search_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/search/view_models/search_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/search/widgets/empty_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/search/widgets/empty_search.dart -------------------------------------------------------------------------------- /frontend/lib/ui/search/widgets/search_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/search/widgets/search_page.dart -------------------------------------------------------------------------------- /frontend/lib/ui/search/widgets/species_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/search/widgets/species_card.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/view_models/event_type/add_event_type_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/view_models/event_type/add_event_type_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/view_models/event_type/edit_event_type_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/view_models/event_type/edit_event_type_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/view_models/event_type/event_type_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/view_models/event_type/event_type_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/view_models/reminder/add_reminder_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/view_models/reminder/add_reminder_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/view_models/reminder/edit_reminder_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/view_models/reminder/edit_reminder_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/view_models/reminder/reminder_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/view_models/reminder/reminder_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/view_models/settings_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/view_models/settings_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/data_sources_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/data_sources_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/database_and_cache_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/database_and_cache_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/event_type/create/add_event_type_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/event_type/create/add_event_type_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/event_type/create/color_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/event_type/create/color_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/event_type/create/description_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/event_type/create/description_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/event_type/create/icon_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/event_type/create/icon_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/event_type/create/name_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/event_type/create/name_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/event_type/edit/color_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/event_type/edit/color_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/event_type/edit/description_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/event_type/edit/description_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/event_type/edit/edit_event_type_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/event_type/edit/edit_event_type_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/event_type/edit/icon_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/event_type/edit/icon_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/event_type/edit/name_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/event_type/edit/name_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/event_type/event_type_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/event_type/event_type_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/info_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/info_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/notifications_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/notifications_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/create/add_reminder_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/create/add_reminder_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/create/end_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/create/end_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/create/event_type_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/create/event_type_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/create/frequency_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/create/frequency_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/create/plant_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/create/plant_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/create/repeat_after_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/create/repeat_after_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/create/start_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/create/start_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/edit/edit_reminder_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/edit/edit_reminder_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/edit/end_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/edit/end_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/edit/event_type_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/edit/event_type_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/edit/frequency_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/edit/frequency_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/edit/plant_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/edit/plant_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/edit/repeat_after_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/edit/repeat_after_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/edit/start_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/edit/start_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/reminder/reminder_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/reminder/reminder_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/settings_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/settings/widgets/support_banner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/settings/widgets/support_banner.dart -------------------------------------------------------------------------------- /frontend/lib/ui/species/view_models/add_species_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/species/view_models/add_species_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/species/view_models/edit_species_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/species/view_models/edit_species_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/species/view_models/view_species_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/species/view_models/view_species_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/ui/species/widgets/create/add_species_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/species/widgets/create/add_species_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/species/widgets/create/avatar_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/species/widgets/create/avatar_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/species/widgets/create/care_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/species/widgets/create/care_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/species/widgets/create/classification_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/species/widgets/create/classification_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/species/widgets/edit/avatar_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/species/widgets/edit/avatar_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/species/widgets/edit/care_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/species/widgets/edit/care_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/species/widgets/edit/classification_step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/species/widgets/edit/classification_step.dart -------------------------------------------------------------------------------- /frontend/lib/ui/species/widgets/edit/edit_species_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/species/widgets/edit/edit_species_screen.dart -------------------------------------------------------------------------------- /frontend/lib/ui/species/widgets/view/species_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/species/widgets/view/species_image.dart -------------------------------------------------------------------------------- /frontend/lib/ui/species/widgets/view/view_species_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/ui/species/widgets/view/view_species_screen.dart -------------------------------------------------------------------------------- /frontend/lib/utils/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/utils/common.dart -------------------------------------------------------------------------------- /frontend/lib/utils/icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/utils/icons.dart -------------------------------------------------------------------------------- /frontend/lib/utils/stream_code.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/lib/utils/stream_code.dart -------------------------------------------------------------------------------- /frontend/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /frontend/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/linux/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /frontend/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /frontend/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /frontend/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/linux/main.cc -------------------------------------------------------------------------------- /frontend/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/linux/my_application.cc -------------------------------------------------------------------------------- /frontend/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/linux/my_application.h -------------------------------------------------------------------------------- /frontend/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/.gitignore -------------------------------------------------------------------------------- /frontend/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /frontend/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /frontend/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /frontend/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /frontend/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /frontend/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /frontend/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /frontend/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /frontend/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /frontend/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /frontend/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /frontend/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /frontend/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /frontend/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /frontend/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /frontend/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Info.plist -------------------------------------------------------------------------------- /frontend/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /frontend/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /frontend/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /frontend/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/pubspec.lock -------------------------------------------------------------------------------- /frontend/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/pubspec.yaml -------------------------------------------------------------------------------- /frontend/test/data/plant_repository_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/test/data/plant_repository_test.dart -------------------------------------------------------------------------------- /frontend/test/data/plant_repository_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/test/data/plant_repository_test.mocks.dart -------------------------------------------------------------------------------- /frontend/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/web/favicon.png -------------------------------------------------------------------------------- /frontend/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/web/icons/Icon-192.png -------------------------------------------------------------------------------- /frontend/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/web/icons/Icon-512.png -------------------------------------------------------------------------------- /frontend/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /frontend/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /frontend/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/web/index.html -------------------------------------------------------------------------------- /frontend/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/web/manifest.json -------------------------------------------------------------------------------- /frontend/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/.gitignore -------------------------------------------------------------------------------- /frontend/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /frontend/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /frontend/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /frontend/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/runner/Runner.rc -------------------------------------------------------------------------------- /frontend/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /frontend/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /frontend/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/runner/main.cpp -------------------------------------------------------------------------------- /frontend/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/runner/resource.h -------------------------------------------------------------------------------- /frontend/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /frontend/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /frontend/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/runner/utils.cpp -------------------------------------------------------------------------------- /frontend/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/runner/utils.h -------------------------------------------------------------------------------- /frontend/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /frontend/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/frontend/windows/runner/win32_window.h -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/images/banner.png -------------------------------------------------------------------------------- /images/bmc-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/images/bmc-button.png -------------------------------------------------------------------------------- /images/logo-plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/images/logo-plain.png -------------------------------------------------------------------------------- /images/logo-siluette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/images/logo-siluette.png -------------------------------------------------------------------------------- /images/logo-siluette.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/images/logo-siluette.xcf -------------------------------------------------------------------------------- /images/logo-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDeLuise/plant-it/HEAD/images/logo-square.png --------------------------------------------------------------------------------