├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── build-installation-issue.md │ └── feature_request.md └── workflows │ └── publish.yml ├── .gitignore ├── .metadata ├── .pubignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── build.gradle ├── settings.gradle └── src │ ├── main │ ├── AndroidManifest.xml │ └── kotlin │ │ └── co │ │ └── kkiapay │ │ └── kkiapay_flutter_sdk │ │ └── KkiapayFlutterSdkPlugin.kt │ └── test │ └── kotlin │ └── co │ └── kkiapay │ └── kkiapay_flutter_sdk │ └── KkiapayFlutterSdkPluginTest.kt ├── entrypoint.sh ├── example ├── .flutter-plugins-dependencies ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── .cxx │ │ │ └── Debug │ │ │ │ ├── 14h3ex5v │ │ │ │ ├── arm64-v8a │ │ │ │ │ ├── .cmake │ │ │ │ │ │ └── api │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ │ └── reply │ │ │ │ │ │ │ ├── cache-v2-447492757ddd82e70cc1.json │ │ │ │ │ │ │ ├── cmakeFiles-v1-223b17b7b23d94239ddc.json │ │ │ │ │ │ │ ├── codemodel-v2-85da8ddbb402973abce3.json │ │ │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ │ │ └── index-2025-04-21T14-43-06-0902.json │ │ │ │ │ ├── CMakeCache.txt │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ │ └── rules.ninja │ │ │ │ │ ├── additional_project_files.txt │ │ │ │ │ ├── android_gradle_build.json │ │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ │ ├── build.ninja │ │ │ │ │ ├── build_file_index.txt │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ │ ├── prefab_config.json │ │ │ │ │ └── symbol_folder_index.txt │ │ │ │ ├── armeabi-v7a │ │ │ │ │ ├── .cmake │ │ │ │ │ │ └── api │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ │ └── reply │ │ │ │ │ │ │ ├── cache-v2-476dfd3c25242b43d88e.json │ │ │ │ │ │ │ ├── cmakeFiles-v1-538aa2ca1cd7e870933e.json │ │ │ │ │ │ │ ├── codemodel-v2-257b3c5055a120a15102.json │ │ │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ │ │ └── index-2025-04-21T14-43-28-0136.json │ │ │ │ │ ├── CMakeCache.txt │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ │ └── rules.ninja │ │ │ │ │ ├── additional_project_files.txt │ │ │ │ │ ├── android_gradle_build.json │ │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ │ ├── build.ninja │ │ │ │ │ ├── build_file_index.txt │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ │ ├── prefab_config.json │ │ │ │ │ └── symbol_folder_index.txt │ │ │ │ ├── hash_key.txt │ │ │ │ ├── x86 │ │ │ │ │ ├── .cmake │ │ │ │ │ │ └── api │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ │ └── reply │ │ │ │ │ │ │ ├── cache-v2-66366286ff70050733ff.json │ │ │ │ │ │ │ ├── cmakeFiles-v1-c0bc03d1297744853bc2.json │ │ │ │ │ │ │ ├── codemodel-v2-16dfcdf57820e18b1ab9.json │ │ │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ │ │ └── index-2025-04-21T14-43-30-0059.json │ │ │ │ │ ├── CMakeCache.txt │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ │ └── rules.ninja │ │ │ │ │ ├── additional_project_files.txt │ │ │ │ │ ├── android_gradle_build.json │ │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ │ ├── build.ninja │ │ │ │ │ ├── build_file_index.txt │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ │ ├── prefab_config.json │ │ │ │ │ └── symbol_folder_index.txt │ │ │ │ └── x86_64 │ │ │ │ │ ├── .cmake │ │ │ │ │ └── api │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── query │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ └── reply │ │ │ │ │ │ ├── cache-v2-1f89058b4b978462d6a4.json │ │ │ │ │ │ ├── cmakeFiles-v1-2bc3ebb8b0d02c237bed.json │ │ │ │ │ │ ├── codemodel-v2-4e66f7df816e22565501.json │ │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ │ └── index-2025-04-21T14-43-30-0911.json │ │ │ │ │ ├── CMakeCache.txt │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ └── rules.ninja │ │ │ │ │ ├── additional_project_files.txt │ │ │ │ │ ├── android_gradle_build.json │ │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ │ ├── build.ninja │ │ │ │ │ ├── build_file_index.txt │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ │ ├── prefab_config.json │ │ │ │ │ └── symbol_folder_index.txt │ │ │ │ └── 6a3o44u4 │ │ │ │ ├── arm64-v8a │ │ │ │ ├── .cmake │ │ │ │ │ └── api │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── query │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ └── reply │ │ │ │ │ │ ├── cache-v2-77266a17a7ebd31b64fb.json │ │ │ │ │ │ ├── cmakeFiles-v1-ad5fe8533d62d837733f.json │ │ │ │ │ │ ├── codemodel-v2-87e77a3fe2052e3a7e07.json │ │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ │ └── index-2025-06-02T10-00-30-0002.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ └── rules.ninja │ │ │ │ ├── additional_project_files.txt │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ ├── build.ninja │ │ │ │ ├── build_file_index.txt │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ ├── prefab_config.json │ │ │ │ └── symbol_folder_index.txt │ │ │ │ ├── armeabi-v7a │ │ │ │ ├── .cmake │ │ │ │ │ └── api │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── query │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ └── reply │ │ │ │ │ │ ├── cache-v2-0c7889db10148f5d8d07.json │ │ │ │ │ │ ├── cmakeFiles-v1-a96596f008cd99e9eaf8.json │ │ │ │ │ │ ├── codemodel-v2-42c959d8d09966d51951.json │ │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ │ └── index-2025-06-02T10-00-31-0039.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ └── rules.ninja │ │ │ │ ├── additional_project_files.txt │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ ├── build.ninja │ │ │ │ ├── build_file_index.txt │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ ├── prefab_config.json │ │ │ │ └── symbol_folder_index.txt │ │ │ │ ├── hash_key.txt │ │ │ │ ├── x86 │ │ │ │ ├── .cmake │ │ │ │ │ └── api │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── query │ │ │ │ │ │ └── client-agp │ │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ │ └── reply │ │ │ │ │ │ ├── cache-v2-8645c659ff7bdf0feec4.json │ │ │ │ │ │ ├── cmakeFiles-v1-b953f24ac4f65ee8015c.json │ │ │ │ │ │ ├── codemodel-v2-eee707ef292b3495ab9b.json │ │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ │ └── index-2025-06-02T10-00-31-0937.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ └── rules.ninja │ │ │ │ ├── additional_project_files.txt │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ ├── build.ninja │ │ │ │ ├── build_file_index.txt │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ ├── prefab_config.json │ │ │ │ └── symbol_folder_index.txt │ │ │ │ └── x86_64 │ │ │ │ ├── .cmake │ │ │ │ └── api │ │ │ │ │ └── v1 │ │ │ │ │ ├── query │ │ │ │ │ └── client-agp │ │ │ │ │ │ ├── cache-v2 │ │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ │ └── codemodel-v2 │ │ │ │ │ └── reply │ │ │ │ │ ├── cache-v2-d5d19952c42734fd11a1.json │ │ │ │ │ ├── cmakeFiles-v1-b15e7b200b9fc9d68f18.json │ │ │ │ │ ├── codemodel-v2-d5d18d58c1cc48ad6d75.json │ │ │ │ │ ├── directory-.-Debug-f5ebdc15457944623624.json │ │ │ │ │ └── index-2025-06-02T10-00-33-0970.json │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.22.1-g37088a8 │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ │ ├── TargetDirectories.txt │ │ │ │ ├── cmake.check_cache │ │ │ │ └── rules.ninja │ │ │ │ ├── additional_project_files.txt │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ ├── build.ninja │ │ │ │ ├── build_file_index.txt │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── configure_fingerprint.bin │ │ │ │ ├── metadata_generation_command.txt │ │ │ │ ├── prefab_config.json │ │ │ │ └── symbol_folder_index.txt │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ ├── co │ │ │ │ │ └── kkiapay │ │ │ │ │ │ └── kkiapay_flutter_sdk_example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── integration_test │ └── plugin_integration_test.dart ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── flutter_export_environment.sh │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ └── RunnerTests │ │ └── RunnerTests.swift ├── lib │ ├── main.dart │ └── success_screen.dart ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── ephemeral │ │ │ └── .plugin_symlinks │ │ │ │ └── url_launcher_linux │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── main.cc │ ├── my_application.cc │ └── my_application.h ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ ├── GeneratedPluginRegistrant.swift │ │ └── ephemeral │ │ │ ├── Flutter-Generated.xcconfig │ │ │ └── flutter_export_environment.sh │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_1024.png │ │ │ │ ├── app_icon_128.png │ │ │ │ ├── app_icon_16.png │ │ │ │ ├── app_icon_256.png │ │ │ │ ├── app_icon_32.png │ │ │ │ ├── app_icon_512.png │ │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── Configs │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements │ └── RunnerTests │ │ └── RunnerTests.swift ├── pubspec.lock ├── pubspec.yaml ├── test │ └── 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 │ ├── ephemeral │ │ └── .plugin_symlinks │ │ │ └── url_launcher_windows │ ├── 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 ├── ios ├── .gitignore ├── Assets │ └── .gitkeep ├── Classes │ └── KkiapayFlutterSdkPlugin.swift └── kkiapay_flutter_sdk.podspec ├── lib ├── app │ ├── app.dart │ ├── app.locator.dart │ └── app.router.dart ├── kkiapay_flutter_sdk.dart ├── kkiapay_flutter_sdk_method_channel.dart ├── kkiapay_flutter_sdk_platform_interface.dart ├── kkiapay_flutter_sdk_web.dart └── src │ ├── app │ ├── app.dart │ ├── app.locator.dart │ └── app.router.dart │ ├── features │ ├── mobile │ │ ├── kkiapay.dart │ │ ├── notifier.dart │ │ └── view.part.dart │ └── web │ │ └── kkiapay_web.dart │ ├── platform_web.dart │ ├── utils │ ├── config.dart │ └── utils.dart │ ├── view.part.dart │ ├── widget_builder_view.dart │ └── widget_builder_view_model.dart ├── pubspec.lock ├── pubspec.yaml ├── test ├── kkiapay_flutter_sdk_method_channel_test.dart ├── kkiapay_flutter_sdk_test.dart └── widget_test.dart └── web.html /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/build-installation-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/.github/ISSUE_TEMPLATE/build-installation-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/.metadata -------------------------------------------------------------------------------- /.pubignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/.pubignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'kkiapay_flutter_sdk' 2 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/kotlin/co/kkiapay/kkiapay_flutter_sdk/KkiapayFlutterSdkPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/android/src/main/kotlin/co/kkiapay/kkiapay_flutter_sdk/KkiapayFlutterSdkPlugin.kt -------------------------------------------------------------------------------- /android/src/test/kotlin/co/kkiapay/kkiapay_flutter_sdk/KkiapayFlutterSdkPluginTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/android/src/test/kotlin/co/kkiapay/kkiapay_flutter_sdk/KkiapayFlutterSdkPluginTest.kt -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /example/.flutter-plugins-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/.flutter-plugins-dependencies -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/.cmake/api/v1/reply/cache-v2-447492757ddd82e70cc1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/.cmake/api/v1/reply/cache-v2-447492757ddd82e70cc1.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-223b17b7b23d94239ddc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-223b17b7b23d94239ddc.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-85da8ddbb402973abce3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-85da8ddbb402973abce3.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/.cmake/api/v1/reply/index-2025-04-21T14-43-06-0902.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/.cmake/api/v1/reply/index-2025-04-21T14-43-06-0902.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeCache.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/android_gradle_build.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/android_gradle_build_mini.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/build.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/build_file_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/cmake_install.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/configure_fingerprint.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/metadata_generation_command.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/prefab_config.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/arm64-v8a/symbol_folder_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/.cmake/api/v1/reply/cache-v2-476dfd3c25242b43d88e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/.cmake/api/v1/reply/cache-v2-476dfd3c25242b43d88e.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-538aa2ca1cd7e870933e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-538aa2ca1cd7e870933e.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-257b3c5055a120a15102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-257b3c5055a120a15102.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/.cmake/api/v1/reply/index-2025-04-21T14-43-28-0136.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/.cmake/api/v1/reply/index-2025-04-21T14-43-28-0136.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeCache.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/android_gradle_build.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/android_gradle_build_mini.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/build.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/build_file_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/cmake_install.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/configure_fingerprint.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/metadata_generation_command.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/prefab_config.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/armeabi-v7a/symbol_folder_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/hash_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/hash_key.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/.cmake/api/v1/reply/cache-v2-66366286ff70050733ff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/.cmake/api/v1/reply/cache-v2-66366286ff70050733ff.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/.cmake/api/v1/reply/cmakeFiles-v1-c0bc03d1297744853bc2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/.cmake/api/v1/reply/cmakeFiles-v1-c0bc03d1297744853bc2.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/.cmake/api/v1/reply/codemodel-v2-16dfcdf57820e18b1ab9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/.cmake/api/v1/reply/codemodel-v2-16dfcdf57820e18b1ab9.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/.cmake/api/v1/reply/index-2025-04-21T14-43-30-0059.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/.cmake/api/v1/reply/index-2025-04-21T14-43-30-0059.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeCache.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/android_gradle_build.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/android_gradle_build_mini.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/build.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/build_file_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/cmake_install.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/configure_fingerprint.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/metadata_generation_command.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/prefab_config.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86/symbol_folder_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/.cmake/api/v1/reply/cache-v2-1f89058b4b978462d6a4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/.cmake/api/v1/reply/cache-v2-1f89058b4b978462d6a4.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-2bc3ebb8b0d02c237bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-2bc3ebb8b0d02c237bed.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/.cmake/api/v1/reply/codemodel-v2-4e66f7df816e22565501.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/.cmake/api/v1/reply/codemodel-v2-4e66f7df816e22565501.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/.cmake/api/v1/reply/index-2025-04-21T14-43-30-0911.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/.cmake/api/v1/reply/index-2025-04-21T14-43-30-0911.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeCache.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/android_gradle_build.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/android_gradle_build_mini.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/build.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/build_file_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/cmake_install.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/configure_fingerprint.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/metadata_generation_command.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/prefab_config.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/14h3ex5v/x86_64/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/14h3ex5v/x86_64/symbol_folder_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/.cmake/api/v1/reply/cache-v2-77266a17a7ebd31b64fb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/.cmake/api/v1/reply/cache-v2-77266a17a7ebd31b64fb.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-ad5fe8533d62d837733f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-ad5fe8533d62d837733f.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-87e77a3fe2052e3a7e07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-87e77a3fe2052e3a7e07.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/.cmake/api/v1/reply/index-2025-06-02T10-00-30-0002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/.cmake/api/v1/reply/index-2025-06-02T10-00-30-0002.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeCache.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/android_gradle_build.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/android_gradle_build_mini.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/build.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/build_file_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/cmake_install.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/configure_fingerprint.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/metadata_generation_command.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/prefab_config.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/arm64-v8a/symbol_folder_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/.cmake/api/v1/reply/cache-v2-0c7889db10148f5d8d07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/.cmake/api/v1/reply/cache-v2-0c7889db10148f5d8d07.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a96596f008cd99e9eaf8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a96596f008cd99e9eaf8.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-42c959d8d09966d51951.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-42c959d8d09966d51951.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/.cmake/api/v1/reply/index-2025-06-02T10-00-31-0039.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/.cmake/api/v1/reply/index-2025-06-02T10-00-31-0039.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeCache.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/android_gradle_build.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/android_gradle_build_mini.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/build.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/build_file_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/cmake_install.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/configure_fingerprint.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/metadata_generation_command.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/prefab_config.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/armeabi-v7a/symbol_folder_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/hash_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/hash_key.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/.cmake/api/v1/reply/cache-v2-8645c659ff7bdf0feec4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/.cmake/api/v1/reply/cache-v2-8645c659ff7bdf0feec4.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/.cmake/api/v1/reply/cmakeFiles-v1-b953f24ac4f65ee8015c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/.cmake/api/v1/reply/cmakeFiles-v1-b953f24ac4f65ee8015c.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/.cmake/api/v1/reply/codemodel-v2-eee707ef292b3495ab9b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/.cmake/api/v1/reply/codemodel-v2-eee707ef292b3495ab9b.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/.cmake/api/v1/reply/index-2025-06-02T10-00-31-0937.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/.cmake/api/v1/reply/index-2025-06-02T10-00-31-0937.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeCache.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/android_gradle_build.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/android_gradle_build_mini.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/build.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/build_file_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/cmake_install.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/configure_fingerprint.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/metadata_generation_command.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/prefab_config.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86/symbol_folder_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/.cmake/api/v1/reply/cache-v2-d5d19952c42734fd11a1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/.cmake/api/v1/reply/cache-v2-d5d19952c42734fd11a1.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-b15e7b200b9fc9d68f18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-b15e7b200b9fc9d68f18.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/.cmake/api/v1/reply/codemodel-v2-d5d18d58c1cc48ad6d75.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/.cmake/api/v1/reply/codemodel-v2-d5d18d58c1cc48ad6d75.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/.cmake/api/v1/reply/index-2025-06-02T10-00-33-0970.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/.cmake/api/v1/reply/index-2025-06-02T10-00-33-0970.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeCache.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/additional_project_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/android_gradle_build.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/android_gradle_build_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/android_gradle_build_mini.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/build.ninja -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/build_file_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/build_file_index.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/cmake_install.cmake -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/configure_fingerprint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/configure_fingerprint.bin -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/metadata_generation_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/metadata_generation_command.txt -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/prefab_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/prefab_config.json -------------------------------------------------------------------------------- /example/android/app/.cxx/Debug/6a3o44u4/x86_64/symbol_folder_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/.cxx/Debug/6a3o44u4/x86_64/symbol_folder_index.txt -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/co/kkiapay/kkiapay_flutter_sdk_example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/src/main/kotlin/co/kkiapay/kkiapay_flutter_sdk_example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/example/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/integration_test/plugin_integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/integration_test/plugin_integration_test.dart -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/flutter_export_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Flutter/flutter_export_environment.sh -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/success_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/lib/success_screen.dart -------------------------------------------------------------------------------- /example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/linux/flutter/ephemeral/.plugin_symlinks/url_launcher_linux: -------------------------------------------------------------------------------- 1 | /home/pr1nx3/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.1/ -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/linux/main.cc -------------------------------------------------------------------------------- /example/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/linux/my_application.cc -------------------------------------------------------------------------------- /example/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/linux/my_application.h -------------------------------------------------------------------------------- /example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/.gitignore -------------------------------------------------------------------------------- /example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /example/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /example/macos/Flutter/ephemeral/Flutter-Generated.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Flutter/ephemeral/Flutter-Generated.xcconfig -------------------------------------------------------------------------------- /example/macos/Flutter/ephemeral/flutter_export_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Flutter/ephemeral/flutter_export_environment.sh -------------------------------------------------------------------------------- /example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Podfile -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /example/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /example/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /example/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /example/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/test/widget_test.dart -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/.gitignore -------------------------------------------------------------------------------- /example/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/flutter/ephemeral/.plugin_symlinks/url_launcher_windows: -------------------------------------------------------------------------------- 1 | /home/pr1nx3/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.4/ -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /example/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /example/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/runner/resource.h -------------------------------------------------------------------------------- /example/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /example/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /example/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/runner/utils.h -------------------------------------------------------------------------------- /example/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /example/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/example/windows/runner/win32_window.h -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Classes/KkiapayFlutterSdkPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/ios/Classes/KkiapayFlutterSdkPlugin.swift -------------------------------------------------------------------------------- /ios/kkiapay_flutter_sdk.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/ios/kkiapay_flutter_sdk.podspec -------------------------------------------------------------------------------- /lib/app/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/app/app.dart -------------------------------------------------------------------------------- /lib/app/app.locator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/app/app.locator.dart -------------------------------------------------------------------------------- /lib/app/app.router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/app/app.router.dart -------------------------------------------------------------------------------- /lib/kkiapay_flutter_sdk.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/kkiapay_flutter_sdk.dart -------------------------------------------------------------------------------- /lib/kkiapay_flutter_sdk_method_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/kkiapay_flutter_sdk_method_channel.dart -------------------------------------------------------------------------------- /lib/kkiapay_flutter_sdk_platform_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/kkiapay_flutter_sdk_platform_interface.dart -------------------------------------------------------------------------------- /lib/kkiapay_flutter_sdk_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/kkiapay_flutter_sdk_web.dart -------------------------------------------------------------------------------- /lib/src/app/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/src/app/app.dart -------------------------------------------------------------------------------- /lib/src/app/app.locator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/src/app/app.locator.dart -------------------------------------------------------------------------------- /lib/src/app/app.router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/src/app/app.router.dart -------------------------------------------------------------------------------- /lib/src/features/mobile/kkiapay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/src/features/mobile/kkiapay.dart -------------------------------------------------------------------------------- /lib/src/features/mobile/notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/src/features/mobile/notifier.dart -------------------------------------------------------------------------------- /lib/src/features/mobile/view.part.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/src/features/mobile/view.part.dart -------------------------------------------------------------------------------- /lib/src/features/web/kkiapay_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/src/features/web/kkiapay_web.dart -------------------------------------------------------------------------------- /lib/src/platform_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/src/platform_web.dart -------------------------------------------------------------------------------- /lib/src/utils/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/src/utils/config.dart -------------------------------------------------------------------------------- /lib/src/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/src/utils/utils.dart -------------------------------------------------------------------------------- /lib/src/view.part.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/src/view.part.dart -------------------------------------------------------------------------------- /lib/src/widget_builder_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/src/widget_builder_view.dart -------------------------------------------------------------------------------- /lib/src/widget_builder_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/lib/src/widget_builder_view_model.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/kkiapay_flutter_sdk_method_channel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/test/kkiapay_flutter_sdk_method_channel_test.dart -------------------------------------------------------------------------------- /test/kkiapay_flutter_sdk_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/test/kkiapay_flutter_sdk_test.dart -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkiapay/kkiapay-flutter-sdk/HEAD/web.html --------------------------------------------------------------------------------