├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── .metadata ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── .cxx │ │ ├── Debug │ │ │ └── 3p5u6326 │ │ │ │ ├── arm64-v8a │ │ │ │ ├── .cmake │ │ │ │ │ └── api │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── query │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ └── reply │ │ │ │ │ │ ├── cache-v2-adc80fc1204452115352.json │ │ │ │ │ │ ├── cmakeFiles-v1-e3318243169dfc171e6c.json │ │ │ │ │ │ ├── codemodel-v2-6b28177684c012311b7d.json │ │ │ │ │ │ ├── directory-.-Debug-d0094a50bb2071803777.json │ │ │ │ │ │ └── index-2025-05-29T14-04-08-0088.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ │ ├── 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-bf1c130bc56432b9804e.json │ │ │ │ │ │ ├── cmakeFiles-v1-4422bac49cc4b8288a60.json │ │ │ │ │ │ ├── codemodel-v2-39517ad57a498ca85a7a.json │ │ │ │ │ │ ├── directory-.-Debug-d0094a50bb2071803777.json │ │ │ │ │ │ └── index-2025-05-29T14-04-10-0316.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ │ ├── 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-b60ef1aec5fc3b7e0fe2.json │ │ │ │ │ │ ├── cmakeFiles-v1-765338b66ee505e24b70.json │ │ │ │ │ │ ├── codemodel-v2-1aefad9dd3e4ccab208b.json │ │ │ │ │ │ ├── directory-.-Debug-d0094a50bb2071803777.json │ │ │ │ │ │ └── index-2025-05-29T14-04-11-0459.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ │ ├── 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-864179a75b108469bcb3.json │ │ │ │ │ ├── cmakeFiles-v1-77e73135319f05e3b292.json │ │ │ │ │ ├── codemodel-v2-2ee8e0d0098c3edf9cf1.json │ │ │ │ │ ├── directory-.-Debug-d0094a50bb2071803777.json │ │ │ │ │ └── index-2025-05-29T14-04-15-0255.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ ├── 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 │ │ │ ├── 6223285g │ │ │ ├── arm64-v8a │ │ │ │ ├── .cmake │ │ │ │ │ └── api │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── query │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ └── reply │ │ │ │ │ │ ├── cache-v2-cd4f1cf43afe7607a0cd.json │ │ │ │ │ │ ├── cmakeFiles-v1-7875ce44534c38cba6b6.json │ │ │ │ │ │ ├── codemodel-v2-4a27a5b5a3188bd9e5b4.json │ │ │ │ │ │ ├── directory-.-RelWithDebInfo-d0094a50bb2071803777.json │ │ │ │ │ │ └── index-2025-05-30T12-39-21-0733.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ │ ├── 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-9cf5c461c91fa8b64560.json │ │ │ │ │ │ ├── cmakeFiles-v1-ef7de142dce0aa79ae98.json │ │ │ │ │ │ ├── codemodel-v2-0d9d50f6b520d7aef6d9.json │ │ │ │ │ │ ├── directory-.-RelWithDebInfo-d0094a50bb2071803777.json │ │ │ │ │ │ └── index-2025-05-30T12-39-41-0274.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ │ ├── 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-5e24875ea50ddad19356.json │ │ │ │ │ │ ├── cmakeFiles-v1-33b17d6940cabe96dd73.json │ │ │ │ │ │ ├── codemodel-v2-12f4658fbf1743093073.json │ │ │ │ │ │ ├── directory-.-RelWithDebInfo-d0094a50bb2071803777.json │ │ │ │ │ │ └── index-2025-05-30T12-39-57-0389.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ │ ├── 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-ae1c78e2b6dade82b7b8.json │ │ │ │ │ ├── cmakeFiles-v1-be427f91f440d8e251e6.json │ │ │ │ │ ├── codemodel-v2-f178fc658ac3289e6d03.json │ │ │ │ │ ├── directory-.-RelWithDebInfo-d0094a50bb2071803777.json │ │ │ │ │ └── index-2025-05-30T12-40-15-0863.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ ├── 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 │ │ │ ├── 6n222h5r │ │ │ ├── arm64-v8a │ │ │ │ ├── .cmake │ │ │ │ │ └── api │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── query │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ └── reply │ │ │ │ │ │ ├── cache-v2-f9c286f9686efc767e49.json │ │ │ │ │ │ ├── cmakeFiles-v1-31b770a9b4a8bb6d4d68.json │ │ │ │ │ │ ├── codemodel-v2-40e72208b9fae1d57bdb.json │ │ │ │ │ │ ├── directory-.-RelWithDebInfo-d0094a50bb2071803777.json │ │ │ │ │ │ └── index-2025-05-31T17-14-43-0698.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ │ ├── 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-1a8d3c6a5821991390cf.json │ │ │ │ │ │ ├── cmakeFiles-v1-27eecbe4505bf82cfc3c.json │ │ │ │ │ │ ├── codemodel-v2-cf2c2a255d7e2cc0336a.json │ │ │ │ │ │ ├── directory-.-RelWithDebInfo-d0094a50bb2071803777.json │ │ │ │ │ │ └── index-2025-05-31T17-14-47-0362.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ │ ├── 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-24a0276946aa10d61391.json │ │ │ │ │ │ ├── cmakeFiles-v1-697aac78ff0515f631e7.json │ │ │ │ │ │ ├── codemodel-v2-cc1b18ae931f197d68e4.json │ │ │ │ │ │ ├── directory-.-RelWithDebInfo-d0094a50bb2071803777.json │ │ │ │ │ │ └── index-2025-05-31T17-14-50-0226.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ │ ├── 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-4414917eb1605bbf41a6.json │ │ │ │ │ ├── cmakeFiles-v1-e559bf5aaf3596564377.json │ │ │ │ │ ├── codemodel-v2-9cdf3ba64cf06d75d81a.json │ │ │ │ │ ├── directory-.-RelWithDebInfo-d0094a50bb2071803777.json │ │ │ │ │ └── index-2025-05-31T17-14-53-0330.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ ├── 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 │ │ │ └── 6r4v4n4q │ │ │ ├── arm64-v8a │ │ │ ├── .cmake │ │ │ │ └── api │ │ │ │ │ └── v1 │ │ │ │ │ ├── query │ │ │ │ │ └── client-agp │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ └── reply │ │ │ │ │ ├── cache-v2-a4da59966f2f31db0d36.json │ │ │ │ │ ├── cmakeFiles-v1-19f06b4a9bcc105b4b95.json │ │ │ │ │ ├── codemodel-v2-d736dfafc940ae219323.json │ │ │ │ │ ├── directory-.-RelWithDebInfo-d0094a50bb2071803777.json │ │ │ │ │ └── index-2025-05-31T14-54-02-0853.json │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ ├── 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-b4273fefa73577116a6b.json │ │ │ │ │ ├── cmakeFiles-v1-d5aa62d45ee9f2a534e1.json │ │ │ │ │ ├── codemodel-v2-7baf7a01f479b26b4c29.json │ │ │ │ │ ├── directory-.-RelWithDebInfo-d0094a50bb2071803777.json │ │ │ │ │ └── index-2025-05-31T14-54-06-0500.json │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ ├── 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-c850ef61bbbe9c6d459a.json │ │ │ │ │ ├── cmakeFiles-v1-89a66334b661d6bb5eca.json │ │ │ │ │ ├── codemodel-v2-5ab2fc858ce555258c34.json │ │ │ │ │ ├── directory-.-RelWithDebInfo-d0094a50bb2071803777.json │ │ │ │ │ └── index-2025-05-31T14-54-10-0100.json │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ │ ├── 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-13006e900cefc665717e.json │ │ │ │ ├── cmakeFiles-v1-53ec6a5005eee4c4c845.json │ │ │ │ ├── codemodel-v2-b78afbe8cf473c02f959.json │ │ │ │ ├── directory-.-RelWithDebInfo-d0094a50bb2071803777.json │ │ │ │ └── index-2025-05-31T14-54-12-0785.json │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ ├── 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 │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ ├── example │ │ │ │ └── moviedex │ │ │ │ │ └── MainActivity.kt │ │ │ │ ├── kodify │ │ │ │ └── moviedex │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── moviedex │ │ │ │ └── app │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── provider_paths.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── animations │ ├── error.json │ └── loading.json ├── fonts │ ├── Inter-Bold.ttf │ ├── Inter-Medium.ttf │ ├── Inter-Regular.ttf │ ├── Lato-Bold.ttf │ ├── Lato-Regular.ttf │ ├── Montserrat-Bold.ttf │ ├── Montserrat-Medium.ttf │ ├── Montserrat-Regular.ttf │ ├── Poppins-Bold.ttf │ ├── Poppins-Medium.ttf │ ├── Poppins-Regular.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-Medium.ttf │ └── Roboto-Regular.ttf └── images │ ├── desktop-screenshot-1.png │ ├── desktop-screenshot-2.png │ ├── icon-bg.png │ ├── icon.png │ ├── screenshot-1.jpg │ ├── screenshot-2.jpg │ ├── screenshot-3.jpeg │ ├── screenshot-4.jpeg │ ├── screenshot-5.jpeg │ ├── screenshot-6.jpeg │ ├── screenshot-7.jpeg │ └── screenshot-8.jpeg ├── 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 ├── lib ├── api │ ├── api.dart │ ├── class │ │ ├── content_class.dart │ │ ├── content_class.g.dart │ │ ├── episode_class.dart │ │ ├── server_class.dart │ │ ├── source_class.dart │ │ ├── stream_class.dart │ │ └── subtitle_class.dart │ ├── contentproviders │ │ ├── anime_providers │ │ │ └── hianime.dart │ │ ├── contentprovider.dart │ │ └── movie-tv_providers │ │ │ ├── autoembed.dart │ │ │ ├── embed.dart │ │ │ ├── vidsrc.dart │ │ │ ├── vidsrcsu.dart │ │ │ ├── vidzee.dart │ │ │ └── xprime.dart │ ├── models │ │ ├── cache_model.dart │ │ ├── cache_model.g.dart │ │ ├── list_item_model.dart │ │ └── list_item_model.g.dart │ └── secrets.dart ├── components │ ├── cached_poster.dart │ ├── carousel.dart │ ├── content_player.dart │ ├── description_text.dart │ ├── download_button.dart │ ├── download_button_widget.dart │ ├── download_icon_widget.dart │ ├── downloads_list.dart │ ├── episode_list_player.dart │ ├── episode_selection_list.dart │ ├── episodes_list.dart │ ├── episodes_section.dart │ ├── horizontal_scroll_list.dart │ ├── next_episode_button.dart │ └── responsive_navigation.dart ├── main.dart ├── models │ ├── download_state_model.dart │ ├── download_state_model.g.dart │ ├── downloads_manager.dart │ └── downloads_manager.g.dart ├── pages │ ├── auth │ │ ├── login_page.dart │ │ └── signup_page.dart │ ├── downloads_page.dart │ ├── info_page.dart │ ├── movie_page.dart │ ├── my_list_page.dart │ ├── offline_page.dart │ ├── profile_page.dart │ ├── search_page.dart │ ├── settings_page.dart │ ├── splash_screen.dart │ ├── tvshow_page.dart │ ├── watch_history_page.dart │ └── watch_page.dart ├── providers │ ├── downloads_provider.dart │ └── theme_provider.dart ├── services │ ├── appwrite_service.dart │ ├── auth_service.dart │ ├── background_download_service.dart │ ├── cache_service.dart │ ├── cached_image_service.dart │ ├── connectivity_service.dart │ ├── list_service.dart │ ├── m3u8_downloader_service.dart │ ├── proxy_service.dart │ ├── settings_service.dart │ ├── share_service.dart │ ├── subtitle_parser.dart │ ├── subtitle_service.dart │ ├── update_service.dart │ └── watch_history_service.dart ├── utils │ ├── error_handlers.dart │ ├── format_utils.dart │ ├── ui_constants.dart │ └── utils.dart └── widgets │ ├── download_poster.dart │ ├── error_widget.dart │ └── time_left_display.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake └── runner │ ├── CMakeLists.txt │ ├── main.cc │ ├── my_application.cc │ └── my_application.h ├── local_plugins └── uni_links │ └── android │ └── build.gradle ├── 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 ├── shorebird.yaml ├── test └── widget_test.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 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Custom issue template 3 | about: Describe this issue template's purpose here. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | *.local 7 | .DS_Store 8 | .atom/ 9 | .build/ 10 | .buildlog/ 11 | .history 12 | .svn/ 13 | .swiftpm/ 14 | migrate_working_dir/ 15 | 16 | # IntelliJ related 17 | *.iml 18 | *.ipr 19 | *.iws 20 | .idea/ 21 | 22 | # The .vscode folder contains launch configuration and tasks you configure in 23 | # VS Code which you may wish to be included in version control, so this line 24 | # is commented out by default. 25 | #.vscode/ 26 | 27 | # Flutter/Dart/Pub related 28 | **/doc/api/ 29 | **/ios/Flutter/.last_build_id 30 | .dart_tool/ 31 | .flutter-plugins 32 | .flutter-plugins-dependencies 33 | .pub-cache/ 34 | .pub/ 35 | /build/ 36 | 37 | # Symbolication related 38 | app.*.symbols 39 | 40 | # Obfuscation related 41 | app.*.map.json 42 | 43 | # Android Studio will place build artifacts here 44 | /android/app/debug 45 | /android/app/profile 46 | /android/app/release 47 | /android/app/google-services.json 48 | 49 | 50 | # Firebase configuration 51 | firebase.json 52 | lib/firebase_options.dart 53 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmake.sourceDirectory": "E:/flutter/MovieDex-Flutter/linux" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 MovieDex Contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/to/reference-keystore 11 | key.properties 12 | **/*.keystore 13 | **/*.jks 14 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-6b28177684c012311b7d.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "Debug", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/Debug/3p5u6326/arm64-v8a", 36 | "source" : "E:/flutter/flutter/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "aarch64") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/Debug/3p5u6326/arm64-v8a/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/Debug/3p5u6326/arm64-v8a/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/arm64-v8a/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/android_gradle_build.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "E:\\flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\arm64-v8a", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\arm64-v8a", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {}, 20 | "toolchains": { 21 | "toolchain": { 22 | "cCompilerExecutable": "C:\\Users\\rajes\\AppData\\Local\\Android\\Sdk\\ndk\\27.0.12077973\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe", 23 | "cppCompilerExecutable": "C:\\Users\\rajes\\AppData\\Local\\Android\\Sdk\\ndk\\27.0.12077973\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe" 24 | } 25 | }, 26 | "cFileExtensions": [], 27 | "cppFileExtensions": [] 28 | } -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "E:\\flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\arm64-v8a", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\arm64-v8a", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/build_file_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/arm64-v8a/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/metadata_generation_command.txt: -------------------------------------------------------------------------------- 1 | -HE:\flutter\flutter\packages\flutter_tools\gradle\src\main\groovy 2 | -DCMAKE_SYSTEM_NAME=Android 3 | -DCMAKE_EXPORT_COMPILE_COMMANDS=ON 4 | -DCMAKE_SYSTEM_VERSION=23 5 | -DANDROID_PLATFORM=android-23 6 | -DANDROID_ABI=arm64-v8a 7 | -DCMAKE_ANDROID_ARCH_ABI=arm64-v8a 8 | -DANDROID_NDK=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973 9 | -DCMAKE_ANDROID_NDK=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973 10 | -DCMAKE_TOOLCHAIN_FILE=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973\build\cmake\android.toolchain.cmake 11 | -DCMAKE_MAKE_PROGRAM=C:\Users\rajes\AppData\Local\Android\sdk\cmake\3.22.1\bin\ninja.exe 12 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\Debug\3p5u6326\obj\arm64-v8a 13 | -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\Debug\3p5u6326\obj\arm64-v8a 14 | -DCMAKE_BUILD_TYPE=Debug 15 | -BE:\flutter\MovieDex-Flutter\android\app\.cxx\Debug\3p5u6326\arm64-v8a 16 | -GNinja 17 | -Wno-dev 18 | --no-warn-unused-cli 19 | Build command args: [] 20 | Version: 2 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/arm64-v8a/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\Debug\3p5u6326\obj\arm64-v8a -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-39517ad57a498ca85a7a.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "Debug", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/Debug/3p5u6326/armeabi-v7a", 36 | "source" : "E:/flutter/flutter/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "armv7-a") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/Debug/3p5u6326/armeabi-v7a/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/Debug/3p5u6326/armeabi-v7a/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/armeabi-v7a/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/android_gradle_build.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "E:\\flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\armeabi-v7a", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\armeabi-v7a", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {}, 20 | "toolchains": { 21 | "toolchain": { 22 | "cCompilerExecutable": "C:\\Users\\rajes\\AppData\\Local\\Android\\Sdk\\ndk\\27.0.12077973\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe", 23 | "cppCompilerExecutable": "C:\\Users\\rajes\\AppData\\Local\\Android\\Sdk\\ndk\\27.0.12077973\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe" 24 | } 25 | }, 26 | "cFileExtensions": [], 27 | "cppFileExtensions": [] 28 | } -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "E:\\flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\armeabi-v7a", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\armeabi-v7a", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/build_file_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/armeabi-v7a/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/metadata_generation_command.txt: -------------------------------------------------------------------------------- 1 | -HE:\flutter\flutter\packages\flutter_tools\gradle\src\main\groovy 2 | -DCMAKE_SYSTEM_NAME=Android 3 | -DCMAKE_EXPORT_COMPILE_COMMANDS=ON 4 | -DCMAKE_SYSTEM_VERSION=23 5 | -DANDROID_PLATFORM=android-23 6 | -DANDROID_ABI=armeabi-v7a 7 | -DCMAKE_ANDROID_ARCH_ABI=armeabi-v7a 8 | -DANDROID_NDK=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973 9 | -DCMAKE_ANDROID_NDK=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973 10 | -DCMAKE_TOOLCHAIN_FILE=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973\build\cmake\android.toolchain.cmake 11 | -DCMAKE_MAKE_PROGRAM=C:\Users\rajes\AppData\Local\Android\sdk\cmake\3.22.1\bin\ninja.exe 12 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\Debug\3p5u6326\obj\armeabi-v7a 13 | -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\Debug\3p5u6326\obj\armeabi-v7a 14 | -DCMAKE_BUILD_TYPE=Debug 15 | -BE:\flutter\MovieDex-Flutter\android\app\.cxx\Debug\3p5u6326\armeabi-v7a 16 | -GNinja 17 | -Wno-dev 18 | --no-warn-unused-cli 19 | Build command args: [] 20 | Version: 2 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/armeabi-v7a/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\Debug\3p5u6326\obj\armeabi-v7a -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/.cmake/api/v1/reply/codemodel-v2-1aefad9dd3e4ccab208b.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "Debug", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/Debug/3p5u6326/x86", 36 | "source" : "E:/flutter/flutter/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "i686") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/Debug/3p5u6326/x86/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/Debug/3p5u6326/x86/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/android_gradle_build.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "E:\\flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\x86", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\x86", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {}, 20 | "toolchains": { 21 | "toolchain": { 22 | "cCompilerExecutable": "C:\\Users\\rajes\\AppData\\Local\\Android\\Sdk\\ndk\\27.0.12077973\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe", 23 | "cppCompilerExecutable": "C:\\Users\\rajes\\AppData\\Local\\Android\\Sdk\\ndk\\27.0.12077973\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe" 24 | } 25 | }, 26 | "cFileExtensions": [], 27 | "cppFileExtensions": [] 28 | } -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "E:\\flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\x86", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\x86", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/build_file_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/metadata_generation_command.txt: -------------------------------------------------------------------------------- 1 | -HE:\flutter\flutter\packages\flutter_tools\gradle\src\main\groovy 2 | -DCMAKE_SYSTEM_NAME=Android 3 | -DCMAKE_EXPORT_COMPILE_COMMANDS=ON 4 | -DCMAKE_SYSTEM_VERSION=23 5 | -DANDROID_PLATFORM=android-23 6 | -DANDROID_ABI=x86 7 | -DCMAKE_ANDROID_ARCH_ABI=x86 8 | -DANDROID_NDK=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973 9 | -DCMAKE_ANDROID_NDK=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973 10 | -DCMAKE_TOOLCHAIN_FILE=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973\build\cmake\android.toolchain.cmake 11 | -DCMAKE_MAKE_PROGRAM=C:\Users\rajes\AppData\Local\Android\sdk\cmake\3.22.1\bin\ninja.exe 12 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\Debug\3p5u6326\obj\x86 13 | -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\Debug\3p5u6326\obj\x86 14 | -DCMAKE_BUILD_TYPE=Debug 15 | -BE:\flutter\MovieDex-Flutter\android\app\.cxx\Debug\3p5u6326\x86 16 | -GNinja 17 | -Wno-dev 18 | --no-warn-unused-cli 19 | Build command args: [] 20 | Version: 2 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\Debug\3p5u6326\obj\x86 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86_64/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/.cmake/api/v1/reply/codemodel-v2-2ee8e0d0098c3edf9cf1.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "Debug", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/Debug/3p5u6326/x86_64", 36 | "source" : "E:/flutter/flutter/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "x86_64") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/Debug/3p5u6326/x86_64/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/Debug/3p5u6326/x86_64/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86_64/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/android_gradle_build.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "E:\\flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\x86_64", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\x86_64", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {}, 20 | "toolchains": { 21 | "toolchain": { 22 | "cCompilerExecutable": "C:\\Users\\rajes\\AppData\\Local\\Android\\Sdk\\ndk\\27.0.12077973\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe", 23 | "cppCompilerExecutable": "C:\\Users\\rajes\\AppData\\Local\\Android\\Sdk\\ndk\\27.0.12077973\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe" 24 | } 25 | }, 26 | "cFileExtensions": [], 27 | "cppFileExtensions": [] 28 | } -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "E:\\flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\x86_64", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\Debug\\3p5u6326\\x86_64", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/build_file_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/Debug/3p5u6326/x86_64/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/metadata_generation_command.txt: -------------------------------------------------------------------------------- 1 | -HE:\flutter\flutter\packages\flutter_tools\gradle\src\main\groovy 2 | -DCMAKE_SYSTEM_NAME=Android 3 | -DCMAKE_EXPORT_COMPILE_COMMANDS=ON 4 | -DCMAKE_SYSTEM_VERSION=23 5 | -DANDROID_PLATFORM=android-23 6 | -DANDROID_ABI=x86_64 7 | -DCMAKE_ANDROID_ARCH_ABI=x86_64 8 | -DANDROID_NDK=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973 9 | -DCMAKE_ANDROID_NDK=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973 10 | -DCMAKE_TOOLCHAIN_FILE=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973\build\cmake\android.toolchain.cmake 11 | -DCMAKE_MAKE_PROGRAM=C:\Users\rajes\AppData\Local\Android\sdk\cmake\3.22.1\bin\ninja.exe 12 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\Debug\3p5u6326\obj\x86_64 13 | -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\Debug\3p5u6326\obj\x86_64 14 | -DCMAKE_BUILD_TYPE=Debug 15 | -BE:\flutter\MovieDex-Flutter\android\app\.cxx\Debug\3p5u6326\x86_64 16 | -GNinja 17 | -Wno-dev 18 | --no-warn-unused-cli 19 | Build command args: [] 20 | Version: 2 -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/Debug/3p5u6326/x86_64/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\Debug\3p5u6326\obj\x86_64 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-4a27a5b5a3188bd9e5b4.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-RelWithDebInfo-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "RelWithDebInfo", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a", 36 | "source" : "C:/Users/rajes/.shorebird/bin/cache/flutter/8c1a3ee6d9319bd5c202f73972a6d03bba335402/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/.cmake/api/v1/reply/directory-.-RelWithDebInfo-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "aarch64") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "C:\\Users\\rajes\\.shorebird\\bin\\cache\\flutter\\8c1a3ee6d9319bd5c202f73972a6d03bba335402\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6223285g\\arm64-v8a", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6223285g\\arm64-v8a", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/build_file_index.txt: -------------------------------------------------------------------------------- 1 | C:\Users\rajes\.shorebird\bin\cache\flutter\8c1a3ee6d9319bd5c202f73972a6d03bba335402\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/arm64-v8a/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6223285g\obj\arm64-v8a -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-0d9d50f6b520d7aef6d9.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-RelWithDebInfo-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "RelWithDebInfo", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a", 36 | "source" : "C:/Users/rajes/.shorebird/bin/cache/flutter/8c1a3ee6d9319bd5c202f73972a6d03bba335402/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/.cmake/api/v1/reply/directory-.-RelWithDebInfo-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "armv7-a") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "C:\\Users\\rajes\\.shorebird\\bin\\cache\\flutter\\8c1a3ee6d9319bd5c202f73972a6d03bba335402\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6223285g\\armeabi-v7a", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6223285g\\armeabi-v7a", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/build_file_index.txt: -------------------------------------------------------------------------------- 1 | C:\Users\rajes\.shorebird\bin\cache\flutter\8c1a3ee6d9319bd5c202f73972a6d03bba335402\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/armeabi-v7a/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6223285g\obj\armeabi-v7a -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/.cmake/api/v1/reply/codemodel-v2-12f4658fbf1743093073.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-RelWithDebInfo-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "RelWithDebInfo", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6223285g/x86", 36 | "source" : "C:/Users/rajes/.shorebird/bin/cache/flutter/8c1a3ee6d9319bd5c202f73972a6d03bba335402/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/.cmake/api/v1/reply/directory-.-RelWithDebInfo-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "i686") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6223285g/x86/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6223285g/x86/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "C:\\Users\\rajes\\.shorebird\\bin\\cache\\flutter\\8c1a3ee6d9319bd5c202f73972a6d03bba335402\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6223285g\\x86", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6223285g\\x86", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/build_file_index.txt: -------------------------------------------------------------------------------- 1 | C:\Users\rajes\.shorebird\bin\cache\flutter\8c1a3ee6d9319bd5c202f73972a6d03bba335402\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6223285g\obj\x86 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86_64/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/.cmake/api/v1/reply/codemodel-v2-f178fc658ac3289e6d03.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-RelWithDebInfo-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "RelWithDebInfo", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6223285g/x86_64", 36 | "source" : "C:/Users/rajes/.shorebird/bin/cache/flutter/8c1a3ee6d9319bd5c202f73972a6d03bba335402/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/.cmake/api/v1/reply/directory-.-RelWithDebInfo-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "x86_64") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6223285g/x86_64/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6223285g/x86_64/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86_64/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "C:\\Users\\rajes\\.shorebird\\bin\\cache\\flutter\\8c1a3ee6d9319bd5c202f73972a6d03bba335402\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6223285g\\x86_64", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6223285g\\x86_64", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/build_file_index.txt: -------------------------------------------------------------------------------- 1 | C:\Users\rajes\.shorebird\bin\cache\flutter\8c1a3ee6d9319bd5c202f73972a6d03bba335402\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6223285g/x86_64/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6223285g/x86_64/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6223285g\obj\x86_64 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-40e72208b9fae1d57bdb.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-RelWithDebInfo-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "RelWithDebInfo", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a", 36 | "source" : "C:/Users/rajes/.shorebird/bin/cache/flutter/2e1bcd18e2dc3b8251dc0671085c6518d37e16ad/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/.cmake/api/v1/reply/directory-.-RelWithDebInfo-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "aarch64") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "C:\\Users\\rajes\\.shorebird\\bin\\cache\\flutter\\2e1bcd18e2dc3b8251dc0671085c6518d37e16ad\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6n222h5r\\arm64-v8a", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6n222h5r\\arm64-v8a", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/build_file_index.txt: -------------------------------------------------------------------------------- 1 | C:\Users\rajes\.shorebird\bin\cache\flutter\2e1bcd18e2dc3b8251dc0671085c6518d37e16ad\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/arm64-v8a/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6n222h5r\obj\arm64-v8a -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-cf2c2a255d7e2cc0336a.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-RelWithDebInfo-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "RelWithDebInfo", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a", 36 | "source" : "C:/Users/rajes/.shorebird/bin/cache/flutter/2e1bcd18e2dc3b8251dc0671085c6518d37e16ad/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/.cmake/api/v1/reply/directory-.-RelWithDebInfo-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "armv7-a") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "C:\\Users\\rajes\\.shorebird\\bin\\cache\\flutter\\2e1bcd18e2dc3b8251dc0671085c6518d37e16ad\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6n222h5r\\armeabi-v7a", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6n222h5r\\armeabi-v7a", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/build_file_index.txt: -------------------------------------------------------------------------------- 1 | C:\Users\rajes\.shorebird\bin\cache\flutter\2e1bcd18e2dc3b8251dc0671085c6518d37e16ad\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/armeabi-v7a/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6n222h5r\obj\armeabi-v7a -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/.cmake/api/v1/reply/codemodel-v2-cc1b18ae931f197d68e4.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-RelWithDebInfo-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "RelWithDebInfo", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6n222h5r/x86", 36 | "source" : "C:/Users/rajes/.shorebird/bin/cache/flutter/2e1bcd18e2dc3b8251dc0671085c6518d37e16ad/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/.cmake/api/v1/reply/directory-.-RelWithDebInfo-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "i686") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6n222h5r/x86/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6n222h5r/x86/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "C:\\Users\\rajes\\.shorebird\\bin\\cache\\flutter\\2e1bcd18e2dc3b8251dc0671085c6518d37e16ad\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6n222h5r\\x86", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6n222h5r\\x86", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/build_file_index.txt: -------------------------------------------------------------------------------- 1 | C:\Users\rajes\.shorebird\bin\cache\flutter\2e1bcd18e2dc3b8251dc0671085c6518d37e16ad\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6n222h5r\obj\x86 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/.cmake/api/v1/reply/codemodel-v2-9cdf3ba64cf06d75d81a.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-RelWithDebInfo-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "RelWithDebInfo", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64", 36 | "source" : "C:/Users/rajes/.shorebird/bin/cache/flutter/2e1bcd18e2dc3b8251dc0671085c6518d37e16ad/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/.cmake/api/v1/reply/directory-.-RelWithDebInfo-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "x86_64") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "C:\\Users\\rajes\\.shorebird\\bin\\cache\\flutter\\2e1bcd18e2dc3b8251dc0671085c6518d37e16ad\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6n222h5r\\x86_64", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6n222h5r\\x86_64", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/build_file_index.txt: -------------------------------------------------------------------------------- 1 | C:\Users\rajes\.shorebird\bin\cache\flutter\2e1bcd18e2dc3b8251dc0671085c6518d37e16ad\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6n222h5r/x86_64/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6n222h5r\obj\x86_64 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-d736dfafc940ae219323.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-RelWithDebInfo-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "RelWithDebInfo", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a", 36 | "source" : "E:/flutter/flutter/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/.cmake/api/v1/reply/directory-.-RelWithDebInfo-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "aarch64") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "E:\\flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6r4v4n4q\\arm64-v8a", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6r4v4n4q\\arm64-v8a", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/build_file_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/arm64-v8a/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6r4v4n4q\obj\arm64-v8a -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7baf7a01f479b26b4c29.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-RelWithDebInfo-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "RelWithDebInfo", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a", 36 | "source" : "E:/flutter/flutter/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/.cmake/api/v1/reply/directory-.-RelWithDebInfo-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "armv7-a") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "E:\\flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6r4v4n4q\\armeabi-v7a", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6r4v4n4q\\armeabi-v7a", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/build_file_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/armeabi-v7a/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6r4v4n4q\obj\armeabi-v7a -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/.cmake/api/v1/reply/codemodel-v2-5ab2fc858ce555258c34.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-RelWithDebInfo-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "RelWithDebInfo", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86", 36 | "source" : "E:/flutter/flutter/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/.cmake/api/v1/reply/directory-.-RelWithDebInfo-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "i686") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/android_gradle_build.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "E:\\flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6r4v4n4q\\x86", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6r4v4n4q\\x86", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {}, 20 | "toolchains": { 21 | "toolchain": { 22 | "cCompilerExecutable": "C:\\Users\\rajes\\AppData\\Local\\Android\\Sdk\\ndk\\27.0.12077973\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe", 23 | "cppCompilerExecutable": "C:\\Users\\rajes\\AppData\\Local\\Android\\Sdk\\ndk\\27.0.12077973\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe" 24 | } 25 | }, 26 | "cFileExtensions": [], 27 | "cppFileExtensions": [] 28 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "E:\\flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6r4v4n4q\\x86", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6r4v4n4q\\x86", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/build_file_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/metadata_generation_command.txt: -------------------------------------------------------------------------------- 1 | -HE:\flutter\flutter\packages\flutter_tools\gradle\src\main\groovy 2 | -DCMAKE_SYSTEM_NAME=Android 3 | -DCMAKE_EXPORT_COMPILE_COMMANDS=ON 4 | -DCMAKE_SYSTEM_VERSION=23 5 | -DANDROID_PLATFORM=android-23 6 | -DANDROID_ABI=x86 7 | -DCMAKE_ANDROID_ARCH_ABI=x86 8 | -DANDROID_NDK=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973 9 | -DCMAKE_ANDROID_NDK=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973 10 | -DCMAKE_TOOLCHAIN_FILE=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973\build\cmake\android.toolchain.cmake 11 | -DCMAKE_MAKE_PROGRAM=C:\Users\rajes\AppData\Local\Android\sdk\cmake\3.22.1\bin\ninja.exe 12 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6r4v4n4q\obj\x86 13 | -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6r4v4n4q\obj\x86 14 | -DCMAKE_BUILD_TYPE=RelWithDebInfo 15 | -BE:\flutter\MovieDex-Flutter\android\app\.cxx\RelWithDebInfo\6r4v4n4q\x86 16 | -GNinja 17 | -Wno-dev 18 | --no-warn-unused-cli 19 | Build command args: [] 20 | Version: 2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6r4v4n4q\obj\x86 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/.cmake/api/v1/query/client-agp/cache-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/.cmake/api/v1/reply/codemodel-v2-b78afbe8cf473c02f959.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations" : 3 | [ 4 | { 5 | "directories" : 6 | [ 7 | { 8 | "build" : ".", 9 | "jsonFile" : "directory-.-RelWithDebInfo-d0094a50bb2071803777.json", 10 | "minimumCMakeVersion" : 11 | { 12 | "string" : "3.6.0" 13 | }, 14 | "projectIndex" : 0, 15 | "source" : "." 16 | } 17 | ], 18 | "name" : "RelWithDebInfo", 19 | "projects" : 20 | [ 21 | { 22 | "directoryIndexes" : 23 | [ 24 | 0 25 | ], 26 | "name" : "Project" 27 | } 28 | ], 29 | "targets" : [] 30 | } 31 | ], 32 | "kind" : "codemodel", 33 | "paths" : 34 | { 35 | "build" : "E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64", 36 | "source" : "E:/flutter/flutter/packages/flutter_tools/gradle/src/main/groovy" 37 | }, 38 | "version" : 39 | { 40 | "major" : 2, 41 | "minor" : 3 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/.cmake/api/v1/reply/directory-.-RelWithDebInfo-d0094a50bb2071803777.json: -------------------------------------------------------------------------------- 1 | { 2 | "backtraceGraph" : 3 | { 4 | "commands" : [], 5 | "files" : [], 6 | "nodes" : [] 7 | }, 8 | "installers" : [], 9 | "paths" : 10 | { 11 | "build" : ".", 12 | "source" : "." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/Users/rajes/AppData/Local/Android/Sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake") 7 | 8 | set(CMAKE_SYSTEM "Android-1") 9 | set(CMAKE_SYSTEM_NAME "Android") 10 | set(CMAKE_SYSTEM_VERSION "1") 11 | set(CMAKE_SYSTEM_PROCESSOR "x86_64") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/CMakeFiles/edit_cache.dir 2 | E:/flutter/MovieDex-Flutter/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/CMakeFiles/rebuild_cache.dir 3 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/additional_project_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/additional_project_files.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/android_gradle_build.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "E:\\flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6r4v4n4q\\x86_64", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6r4v4n4q\\x86_64", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {}, 20 | "toolchains": { 21 | "toolchain": { 22 | "cCompilerExecutable": "C:\\Users\\rajes\\AppData\\Local\\Android\\Sdk\\ndk\\27.0.12077973\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe", 23 | "cppCompilerExecutable": "C:\\Users\\rajes\\AppData\\Local\\Android\\Sdk\\ndk\\27.0.12077973\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe" 24 | } 25 | }, 26 | "cFileExtensions": [], 27 | "cppFileExtensions": [] 28 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/android_gradle_build_mini.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildFiles": [ 3 | "E:\\flutter\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" 4 | ], 5 | "cleanCommandsComponents": [ 6 | [ 7 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 8 | "-C", 9 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6r4v4n4q\\x86_64", 10 | "clean" 11 | ] 12 | ], 13 | "buildTargetsCommandComponents": [ 14 | "C:\\Users\\rajes\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", 15 | "-C", 16 | "E:\\flutter\\MovieDex-Flutter\\android\\app\\.cxx\\RelWithDebInfo\\6r4v4n4q\\x86_64", 17 | "{LIST_OF_TARGETS_TO_BUILD}" 18 | ], 19 | "libraries": {} 20 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/build_file_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/configure_fingerprint.bin -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/metadata_generation_command.txt: -------------------------------------------------------------------------------- 1 | -HE:\flutter\flutter\packages\flutter_tools\gradle\src\main\groovy 2 | -DCMAKE_SYSTEM_NAME=Android 3 | -DCMAKE_EXPORT_COMPILE_COMMANDS=ON 4 | -DCMAKE_SYSTEM_VERSION=23 5 | -DANDROID_PLATFORM=android-23 6 | -DANDROID_ABI=x86_64 7 | -DCMAKE_ANDROID_ARCH_ABI=x86_64 8 | -DANDROID_NDK=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973 9 | -DCMAKE_ANDROID_NDK=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973 10 | -DCMAKE_TOOLCHAIN_FILE=C:\Users\rajes\AppData\Local\Android\sdk\ndk\27.0.12077973\build\cmake\android.toolchain.cmake 11 | -DCMAKE_MAKE_PROGRAM=C:\Users\rajes\AppData\Local\Android\sdk\cmake\3.22.1\bin\ninja.exe 12 | -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6r4v4n4q\obj\x86_64 13 | -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6r4v4n4q\obj\x86_64 14 | -DCMAKE_BUILD_TYPE=RelWithDebInfo 15 | -BE:\flutter\MovieDex-Flutter\android\app\.cxx\RelWithDebInfo\6r4v4n4q\x86_64 16 | -GNinja 17 | -Wno-dev 18 | --no-warn-unused-cli 19 | Build command args: [] 20 | Version: 2 -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/prefab_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false, 3 | "packages": [] 4 | } -------------------------------------------------------------------------------- /android/app/.cxx/RelWithDebInfo/6r4v4n4q/x86_64/symbol_folder_index.txt: -------------------------------------------------------------------------------- 1 | E:\flutter\MovieDex-Flutter\build\app\intermediates\cxx\RelWithDebInfo\6r4v4n4q\obj\x86_64 -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/moviedex/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.moviedex 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() 6 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/kodify/moviedex/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.kodify.moviedex 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF2196F3 4 | 5 | -------------------------------------------------------------------------------- /android/app/src/main/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip 6 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | def flutterSdkPath = { 3 | def properties = new Properties() 4 | file("local.properties").withInputStream { properties.load(it) } 5 | def flutterSdkPath = properties.getProperty("flutter.sdk") 6 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 7 | return flutterSdkPath 8 | }() 9 | 10 | includeBuild("$flutterSdkPath/packages/flutter_tools/gradle") 11 | 12 | repositories { 13 | google() 14 | mavenCentral() 15 | gradlePluginPortal() 16 | } 17 | } 18 | 19 | plugins { 20 | id "dev.flutter.flutter-plugin-loader" version "1.0.0" 21 | id "com.android.application" version "8.7.0" apply false 22 | id "org.jetbrains.kotlin.android" version "1.8.22" apply false 23 | } 24 | 25 | include ":app" 26 | -------------------------------------------------------------------------------- /assets/fonts/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/fonts/Inter-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/fonts/Inter-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/fonts/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /assets/images/desktop-screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/images/desktop-screenshot-1.png -------------------------------------------------------------------------------- /assets/images/desktop-screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/images/desktop-screenshot-2.png -------------------------------------------------------------------------------- /assets/images/icon-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/images/icon-bg.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/screenshot-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/images/screenshot-1.jpg -------------------------------------------------------------------------------- /assets/images/screenshot-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/images/screenshot-2.jpg -------------------------------------------------------------------------------- /assets/images/screenshot-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/images/screenshot-3.jpeg -------------------------------------------------------------------------------- /assets/images/screenshot-4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/images/screenshot-4.jpeg -------------------------------------------------------------------------------- /assets/images/screenshot-5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/images/screenshot-5.jpeg -------------------------------------------------------------------------------- /assets/images/screenshot-6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/images/screenshot-6.jpeg -------------------------------------------------------------------------------- /assets/images/screenshot-7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/images/screenshot-7.jpeg -------------------------------------------------------------------------------- /assets/images/screenshot-8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/assets/images/screenshot-8.jpeg -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- 1 | description: This file stores settings for Dart & Flutter DevTools. 2 | documentation: https://docs.flutter.dev/tools/devtools/extensions#configure-extension-enablement-states 3 | extensions: 4 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | **/dgph 2 | *.mode1v3 3 | *.mode2v3 4 | *.moved-aside 5 | *.pbxuser 6 | *.perspectivev3 7 | **/*sync/ 8 | .sconsign.dblite 9 | .tags* 10 | **/.vagrant/ 11 | **/DerivedData/ 12 | Icon? 13 | **/Pods/ 14 | **/.symlinks/ 15 | profile 16 | xcuserdata 17 | **/.generated/ 18 | Flutter/App.framework 19 | Flutter/Flutter.framework 20 | Flutter/Flutter.podspec 21 | Flutter/Generated.xcconfig 22 | Flutter/ephemeral/ 23 | Flutter/app.flx 24 | Flutter/app.zip 25 | Flutter/flutter_assets/ 26 | Flutter/flutter_export_environment.sh 27 | ServiceDefinitions.json 28 | Runner/GeneratedPluginRegistrant.* 29 | 30 | # Exceptions to above rules. 31 | !default.mode1v3 32 | !default.mode2v3 33 | !default.pbxuser 34 | !default.perspectivev3 35 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 12.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import Flutter 2 | import UIKit 3 | 4 | @main 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- 1 | import Flutter 2 | import UIKit 3 | import XCTest 4 | 5 | class RunnerTests: XCTestCase { 6 | 7 | func testExample() { 8 | // If you add code to the Runner application, consider adding tests here. 9 | // See https://developer.apple.com/documentation/xctest for more information about using XCTest. 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /lib/api/class/episode_class.dart: -------------------------------------------------------------------------------- 1 | class Episode { 2 | final int id; 3 | final String name; 4 | final int episode; 5 | final int season; 6 | final String description; 7 | final String airDate; 8 | final String image; 9 | const Episode({ 10 | required this.id, 11 | required this.name, 12 | required this.episode, 13 | required this.season, 14 | required this.description, 15 | required this.airDate, 16 | required this.image, 17 | }); 18 | } 19 | -------------------------------------------------------------------------------- /lib/api/class/server_class.dart: -------------------------------------------------------------------------------- 1 | import 'package:moviedex/utils/utils.dart'; 2 | 3 | class ServerClass { 4 | String name; 5 | ServerStatus status; 6 | ServerClass({ 7 | required this.name, 8 | this.status = ServerStatus.notTested, 9 | }); 10 | } -------------------------------------------------------------------------------- /lib/api/class/source_class.dart: -------------------------------------------------------------------------------- 1 | class SourceClass { 2 | String quality; 3 | String url; 4 | SourceClass({ 5 | required this.quality, 6 | required this.url 7 | }); 8 | } -------------------------------------------------------------------------------- /lib/api/class/stream_class.dart: -------------------------------------------------------------------------------- 1 | import 'package:moviedex/api/class/source_class.dart'; 2 | import 'package:moviedex/api/class/subtitle_class.dart'; 3 | 4 | class StreamClass { 5 | final String language; 6 | final List sources; 7 | final String url; 8 | final bool isError; 9 | final List? subtitles; 10 | final List? animeEpisodes; 11 | final String? baseUrl; 12 | const StreamClass( 13 | {required this.language, 14 | required this.url, 15 | this.isError = false, 16 | required this.sources, 17 | this.subtitles, 18 | this.animeEpisodes, 19 | this.baseUrl}); 20 | } 21 | -------------------------------------------------------------------------------- /lib/api/class/subtitle_class.dart: -------------------------------------------------------------------------------- 1 | class SubtitleClass { 2 | final String language; 3 | final String url; 4 | final String? label; 5 | 6 | SubtitleClass({ 7 | required this.language, 8 | required this.url, 9 | this.label, 10 | }); 11 | 12 | factory SubtitleClass.fromJson(Map json) { 13 | return SubtitleClass( 14 | language: json['language'] as String, 15 | url: json['url'] as String, 16 | label: json['label'] as String?, 17 | ); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /lib/api/models/cache_model.dart: -------------------------------------------------------------------------------- 1 | import 'package:hive/hive.dart'; 2 | 3 | part 'cache_model.g.dart'; 4 | 5 | @HiveType(typeId: 1) 6 | class CacheModel extends HiveObject { 7 | @HiveField(0) 8 | final String key; 9 | 10 | @HiveField(1) 11 | final dynamic data; 12 | 13 | @HiveField(2) 14 | final DateTime timestamp; 15 | 16 | CacheModel({ 17 | required this.key, 18 | required this.data, 19 | required this.timestamp, 20 | }); 21 | } 22 | -------------------------------------------------------------------------------- /lib/api/models/list_item_model.dart: -------------------------------------------------------------------------------- 1 | import 'package:hive/hive.dart'; 2 | 3 | part 'list_item_model.g.dart'; 4 | 5 | @HiveType(typeId: 5) 6 | class ListItem extends HiveObject { 7 | @HiveField(0) 8 | final int contentId; 9 | 10 | @HiveField(1) 11 | final String title; 12 | 13 | @HiveField(2) 14 | final String poster; 15 | 16 | @HiveField(3) 17 | final String type; 18 | 19 | @HiveField(4) 20 | final DateTime addedAt; 21 | 22 | ListItem({ 23 | required this.contentId, 24 | required this.title, 25 | required this.poster, 26 | required this.type, 27 | required this.addedAt, 28 | }); 29 | 30 | Map toJson() { 31 | return { 32 | 'content_id': contentId, 33 | 'title': title, 34 | 'poster': poster, 35 | 'type': type, 36 | 'added_at': addedAt.toIso8601String(), 37 | }; 38 | } 39 | 40 | factory ListItem.fromJson(Map json) { 41 | return ListItem( 42 | contentId: json['content_id'], 43 | title: json['title'], 44 | poster: json['poster'], 45 | type: json['type'], 46 | addedAt: DateTime.parse(json['added_at']), 47 | ); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /lib/api/secrets.dart: -------------------------------------------------------------------------------- 1 | const appName = "Movie Dex"; 2 | const apiKey = "15d2ea6d0dc1d476efbca3eba2b9bbfb"; 3 | const projectId = "67b6217e00069b2138ad"; 4 | const databaseId = "67b63567000855d020d6"; 5 | const watchHistoryCollection = "67b635f7003b44260721"; 6 | const userListCollection = "67b63616002f2d23365c"; 7 | -------------------------------------------------------------------------------- /lib/components/cached_poster.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:moviedex/services/cached_image_service.dart'; 3 | 4 | class CachedPoster extends StatelessWidget { 5 | final String imageUrl; 6 | final double? width; 7 | final double? height; 8 | final BorderRadius? borderRadius; 9 | final BoxFit fit; 10 | 11 | const CachedPoster({ 12 | super.key, 13 | required this.imageUrl, 14 | this.width, 15 | this.height, 16 | this.borderRadius, 17 | this.fit = BoxFit.cover, 18 | }); 19 | 20 | @override 21 | Widget build(BuildContext context) { 22 | return CachedImageService.instance.getImage( 23 | imageUrl: imageUrl, 24 | width: width, 25 | height: height, 26 | fit: fit, 27 | borderRadius: borderRadius, 28 | ); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /lib/models/download_state_model.dart: -------------------------------------------------------------------------------- 1 | import 'package:hive/hive.dart'; 2 | 3 | part 'download_state_model.g.dart'; 4 | 5 | @HiveType(typeId: 7) 6 | class DownloadState { 7 | @HiveField(0) 8 | final int contentId; 9 | 10 | @HiveField(1) 11 | final String status; // 'downloading', 'paused', 'error', 'completed' 12 | 13 | @HiveField(2) 14 | final double progress; 15 | 16 | @HiveField(3) 17 | final String url; 18 | 19 | @HiveField(4) 20 | final String quality; 21 | 22 | @HiveField(5) 23 | final int? lastSegmentIndex; 24 | 25 | @HiveField(6) 26 | final int? episodeNumber; 27 | 28 | @HiveField(7) 29 | final int? seasonNumber; 30 | 31 | @HiveField(8) 32 | final double speed; 33 | 34 | @HiveField(9) 35 | final double timeLeft; 36 | 37 | DownloadState({ 38 | required this.contentId, 39 | required this.status, 40 | required this.progress, 41 | required this.url, 42 | required this.quality, 43 | this.lastSegmentIndex, 44 | this.episodeNumber, 45 | this.seasonNumber, 46 | this.speed = 0, 47 | this.timeLeft = 0, 48 | }); 49 | } 50 | -------------------------------------------------------------------------------- /lib/pages/downloads_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class DownloadsPage extends StatelessWidget { 4 | const DownloadsPage({super.key}); 5 | 6 | @override 7 | Widget build(BuildContext context) { 8 | return Scaffold( 9 | appBar: AppBar( 10 | title: const Text('Downloads'), 11 | ), 12 | body: Center( 13 | child: Column( 14 | mainAxisAlignment: MainAxisAlignment.center, 15 | children: [ 16 | Icon( 17 | Icons.download_done_rounded, 18 | size: 64, 19 | color: Colors.white.withOpacity(0.5), 20 | ), 21 | const SizedBox(height: 16), 22 | Text( 23 | "No downloads yet", 24 | style: TextStyle( 25 | color: Colors.white.withOpacity(0.7), 26 | fontSize: 16, 27 | ), 28 | ), 29 | ], 30 | ), 31 | ), 32 | ); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #ifndef GENERATED_PLUGIN_REGISTRANT_ 8 | #define GENERATED_PLUGIN_REGISTRANT_ 9 | 10 | #include 11 | 12 | // Registers Flutter plugins. 13 | void fl_register_plugins(FlPluginRegistry* registry); 14 | 15 | #endif // GENERATED_PLUGIN_REGISTRANT_ 16 | -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Generated file, do not edit. 3 | # 4 | 5 | list(APPEND FLUTTER_PLUGIN_LIST 6 | desktop_webview_window 7 | screen_retriever 8 | url_launcher_linux 9 | window_manager 10 | window_to_front 11 | ) 12 | 13 | list(APPEND FLUTTER_FFI_PLUGIN_LIST 14 | ) 15 | 16 | set(PLUGIN_BUNDLED_LIBRARIES) 17 | 18 | foreach(plugin ${FLUTTER_PLUGIN_LIST}) 19 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) 20 | target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) 21 | list(APPEND PLUGIN_BUNDLED_LIBRARIES $) 22 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) 23 | endforeach(plugin) 24 | 25 | foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) 26 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin}) 27 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) 28 | endforeach(ffi_plugin) 29 | -------------------------------------------------------------------------------- /linux/runner/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.13) 2 | project(runner LANGUAGES CXX) 3 | 4 | # Define the application target. To change its name, change BINARY_NAME in the 5 | # top-level CMakeLists.txt, not the value here, or `flutter run` will no longer 6 | # work. 7 | # 8 | # Any new source files that you add to the application should be added here. 9 | add_executable(${BINARY_NAME} 10 | "main.cc" 11 | "my_application.cc" 12 | "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" 13 | ) 14 | 15 | # Apply the standard set of build settings. This can be removed for applications 16 | # that need different build settings. 17 | apply_standard_settings(${BINARY_NAME}) 18 | 19 | # Add preprocessor definitions for the application ID. 20 | add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}") 21 | 22 | # Add dependency libraries. Add any application-specific dependencies here. 23 | target_link_libraries(${BINARY_NAME} PRIVATE flutter) 24 | target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) 25 | 26 | target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") 27 | -------------------------------------------------------------------------------- /linux/runner/main.cc: -------------------------------------------------------------------------------- 1 | #include "my_application.h" 2 | 3 | int main(int argc, char** argv) { 4 | g_autoptr(MyApplication) app = my_application_new(); 5 | return g_application_run(G_APPLICATION(app), argc, argv); 6 | } 7 | -------------------------------------------------------------------------------- /linux/runner/my_application.h: -------------------------------------------------------------------------------- 1 | #ifndef FLUTTER_MY_APPLICATION_H_ 2 | #define FLUTTER_MY_APPLICATION_H_ 3 | 4 | #include 5 | 6 | G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION, 7 | GtkApplication) 8 | 9 | /** 10 | * my_application_new: 11 | * 12 | * Creates a new Flutter-based application. 13 | * 14 | * Returns: a new #MyApplication. 15 | */ 16 | MyApplication* my_application_new(); 17 | 18 | #endif // FLUTTER_MY_APPLICATION_H_ 19 | -------------------------------------------------------------------------------- /local_plugins/uni_links/android/build.gradle: -------------------------------------------------------------------------------- 1 | group 'name.avioli.unilinks' 2 | version '1.0-SNAPSHOT' 3 | 4 | buildscript { 5 | repositories { 6 | google() 7 | mavenCentral() 8 | } 9 | 10 | dependencies { 11 | classpath 'com.android.tools.build:gradle:7.3.0' 12 | } 13 | } 14 | 15 | rootProject.allprojects { 16 | repositories { 17 | google() 18 | mavenCentral() 19 | } 20 | } 21 | 22 | apply plugin: 'com.android.library' 23 | 24 | android { 25 | // Add namespace 26 | namespace 'name.avioli.unilinks' 27 | 28 | compileSdkVersion 34 29 | 30 | defaultConfig { 31 | minSdkVersion 16 32 | targetSdkVersion 34 33 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 34 | } 35 | lintOptions { 36 | disable 'InvalidPackage' 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- 1 | # Flutter-related 2 | **/Flutter/ephemeral/ 3 | **/Pods/ 4 | 5 | # Xcode-related 6 | **/dgph 7 | **/xcuserdata/ 8 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | @main 5 | class AppDelegate: FlutterAppDelegate { 6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { 7 | return true 8 | } 9 | 10 | override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool { 11 | return true 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- 1 | // Application-level settings for the Runner target. 2 | // 3 | // This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the 4 | // future. If not, the values below would default to using the project name when this becomes a 5 | // 'flutter create' template. 6 | 7 | // The application's name. By default this is also the title of the Flutter window. 8 | PRODUCT_NAME = moviedex 9 | 10 | // The application's bundle identifier 11 | PRODUCT_BUNDLE_IDENTIFIER = com.kodify.moviedex.macos 12 | 13 | // The copyright displayed in application information 14 | PRODUCT_COPYRIGHT = Copyright © 2025 com.kodify.moviedex. All rights reserved. 15 | -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Debug.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Release.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- 1 | WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings 2 | GCC_WARN_UNDECLARED_SELECTOR = YES 3 | CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES 4 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE 5 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES 6 | CLANG_WARN_PRAGMA_PACK = YES 7 | CLANG_WARN_STRICT_PROTOTYPES = YES 8 | CLANG_WARN_COMMA = YES 9 | GCC_WARN_STRICT_SELECTOR_MATCH = YES 10 | CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES 11 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES 12 | GCC_WARN_SHADOW = YES 13 | CLANG_WARN_UNREACHABLE_CODE = YES 14 | -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.cs.allow-jit 8 | 9 | com.apple.security.network.server 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | $(FLUTTER_BUILD_NAME) 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSMinimumSystemVersion 24 | $(MACOSX_DEPLOYMENT_TARGET) 25 | NSHumanReadableCopyright 26 | $(PRODUCT_COPYRIGHT) 27 | NSMainNibFile 28 | MainMenu 29 | NSPrincipalClass 30 | NSApplication 31 | 32 | 33 | -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | class MainFlutterWindow: NSWindow { 5 | override func awakeFromNib() { 6 | let flutterViewController = FlutterViewController() 7 | let windowFrame = self.frame 8 | self.contentViewController = flutterViewController 9 | self.setFrame(windowFrame, display: true) 10 | 11 | RegisterGeneratedPlugins(registry: flutterViewController) 12 | 13 | super.awakeFromNib() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.cs.allow-unsigned-executable-memory 8 | 9 | com.apple.security.network.client 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | import XCTest 4 | 5 | class RunnerTests: XCTestCase { 6 | 7 | func testExample() { 8 | // If you add code to the Runner application, consider adding tests here. 9 | // See https://developer.apple.com/documentation/xctest for more information about using XCTest. 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /shorebird.yaml: -------------------------------------------------------------------------------- 1 | # This file is used to configure the Shorebird updater used by your app. 2 | # Learn more at https://docs.shorebird.dev 3 | # This file does not contain any sensitive information and should be checked into version control. 4 | 5 | # Your app_id is the unique identifier assigned to your app. 6 | # It is used to identify your app when requesting patches from Shorebird's servers. 7 | # It is not a secret and can be shared publicly. 8 | app_id: 8c7ebcbd-74f8-4706-8469-7c26d82bfb89 9 | 10 | # auto_update controls if Shorebird should automatically update in the background on launch. 11 | # If auto_update: false, you will need to use package:shorebird_code_push to trigger updates. 12 | # https://pub.dev/packages/shorebird_code_push 13 | # Uncomment the following line to disable automatic updates. 14 | # auto_update: false 15 | -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter widget test. 2 | // 3 | // To perform an interaction with a widget in your test, use the WidgetTester 4 | // utility in the flutter_test package. For example, you can send tap and scroll 5 | // gestures. You can also use WidgetTester to find child widgets in the widget 6 | // tree, read text, and verify that the values of widget properties are correct. 7 | 8 | import 'package:flutter/material.dart'; 9 | import 'package:flutter_test/flutter_test.dart'; 10 | import 'package:moviedex/main.dart'; 11 | 12 | void main() { 13 | testWidgets('App should render splash screen', (WidgetTester tester) async { 14 | // Build our app and trigger a frame. 15 | await tester.pumpWidget(const MyApp()); 16 | 17 | // Verify that splash screen shows up 18 | expect(find.byType(CircularProgressIndicator), findsOneWidget); 19 | }); 20 | } 21 | -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "moviedex", 3 | "short_name": "moviedex", 4 | "start_url": ".", 5 | "display": "standalone", 6 | "background_color": "#hexcode", 7 | "theme_color": "#hexcode", 8 | "description": "A new Flutter project.", 9 | "orientation": "portrait-primary", 10 | "prefer_related_applications": false, 11 | "icons": [ 12 | { 13 | "src": "icons/Icon-192.png", 14 | "sizes": "192x192", 15 | "type": "image/png" 16 | }, 17 | { 18 | "src": "icons/Icon-512.png", 19 | "sizes": "512x512", 20 | "type": "image/png" 21 | }, 22 | { 23 | "src": "icons/Icon-maskable-192.png", 24 | "sizes": "192x192", 25 | "type": "image/png", 26 | "purpose": "maskable" 27 | }, 28 | { 29 | "src": "icons/Icon-maskable-512.png", 30 | "sizes": "512x512", 31 | "type": "image/png", 32 | "purpose": "maskable" 33 | } 34 | ] 35 | } -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral/ 2 | 3 | # Visual Studio user-specific files. 4 | *.suo 5 | *.user 6 | *.userosscache 7 | *.sln.docstates 8 | 9 | # Visual Studio build-related files. 10 | x64/ 11 | x86/ 12 | 13 | # Visual Studio cache files 14 | # files ending in .cache can be ignored 15 | *.[Cc]ache 16 | # but keep track of directories ending in .cache 17 | !*.[Cc]ache/ 18 | -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #ifndef GENERATED_PLUGIN_REGISTRANT_ 8 | #define GENERATED_PLUGIN_REGISTRANT_ 9 | 10 | #include 11 | 12 | // Registers Flutter plugins. 13 | void RegisterPlugins(flutter::PluginRegistry* registry); 14 | 15 | #endif // GENERATED_PLUGIN_REGISTRANT_ 16 | -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Generated file, do not edit. 3 | # 4 | 5 | list(APPEND FLUTTER_PLUGIN_LIST 6 | connectivity_plus 7 | desktop_webview_window 8 | permission_handler_windows 9 | screen_brightness_windows 10 | screen_retriever 11 | share_plus 12 | url_launcher_windows 13 | video_player_win 14 | window_manager 15 | window_to_front 16 | ) 17 | 18 | list(APPEND FLUTTER_FFI_PLUGIN_LIST 19 | ) 20 | 21 | set(PLUGIN_BUNDLED_LIBRARIES) 22 | 23 | foreach(plugin ${FLUTTER_PLUGIN_LIST}) 24 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) 25 | target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) 26 | list(APPEND PLUGIN_BUNDLED_LIBRARIES $) 27 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) 28 | endforeach(plugin) 29 | 30 | foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) 31 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin}) 32 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) 33 | endforeach(ffi_plugin) 34 | -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- 1 | #ifndef RUNNER_FLUTTER_WINDOW_H_ 2 | #define RUNNER_FLUTTER_WINDOW_H_ 3 | 4 | #include 5 | #include 6 | 7 | #include 8 | 9 | #include "win32_window.h" 10 | 11 | // A window that does nothing but host a Flutter view. 12 | class FlutterWindow : public Win32Window { 13 | public: 14 | // Creates a new FlutterWindow hosting a Flutter view running |project|. 15 | explicit FlutterWindow(const flutter::DartProject& project); 16 | virtual ~FlutterWindow(); 17 | 18 | protected: 19 | // Win32Window: 20 | bool OnCreate() override; 21 | void OnDestroy() override; 22 | LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, 23 | LPARAM const lparam) noexcept override; 24 | 25 | private: 26 | // The project to run. 27 | flutter::DartProject project_; 28 | 29 | // The Flutter instance hosted by this window. 30 | std::unique_ptr flutter_controller_; 31 | }; 32 | 33 | #endif // RUNNER_FLUTTER_WINDOW_H_ 34 | -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by Runner.rc 4 | // 5 | #define IDI_APP_ICON 101 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40001 13 | #define _APS_NEXT_CONTROL_VALUE 1001 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodify-js/MovieDex/76d1ddc07f7d489da7ebdea75a9319a08c46faf4/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PerMonitorV2 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- 1 | #ifndef RUNNER_UTILS_H_ 2 | #define RUNNER_UTILS_H_ 3 | 4 | #include 5 | #include 6 | 7 | // Creates a console for the process, and redirects stdout and stderr to 8 | // it for both the runner and the Flutter library. 9 | void CreateAndAttachConsole(); 10 | 11 | // Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string 12 | // encoded in UTF-8. Returns an empty std::string on failure. 13 | std::string Utf8FromUtf16(const wchar_t* utf16_string); 14 | 15 | // Gets the command line arguments passed in as a std::vector, 16 | // encoded in UTF-8. Returns an empty std::vector on failure. 17 | std::vector GetCommandLineArguments(); 18 | 19 | #endif // RUNNER_UTILS_H_ 20 | --------------------------------------------------------------------------------