├── .fvmrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature_request.yaml ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── ci.yml │ ├── clear_workflows.yml │ ├── compile_apk.yml │ ├── compile_arm64_appimage.yml │ ├── linux_build.yml │ ├── release.yml │ ├── test_arm64_deb.yml │ ├── test_arm64_tar.yml │ ├── test_rpm.yml │ ├── test_zip.yml │ └── winget.yml ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── .gitignore ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-playstore.png │ │ │ ├── kotlin │ │ │ │ └── org │ │ │ │ │ └── localsend │ │ │ │ │ └── localsend_app │ │ │ │ │ ├── FastDocumentFile.kt │ │ │ │ │ ├── FileOpener.kt │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ ├── banner.png │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── CHANGELOG.md │ ├── i18n │ │ ├── _missing_translations_ar.json │ │ ├── _missing_translations_az.json │ │ ├── _missing_translations_bg.json │ │ ├── _missing_translations_bn.json │ │ ├── _missing_translations_ca.json │ │ ├── _missing_translations_cs.json │ │ ├── _missing_translations_da.json │ │ ├── _missing_translations_de.json │ │ ├── _missing_translations_el.json │ │ ├── _missing_translations_en_IN.json │ │ ├── _missing_translations_es_ES.json │ │ ├── _missing_translations_et.json │ │ ├── _missing_translations_eu.json │ │ ├── _missing_translations_fa.json │ │ ├── _missing_translations_fi.json │ │ ├── _missing_translations_fil_PH.json │ │ ├── _missing_translations_fr.json │ │ ├── _missing_translations_gl.json │ │ ├── _missing_translations_gu.json │ │ ├── _missing_translations_he.json │ │ ├── _missing_translations_hi.json │ │ ├── _missing_translations_hu.json │ │ ├── _missing_translations_id.json │ │ ├── _missing_translations_it.json │ │ ├── _missing_translations_ja.json │ │ ├── _missing_translations_km.json │ │ ├── _missing_translations_ko.json │ │ ├── _missing_translations_ml.json │ │ ├── _missing_translations_mn.json │ │ ├── _missing_translations_ms.json │ │ ├── _missing_translations_ne.json │ │ ├── _missing_translations_nl.json │ │ ├── _missing_translations_pl.json │ │ ├── _missing_translations_pt_BR.json │ │ ├── _missing_translations_pt_PT.json │ │ ├── _missing_translations_ro.json │ │ ├── _missing_translations_ru.json │ │ ├── _missing_translations_si.json │ │ ├── _missing_translations_sk.json │ │ ├── _missing_translations_sl.json │ │ ├── _missing_translations_sr.json │ │ ├── _missing_translations_sr_Cyrl.json │ │ ├── _missing_translations_sv.json │ │ ├── _missing_translations_ta.json │ │ ├── _missing_translations_th.json │ │ ├── _missing_translations_tr.json │ │ ├── _missing_translations_uk.json │ │ ├── _missing_translations_ur.json │ │ ├── _missing_translations_vi.json │ │ ├── _missing_translations_zh_CN.json │ │ ├── _missing_translations_zh_HK.json │ │ ├── _missing_translations_zh_TW.json │ │ ├── _unused_translations.json │ │ ├── ar.json │ │ ├── az.json │ │ ├── bg.json │ │ ├── bn.json │ │ ├── ca.json │ │ ├── cs.json │ │ ├── da.json │ │ ├── de.json │ │ ├── el.json │ │ ├── en-IN.json │ │ ├── en.json │ │ ├── es-ES.json │ │ ├── et.json │ │ ├── eu.json │ │ ├── fa.json │ │ ├── fi.json │ │ ├── fil-PH.json │ │ ├── fr.json │ │ ├── gl.json │ │ ├── gu.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hu.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── km.json │ │ ├── ko.json │ │ ├── ml.json │ │ ├── mn.json │ │ ├── ms.json │ │ ├── ne.json │ │ ├── nl.json │ │ ├── pl.json │ │ ├── pt-BR.json │ │ ├── pt-PT.json │ │ ├── ro.json │ │ ├── ru.json │ │ ├── si.json │ │ ├── sk.json │ │ ├── sl.json │ │ ├── sr-Cyrl.json │ │ ├── sr.json │ │ ├── sv.json │ │ ├── ta.json │ │ ├── th.json │ │ ├── tr.json │ │ ├── uk.json │ │ ├── ur.json │ │ ├── vi.json │ │ ├── zh-CN.json │ │ ├── zh-HK.json │ │ └── zh-TW.json │ ├── img │ │ ├── gen.py │ │ ├── logo-1024.png │ │ ├── logo-128.png │ │ ├── logo-256.png │ │ ├── logo-32-black.png │ │ ├── logo-32-white.png │ │ ├── logo-32.png │ │ ├── logo-512.png │ │ └── logo.ico │ ├── packaging │ │ └── logo.ico │ ├── privacy_policy.html │ └── web │ │ ├── error-403.html │ │ ├── index.html │ │ └── main.js ├── build.yaml ├── device_info_plus │ ├── device_info_plus │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── android │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── kotlin │ │ │ │ └── dev │ │ │ │ └── fluttercommunity │ │ │ │ └── plus │ │ │ │ └── device_info │ │ │ │ ├── DeviceInfoPlusPlugin.kt │ │ │ │ └── MethodCallHandlerImpl.kt │ │ ├── example │ │ │ ├── .gitignore │ │ │ ├── .metadata │ │ │ ├── README.md │ │ │ ├── android │ │ │ │ ├── .gitignore │ │ │ │ ├── app │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ │ ├── debug │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── kotlin │ │ │ │ │ │ │ └── io │ │ │ │ │ │ │ │ └── flutter │ │ │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ │ └── deviceinfoexample │ │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── profile │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ └── settings.gradle │ │ │ ├── integration_test │ │ │ │ └── device_info_plus_test.dart │ │ │ ├── ios │ │ │ │ ├── .gitignore │ │ │ │ ├── Flutter │ │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ └── Release.xcconfig │ │ │ │ ├── Runner.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── Runner.xcscheme │ │ │ │ ├── Runner.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ ├── Runner │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ │ │ ├── Icon-App-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 │ │ │ ├── linux │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── flutter │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── main.cc │ │ │ │ ├── my_application.cc │ │ │ │ └── my_application.h │ │ │ ├── macos │ │ │ │ ├── .gitignore │ │ │ │ ├── Flutter │ │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ │ └── Flutter-Release.xcconfig │ │ │ │ ├── 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 │ │ │ ├── ohos │ │ │ │ ├── .gitignore │ │ │ │ ├── AppScope │ │ │ │ │ ├── app.json5 │ │ │ │ │ └── resources │ │ │ │ │ │ └── base │ │ │ │ │ │ ├── element │ │ │ │ │ │ └── string.json │ │ │ │ │ │ └── media │ │ │ │ │ │ └── app_icon.png │ │ │ │ ├── build-profile.json5 │ │ │ │ ├── dependencies │ │ │ │ │ ├── hvigor-3.2.1-s.tgz │ │ │ │ │ ├── hvigor-ohos-arkui-x-plugin-2.3.0-s.tgz │ │ │ │ │ └── hvigor-ohos-plugin-3.2.1-s.tgz │ │ │ │ ├── dta │ │ │ │ │ └── icudtl.dat │ │ │ │ ├── entry │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── build-profile.json5 │ │ │ │ │ ├── hvigorfile.ts │ │ │ │ │ ├── libs │ │ │ │ │ │ └── arm64-v8a │ │ │ │ │ │ │ └── libc++_shared.so │ │ │ │ │ ├── oh-package.json5 │ │ │ │ │ └── src │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── ets │ │ │ │ │ │ │ ├── entryability │ │ │ │ │ │ │ │ └── EntryAbility.ets │ │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ │ └── Index.ets │ │ │ │ │ │ ├── module.json5 │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── element │ │ │ │ │ │ │ │ ├── color.json │ │ │ │ │ │ │ │ └── string.json │ │ │ │ │ │ │ ├── media │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ └── profile │ │ │ │ │ │ │ │ └── main_pages.json │ │ │ │ │ │ │ ├── en_US │ │ │ │ │ │ │ └── element │ │ │ │ │ │ │ │ └── string.json │ │ │ │ │ │ │ └── zh_CN │ │ │ │ │ │ │ └── element │ │ │ │ │ │ │ └── string.json │ │ │ │ │ │ └── ohosTest │ │ │ │ │ │ ├── ets │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ ├── Ability.test.ets │ │ │ │ │ │ │ └── List.test.ets │ │ │ │ │ │ ├── testability │ │ │ │ │ │ │ ├── TestAbility.ets │ │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ │ └── Index.ets │ │ │ │ │ │ └── testrunner │ │ │ │ │ │ │ └── OpenHarmonyTestRunner.ts │ │ │ │ │ │ ├── module.json5 │ │ │ │ │ │ └── resources │ │ │ │ │ │ └── base │ │ │ │ │ │ ├── element │ │ │ │ │ │ ├── color.json │ │ │ │ │ │ └── string.json │ │ │ │ │ │ ├── media │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── profile │ │ │ │ │ │ └── test_pages.json │ │ │ │ ├── hvigor │ │ │ │ │ └── hvigor-config.json5 │ │ │ │ ├── hvigorfile.ts │ │ │ │ └── oh-package.json5 │ │ │ ├── pubspec.yaml │ │ │ ├── web │ │ │ │ ├── favicon.png │ │ │ │ ├── icons │ │ │ │ │ ├── Icon-192.png │ │ │ │ │ └── Icon-512.png │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ └── windows │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── flutter │ │ │ │ └── CMakeLists.txt │ │ │ │ └── runner │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Runner.rc │ │ │ │ ├── flutter_window.cpp │ │ │ │ ├── flutter_window.h │ │ │ │ ├── main.cpp │ │ │ │ ├── resource.h │ │ │ │ ├── resources │ │ │ │ └── app_icon.ico │ │ │ │ ├── run_loop.cpp │ │ │ │ ├── run_loop.h │ │ │ │ ├── runner.exe.manifest │ │ │ │ ├── utils.cpp │ │ │ │ ├── utils.h │ │ │ │ ├── win32_window.cpp │ │ │ │ └── win32_window.h │ │ ├── ios │ │ │ ├── Assets │ │ │ │ └── .gitkeep │ │ │ ├── Classes │ │ │ │ ├── FPPDeviceInfoPlusPlugin.h │ │ │ │ └── FPPDeviceInfoPlusPlugin.m │ │ │ └── device_info_plus.podspec │ │ ├── lib │ │ │ ├── device_info_plus.dart │ │ │ └── src │ │ │ │ ├── device_info_plus_linux.dart │ │ │ │ ├── device_info_plus_macos.dart │ │ │ │ ├── device_info_plus_web.dart │ │ │ │ ├── device_info_plus_windows.dart │ │ │ │ └── model │ │ │ │ ├── android_device_info.dart │ │ │ │ ├── ios_device_info.dart │ │ │ │ ├── linux_device_info.dart │ │ │ │ ├── macos_device_info.dart │ │ │ │ ├── ohos_device_info.dart │ │ │ │ ├── web_browser_info.dart │ │ │ │ └── windows_device_info.dart │ │ ├── macos │ │ │ ├── Classes │ │ │ │ ├── CwlSysctl.swift │ │ │ │ ├── DeviceInfoPlusMacosPlugin.swift │ │ │ │ └── SystemUUID.swift │ │ │ └── device_info_plus.podspec │ │ ├── ohos │ │ │ ├── .gitignore │ │ │ ├── build-profile.json5 │ │ │ ├── hvigorfile.ts │ │ │ ├── index.ets │ │ │ ├── oh-package.json5 │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── ets │ │ │ │ │ └── dev │ │ │ │ │ │ └── fluttercommunity │ │ │ │ │ │ └── plus │ │ │ │ │ │ └── device_info │ │ │ │ │ │ └── DeviceInfoPlusOhosPlugin.ets │ │ │ │ ├── module.json5 │ │ │ │ └── resources │ │ │ │ │ ├── base │ │ │ │ │ └── element │ │ │ │ │ │ └── string.json │ │ │ │ │ ├── en_US │ │ │ │ │ └── element │ │ │ │ │ │ └── string.json │ │ │ │ │ └── zh_CN │ │ │ │ │ └── element │ │ │ │ │ └── string.json │ │ │ │ └── test │ │ │ │ ├── List.test.ets │ │ │ │ └── LocalUnit.test.ets │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── device_info_plus_linux_test.dart │ │ │ ├── device_info_plus_web_test.dart │ │ │ ├── device_info_plus_windows_test.dart │ │ │ └── model │ │ │ ├── android_device_info_fake.dart │ │ │ ├── android_device_info_test.dart │ │ │ ├── ios_device_info_test.dart │ │ │ ├── linux_device_info_test.dart │ │ │ ├── macos_device_info_test.dart │ │ │ ├── web_browser_info_test.dart │ │ │ └── windows_device_info_test.dart │ └── device_info_plus_platform_interface │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ ├── device_info_plus_platform_interface.dart │ │ ├── method_channel │ │ │ └── method_channel_device_info.dart │ │ └── model │ │ │ └── base_device_info.dart │ │ ├── pubspec.yaml │ │ └── test │ │ └── method_channel_device_info_test.dart ├── fluttertpc_file_picker │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── suggestion.md │ │ └── workflows │ │ │ ├── main.yml │ │ │ ├── maintainer.yml │ │ │ └── pub.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OAT.xml │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.buildship.core.prefs │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── com │ │ │ └── mr │ │ │ └── flutter │ │ │ └── plugin │ │ │ └── filepicker │ │ │ ├── FileInfo.java │ │ │ ├── FilePickerDelegate.java │ │ │ ├── FilePickerPlugin.java │ │ │ └── FileUtils.java │ ├── example │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.buildship.core.prefs │ │ │ ├── app │ │ │ │ ├── .classpath │ │ │ │ ├── .project │ │ │ │ ├── .settings │ │ │ │ │ └── org.eclipse.buildship.core.prefs │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── mr │ │ │ │ │ │ │ └── flutter │ │ │ │ │ │ │ └── plugin │ │ │ │ │ │ │ └── filepicker │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── mr │ │ │ │ │ │ │ └── flutter │ │ │ │ │ │ │ └── plugin │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ │ │ └── filepicker │ │ │ │ │ │ │ └── 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 │ │ │ └── settings_aar.gradle │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── 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.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── 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 │ │ │ │ ├── File.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── Runner-Bridging-Header.h │ │ │ │ └── main.m │ │ │ └── gpxgenerator_path.gpx │ │ ├── lib │ │ │ ├── generated_plugin_registrant.dart │ │ │ ├── main.dart │ │ │ ├── main_desktop.dart │ │ │ └── src │ │ │ │ └── file_picker_demo.dart │ │ ├── linux │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── flutter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── generated_plugin_registrant.cc │ │ │ │ ├── generated_plugin_registrant.h │ │ │ │ └── generated_plugins.cmake │ │ │ ├── main.cc │ │ │ ├── my_application.cc │ │ │ └── my_application.h │ │ ├── pubspec.yaml │ │ ├── screenshots │ │ │ ├── example_android.gif │ │ │ ├── example_ios.gif │ │ │ ├── example_linux.gif │ │ │ ├── example_macos.png │ │ │ └── example_windows.gif │ │ ├── web │ │ │ ├── favicon.png │ │ │ ├── icons │ │ │ │ ├── Icon-192.png │ │ │ │ └── Icon-512.png │ │ │ ├── index.html │ │ │ └── manifest.json │ │ └── windows │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ │ └── runner │ │ │ ├── CMakeLists.txt │ │ │ ├── Runner.rc │ │ │ ├── flutter_window.cpp │ │ │ ├── flutter_window.h │ │ │ ├── main.cpp │ │ │ ├── resource.h │ │ │ ├── resources │ │ │ └── app_icon.ico │ │ │ ├── runner.exe.manifest │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── win32_window.cpp │ │ │ └── win32_window.h │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── FileInfo.h │ │ │ ├── FileInfo.m │ │ │ ├── FilePickerPlugin.h │ │ │ ├── FilePickerPlugin.m │ │ │ ├── FileUtils.h │ │ │ ├── FileUtils.m │ │ │ ├── ImageUtils.h │ │ │ └── ImageUtils.m │ │ ├── Resources │ │ │ └── PrivacyInfo.xcprivacy │ │ └── file_picker.podspec │ ├── lib │ │ ├── _internal │ │ │ └── file_picker_web.dart │ │ ├── file_picker.dart │ │ └── src │ │ │ ├── exceptions.dart │ │ │ ├── file_picker.dart │ │ │ ├── file_picker_io.dart │ │ │ ├── file_picker_macos.dart │ │ │ ├── file_picker_result.dart │ │ │ ├── linux │ │ │ ├── dialog_handler.dart │ │ │ ├── file_picker_linux.dart │ │ │ ├── kdialog_handler.dart │ │ │ └── qarma_and_zenity_handler.dart │ │ │ ├── platform_file.dart │ │ │ ├── utils.dart │ │ │ └── windows │ │ │ ├── file_picker_windows.dart │ │ │ ├── file_picker_windows_ffi_types.dart │ │ │ └── stub.dart │ ├── ohos │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── example │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── lib │ │ │ │ ├── generated_plugin_registrant.dart │ │ │ │ ├── main.dart │ │ │ │ ├── main_desktop.dart │ │ │ │ └── src │ │ │ │ │ └── file_picker_demo.dart │ │ │ ├── ohos │ │ │ │ ├── .gitignore │ │ │ │ ├── AppScope │ │ │ │ │ ├── app.json5 │ │ │ │ │ └── resources │ │ │ │ │ │ └── base │ │ │ │ │ │ ├── element │ │ │ │ │ │ └── string.json │ │ │ │ │ │ └── media │ │ │ │ │ │ └── app_icon.png │ │ │ │ ├── build-profile.json5 │ │ │ │ ├── entry │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── build-profile.json5 │ │ │ │ │ ├── hvigorfile.ts │ │ │ │ │ ├── oh-package.json5 │ │ │ │ │ └── src │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── ets │ │ │ │ │ │ │ ├── entryability │ │ │ │ │ │ │ │ └── EntryAbility.ets │ │ │ │ │ │ │ ├── pages │ │ │ │ │ │ │ │ └── Index.ets │ │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ │ └── GeneratedPluginRegistrant.ets │ │ │ │ │ │ ├── module.json5 │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── element │ │ │ │ │ │ │ │ ├── color.json │ │ │ │ │ │ │ │ └── string.json │ │ │ │ │ │ │ ├── media │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ └── profile │ │ │ │ │ │ │ │ └── main_pages.json │ │ │ │ │ │ │ ├── en_US │ │ │ │ │ │ │ └── element │ │ │ │ │ │ │ │ └── string.json │ │ │ │ │ │ │ └── zh_CN │ │ │ │ │ │ │ └── element │ │ │ │ │ │ │ └── string.json │ │ │ │ │ │ └── ohosTest │ │ │ │ │ │ ├── ets │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ ├── Ability.test.ets │ │ │ │ │ │ │ └── List.test.ets │ │ │ │ │ │ ├── testability │ │ │ │ │ │ │ ├── TestAbility.ets │ │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ │ └── Index.ets │ │ │ │ │ │ └── testrunner │ │ │ │ │ │ │ └── OpenHarmonyTestRunner.ts │ │ │ │ │ │ ├── module.json5 │ │ │ │ │ │ └── resources │ │ │ │ │ │ └── base │ │ │ │ │ │ ├── element │ │ │ │ │ │ ├── color.json │ │ │ │ │ │ └── string.json │ │ │ │ │ │ ├── media │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── profile │ │ │ │ │ │ └── test_pages.json │ │ │ │ ├── hvigor │ │ │ │ │ └── hvigor-config.json5 │ │ │ │ ├── hvigorfile.ts │ │ │ │ └── oh-package.json5 │ │ │ ├── pubspec.yaml │ │ │ └── test │ │ │ │ └── widget_test.dart │ │ ├── lib │ │ │ ├── file_picker_ohos.dart │ │ │ └── src │ │ │ │ ├── exceptions.dart │ │ │ │ ├── file_picker.dart │ │ │ │ ├── file_picker_io.dart │ │ │ │ ├── file_picker_macos.dart │ │ │ │ ├── file_picker_result.dart │ │ │ │ ├── linux │ │ │ │ ├── dialog_handler.dart │ │ │ │ ├── file_picker_linux.dart │ │ │ │ ├── kdialog_handler.dart │ │ │ │ └── qarma_and_zenity_handler.dart │ │ │ │ ├── platform_file.dart │ │ │ │ ├── utils.dart │ │ │ │ └── windows │ │ │ │ ├── file_picker_windows.dart │ │ │ │ ├── file_picker_windows_ffi_types.dart │ │ │ │ └── stub.dart │ │ ├── ohos │ │ │ ├── .gitignore │ │ │ ├── build-profile.json5 │ │ │ ├── hvigorfile.ts │ │ │ ├── index.ets │ │ │ ├── oh-package.json5 │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── ets │ │ │ │ └── components │ │ │ │ │ └── plugin │ │ │ │ │ ├── FileInfo.ets │ │ │ │ │ ├── FilePickerPlugin.ets │ │ │ │ │ ├── FilePlckerDelegate.ets │ │ │ │ │ └── FileUtils.ets │ │ │ │ └── module.json5 │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── file_picker_test.dart │ ├── pubspec.yaml │ └── test │ │ ├── common.dart │ │ ├── file_picker_macos_test.dart │ │ ├── file_picker_utils_test.dart │ │ ├── file_picker_windows_test.dart │ │ ├── linux │ │ ├── dialog_handler_test.dart │ │ ├── kdialog_handler_test.dart │ │ └── qarma_and_zenity_handler_test.dart │ │ └── test_files │ │ ├── franz-michael-schneeberger-unsplash.jpg │ │ ├── test.pdf │ │ └── test.yml ├── frb_dart │ ├── .gitignore │ ├── .pubignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── bin │ │ └── flutter_rust_bridge.dart │ ├── build.yaml │ ├── example │ │ └── README.md │ ├── lib │ │ ├── flutter_rust_bridge.dart │ │ ├── flutter_rust_bridge_for_generated.dart │ │ ├── flutter_rust_bridge_for_generated_common.dart │ │ ├── flutter_rust_bridge_for_generated_io.dart │ │ ├── flutter_rust_bridge_for_generated_web.dart │ │ └── src │ │ │ ├── cli │ │ │ ├── build_web │ │ │ │ ├── entrypoint.dart │ │ │ │ ├── entrypoint.g.dart │ │ │ │ └── executor.dart │ │ │ ├── cli_utils.dart │ │ │ └── run_command.dart │ │ │ ├── codec │ │ │ ├── base.dart │ │ │ ├── cst.dart │ │ │ ├── dco.dart │ │ │ ├── pde.dart │ │ │ └── sse.dart │ │ │ ├── consts.dart │ │ │ ├── dart_c_object_into_dart │ │ │ ├── _io.dart │ │ │ ├── _web.dart │ │ │ └── dart_c_object_into_dart.dart │ │ │ ├── dart_opaque │ │ │ ├── _common.dart │ │ │ ├── _io.dart │ │ │ ├── _web.dart │ │ │ └── dart_opaque.dart │ │ │ ├── droppable │ │ │ ├── _common.dart │ │ │ ├── _io.dart │ │ │ ├── _web.dart │ │ │ └── droppable.dart │ │ │ ├── exceptions.dart │ │ │ ├── ffigen_generated │ │ │ ├── intermediate │ │ │ │ ├── allo_isolate.h │ │ │ │ └── frb_rust.h │ │ │ └── multi_package.dart │ │ │ ├── generalized_frb_rust_binding │ │ │ ├── _io.dart │ │ │ ├── _web.dart │ │ │ └── generalized_frb_rust_binding.dart │ │ │ ├── generalized_isolate │ │ │ ├── _io.dart │ │ │ ├── _web.dart │ │ │ └── generalized_isolate.dart │ │ │ ├── generalized_typed_data │ │ │ ├── _io.dart │ │ │ ├── _web.dart │ │ │ ├── common.dart │ │ │ └── generalized_typed_data.dart │ │ │ ├── generalized_uint8list │ │ │ ├── _common.dart │ │ │ ├── _io.dart │ │ │ ├── _web.dart │ │ │ ├── adapted_uint8list.dart │ │ │ ├── generalized_uint8list.dart │ │ │ └── rust_vec_u8.dart │ │ │ ├── loader │ │ │ ├── _common.dart │ │ │ ├── _io.dart │ │ │ ├── _web.dart │ │ │ └── loader.dart │ │ │ ├── main_components │ │ │ ├── api.dart │ │ │ ├── api_impl.dart │ │ │ ├── entrypoint.dart │ │ │ ├── handler.dart │ │ │ ├── port_manager.dart │ │ │ └── wire.dart │ │ │ ├── manual_impl │ │ │ ├── _common.dart │ │ │ ├── _io.dart │ │ │ ├── _web.dart │ │ │ └── manual_impl.dart │ │ │ ├── misc │ │ │ ├── box.dart │ │ │ ├── rust_opaque.dart │ │ │ ├── simple_disposable.dart │ │ │ └── version.dart │ │ │ ├── platform_types │ │ │ ├── _io.dart │ │ │ ├── _web.dart │ │ │ └── platform_types.dart │ │ │ ├── platform_utils │ │ │ ├── _io.dart │ │ │ ├── _web.dart │ │ │ └── platform_utils.dart │ │ │ ├── rust_arc │ │ │ ├── _common.dart │ │ │ ├── _io.dart │ │ │ ├── _web.dart │ │ │ └── rust_arc.dart │ │ │ ├── stream │ │ │ └── stream_sink.dart │ │ │ ├── task.dart │ │ │ ├── third_party │ │ │ └── flutter_foundation_serialization │ │ │ │ ├── _io.dart │ │ │ │ ├── _web.dart │ │ │ │ ├── extension_buffers.dart │ │ │ │ ├── read_buffer.dart │ │ │ │ └── write_buffer.dart │ │ │ ├── utils │ │ │ ├── base_lazy_port_manager.dart │ │ │ ├── port_generator.dart │ │ │ ├── single_complete_port.dart │ │ │ └── timeout_handler_mixin.dart │ │ │ └── wasm_module │ │ │ └── _web.dart │ ├── pubspec.yaml │ └── test │ │ ├── README.md │ │ ├── droppable_test.dart │ │ ├── entrypoint_test.dart │ │ ├── exceptions_test.dart │ │ ├── platform_types_test.dart │ │ ├── run_command_test.dart │ │ ├── task_test.dart │ │ ├── typed_data_io_test.dart │ │ └── typed_data_test.dart ├── image_picker │ ├── image_picker │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example │ │ │ ├── README.md │ │ │ ├── android │ │ │ │ ├── app │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── gradle │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ │ └── src │ │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── flutter │ │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ ├── DartIntegrationTest.java │ │ │ │ │ │ │ └── imagepickerexample │ │ │ │ │ │ │ └── FlutterActivityTest.java │ │ │ │ │ │ ├── debug │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── flutter │ │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ └── imagepickerexample │ │ │ │ │ │ │ └── ImagePickerTestActivity.java │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── 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 │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ └── settings.gradle │ │ │ ├── integration_test │ │ │ │ └── image_picker_test.dart │ │ │ ├── ios │ │ │ │ ├── Flutter │ │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ └── Release.xcconfig │ │ │ │ ├── Podfile │ │ │ │ ├── Runner.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── Runner.xcscheme │ │ │ │ │ │ └── RunnerUITests.xcscheme │ │ │ │ ├── Runner.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Runner │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── main.m │ │ │ │ ├── TestImages │ │ │ │ │ ├── gifImage.gif │ │ │ │ │ ├── jpgImage.jpg │ │ │ │ │ ├── pngImage.png │ │ │ │ │ └── webpImage.webp │ │ │ │ └── image_picker_exampleTests │ │ │ │ │ └── Info.plist │ │ │ ├── lib │ │ │ │ ├── main.dart │ │ │ │ └── readme_excerpts.dart │ │ │ ├── linux │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── flutter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── generated_plugins.cmake │ │ │ │ ├── main.cc │ │ │ │ ├── my_application.cc │ │ │ │ └── my_application.h │ │ │ ├── macos │ │ │ │ ├── .gitignore │ │ │ │ ├── Flutter │ │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ │ └── Flutter-Release.xcconfig │ │ │ │ ├── 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 │ │ │ ├── pubspec.yaml │ │ │ ├── test │ │ │ │ └── readme_excerpts_test.dart │ │ │ ├── test_driver │ │ │ │ └── integration_test.dart │ │ │ ├── web │ │ │ │ ├── favicon.png │ │ │ │ ├── icons │ │ │ │ │ ├── Icon-192.png │ │ │ │ │ └── Icon-512.png │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ └── windows │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── flutter │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── 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 │ │ ├── lib │ │ │ └── image_picker.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── image_picker_test.dart │ │ │ └── image_picker_test.mocks.dart │ ├── image_picker_android │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── android │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── flutter │ │ │ │ │ │ └── plugins │ │ │ │ │ │ └── imagepicker │ │ │ │ │ │ ├── ExifDataCopier.java │ │ │ │ │ │ ├── FileUtils.java │ │ │ │ │ │ ├── ImagePickerCache.java │ │ │ │ │ │ ├── ImagePickerDelegate.java │ │ │ │ │ │ ├── ImagePickerFileProvider.java │ │ │ │ │ │ ├── ImagePickerPlugin.java │ │ │ │ │ │ ├── ImagePickerUtils.java │ │ │ │ │ │ ├── ImageResizer.java │ │ │ │ │ │ └── Messages.java │ │ │ │ └── res │ │ │ │ │ └── xml │ │ │ │ │ └── flutter_image_picker_file_paths.xml │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── flutter │ │ │ │ │ └── plugins │ │ │ │ │ └── imagepicker │ │ │ │ │ ├── FileUtilTest.java │ │ │ │ │ ├── ImagePickerCacheTest.java │ │ │ │ │ ├── ImagePickerDelegateTest.java │ │ │ │ │ ├── ImagePickerPluginTest.java │ │ │ │ │ └── ImageResizerTest.java │ │ │ │ └── resources │ │ │ │ ├── flutter_image.svg │ │ │ │ ├── mockito-extensions │ │ │ │ └── org.mockito.plugins.MockMaker │ │ │ │ └── pngImage.png │ │ ├── example │ │ │ ├── .pluginToolsConfig.yaml │ │ │ ├── README.md │ │ │ ├── android │ │ │ │ ├── app │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── gradle │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ │ └── src │ │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── flutter │ │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ ├── DartIntegrationTest.java │ │ │ │ │ │ │ └── imagepickerexample │ │ │ │ │ │ │ ├── FlutterActivityTest.java │ │ │ │ │ │ │ ├── ImagePickerPickTest.java │ │ │ │ │ │ │ └── ImagePickerTest.java │ │ │ │ │ │ ├── debug │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── flutter │ │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ └── imagepickerexample │ │ │ │ │ │ │ ├── DriverExtensionActivity.java │ │ │ │ │ │ │ ├── DummyContentProvider.java │ │ │ │ │ │ │ └── ImagePickerTestActivity.java │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ └── raw │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ └── settings.gradle │ │ │ ├── integration_test │ │ │ │ └── image_picker_test.dart │ │ │ ├── lib │ │ │ │ └── main.dart │ │ │ ├── pubspec.yaml │ │ │ └── test_driver │ │ │ │ └── integration_test.dart │ │ ├── lib │ │ │ ├── image_picker_android.dart │ │ │ └── src │ │ │ │ └── messages.g.dart │ │ ├── pigeons │ │ │ ├── copyright.txt │ │ │ └── messages.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── image_picker_android_test.dart │ │ │ └── test_api.g.dart │ ├── image_picker_for_web │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example │ │ │ ├── README.md │ │ │ ├── integration_test │ │ │ │ ├── image_picker_for_web_test.dart │ │ │ │ └── image_resizer_test.dart │ │ │ ├── lib │ │ │ │ └── main.dart │ │ │ ├── pubspec.yaml │ │ │ ├── test_driver │ │ │ │ └── integration_test.dart │ │ │ └── web │ │ │ │ └── index.html │ │ ├── lib │ │ │ ├── image_picker_for_web.dart │ │ │ └── src │ │ │ │ ├── image_resizer.dart │ │ │ │ └── image_resizer_utils.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── README.md │ │ │ ├── image_resizer_utils_test.dart │ │ │ └── tests_exist_elsewhere_test.dart │ ├── image_picker_ios │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example │ │ │ ├── README.md │ │ │ ├── integration_test │ │ │ │ └── image_picker_test.dart │ │ │ ├── ios │ │ │ │ ├── Flutter │ │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ └── Release.xcconfig │ │ │ │ ├── Podfile │ │ │ │ ├── Runner.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── Runner.xcscheme │ │ │ │ │ │ └── RunnerUITests.xcscheme │ │ │ │ ├── Runner.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Runner │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── main.m │ │ │ │ ├── RunnerTests │ │ │ │ │ ├── ImagePickerPluginTests.m │ │ │ │ │ ├── ImagePickerTestImages.h │ │ │ │ │ ├── ImagePickerTestImages.m │ │ │ │ │ ├── ImageUtilTests.m │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MetaDataUtilTests.m │ │ │ │ │ ├── PhotoAssetUtilTests.m │ │ │ │ │ └── PickerSaveImageToPathOperationTests.m │ │ │ │ ├── RunnerUITests │ │ │ │ │ ├── ImagePickerFromGalleryUITests.m │ │ │ │ │ ├── ImagePickerFromLimitedGalleryUITests.m │ │ │ │ │ └── Info.plist │ │ │ │ ├── TestImages │ │ │ │ │ ├── bmpImage.bmp │ │ │ │ │ ├── gifImage.gif │ │ │ │ │ ├── heicImage.heic │ │ │ │ │ ├── icnsImage.icns │ │ │ │ │ ├── icoImage.ico │ │ │ │ │ ├── jpgImage.jpg │ │ │ │ │ ├── jpgImageWithRightOrientation.jpg │ │ │ │ │ ├── pngImage.png │ │ │ │ │ ├── proRawImage.dng │ │ │ │ │ ├── svgImage.svg │ │ │ │ │ ├── tiffImage.tiff │ │ │ │ │ └── webpImage.webp │ │ │ │ └── image_picker_exampleTests │ │ │ │ │ └── Info.plist │ │ │ ├── lib │ │ │ │ └── main.dart │ │ │ ├── pubspec.yaml │ │ │ └── test_driver │ │ │ │ └── integration_test.dart │ │ ├── ios │ │ │ ├── Assets │ │ │ │ └── .gitkeep │ │ │ ├── Classes │ │ │ │ ├── FLTImagePickerImageUtil.h │ │ │ │ ├── FLTImagePickerImageUtil.m │ │ │ │ ├── FLTImagePickerMetaDataUtil.h │ │ │ │ ├── FLTImagePickerMetaDataUtil.m │ │ │ │ ├── FLTImagePickerPhotoAssetUtil.h │ │ │ │ ├── FLTImagePickerPhotoAssetUtil.m │ │ │ │ ├── FLTImagePickerPlugin.h │ │ │ │ ├── FLTImagePickerPlugin.m │ │ │ │ ├── FLTImagePickerPlugin_Test.h │ │ │ │ ├── FLTPHPickerSaveImageToPathOperation.h │ │ │ │ ├── FLTPHPickerSaveImageToPathOperation.m │ │ │ │ ├── ImagePickerPlugin.modulemap │ │ │ │ ├── image_picker_ios-umbrella.h │ │ │ │ ├── messages.g.h │ │ │ │ └── messages.g.m │ │ │ └── image_picker_ios.podspec │ │ ├── lib │ │ │ ├── image_picker_ios.dart │ │ │ └── src │ │ │ │ └── messages.g.dart │ │ ├── pigeons │ │ │ ├── copyright.txt │ │ │ └── messages.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── image_picker_ios_test.dart │ │ │ └── test_api.g.dart │ ├── image_picker_linux │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── main.dart │ │ │ ├── linux │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── flutter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── generated_plugins.cmake │ │ │ │ ├── main.cc │ │ │ │ ├── my_application.cc │ │ │ │ └── my_application.h │ │ │ └── pubspec.yaml │ │ ├── lib │ │ │ └── image_picker_linux.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── image_picker_linux_test.dart │ │ │ └── image_picker_linux_test.mocks.dart │ ├── image_picker_macos │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── main.dart │ │ │ ├── macos │ │ │ │ ├── .gitignore │ │ │ │ ├── Flutter │ │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ │ └── Flutter-Release.xcconfig │ │ │ │ ├── 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 │ │ │ └── pubspec.yaml │ │ ├── lib │ │ │ └── image_picker_macos.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── image_picker_macos_test.dart │ │ │ └── image_picker_macos_test.mocks.dart │ ├── image_picker_ohos │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example │ │ │ ├── README.md │ │ │ ├── integration_test │ │ │ │ └── image_picker_test.dart │ │ │ ├── lib │ │ │ │ ├── integration_test │ │ │ │ │ └── image_picker_test.dart │ │ │ │ └── main.dart │ │ │ ├── ohos │ │ │ │ ├── .gitignore │ │ │ │ ├── AppScope │ │ │ │ │ ├── app.json5 │ │ │ │ │ └── resources │ │ │ │ │ │ └── base │ │ │ │ │ │ ├── element │ │ │ │ │ │ └── string.json │ │ │ │ │ │ └── media │ │ │ │ │ │ └── app_icon.png │ │ │ │ ├── build-profile.json5 │ │ │ │ ├── entry │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── build-profile.json5 │ │ │ │ │ ├── hvigorfile.ts │ │ │ │ │ ├── libs │ │ │ │ │ │ └── arm64-v8a │ │ │ │ │ │ │ └── libc++_shared.so │ │ │ │ │ ├── oh-package.json5 │ │ │ │ │ └── src │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── ets │ │ │ │ │ │ │ ├── entryability │ │ │ │ │ │ │ │ └── EntryAbility.ets │ │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ │ └── Index.ets │ │ │ │ │ │ ├── module.json5 │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── element │ │ │ │ │ │ │ │ ├── color.json │ │ │ │ │ │ │ │ └── string.json │ │ │ │ │ │ │ ├── media │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ └── profile │ │ │ │ │ │ │ │ └── main_pages.json │ │ │ │ │ │ │ ├── en_US │ │ │ │ │ │ │ └── element │ │ │ │ │ │ │ │ └── string.json │ │ │ │ │ │ │ └── zh_CN │ │ │ │ │ │ │ └── element │ │ │ │ │ │ │ └── string.json │ │ │ │ │ │ ├── ohosTest │ │ │ │ │ │ ├── ets │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ ├── Ability.test.ets │ │ │ │ │ │ │ │ └── List.test.ets │ │ │ │ │ │ │ ├── testability │ │ │ │ │ │ │ │ ├── TestAbility.ets │ │ │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ │ │ └── Index.ets │ │ │ │ │ │ │ └── testrunner │ │ │ │ │ │ │ │ └── OpenHarmonyTestRunner.ts │ │ │ │ │ │ ├── module.json5 │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ └── base │ │ │ │ │ │ │ ├── element │ │ │ │ │ │ │ ├── color.json │ │ │ │ │ │ │ └── string.json │ │ │ │ │ │ │ ├── media │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ └── profile │ │ │ │ │ │ │ └── test_pages.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── List.test.ets │ │ │ │ │ │ └── LocalUnit.test.ets │ │ │ │ ├── hvigor │ │ │ │ │ └── hvigor-config.json5 │ │ │ │ ├── hvigorfile.ts │ │ │ │ └── oh-package.json5 │ │ │ ├── pubspec.yaml │ │ │ └── test_driver │ │ │ │ └── integration_test.dart │ │ ├── lib │ │ │ ├── image_picker_ohos.dart │ │ │ └── src │ │ │ │ └── messages.g.dart │ │ ├── ohos │ │ │ ├── .gitignore │ │ │ ├── build-profile.json5 │ │ │ ├── hvigorfile.ts │ │ │ ├── index.ets │ │ │ ├── oh-package.json5 │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── ets │ │ │ │ └── image_picker │ │ │ │ │ ├── ExifDataCopier.ets │ │ │ │ │ ├── FileUtils.ets │ │ │ │ │ ├── ImagePickerCache.ets │ │ │ │ │ ├── ImagePickerDelegate.ets │ │ │ │ │ ├── ImagePickerPlugin.ets │ │ │ │ │ ├── ImagePickerUtils.ets │ │ │ │ │ ├── ImageResizer.ets │ │ │ │ │ └── Messages.ets │ │ │ │ └── module.json5 │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── image_picker_ohos_test.dart │ │ │ └── test_api.g.dart │ ├── image_picker_platform_interface │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── image_picker_platform_interface.dart │ │ │ └── src │ │ │ │ ├── method_channel │ │ │ │ └── method_channel_image_picker.dart │ │ │ │ ├── platform_interface │ │ │ │ └── image_picker_platform.dart │ │ │ │ └── types │ │ │ │ ├── camera_delegate.dart │ │ │ │ ├── camera_device.dart │ │ │ │ ├── image_options.dart │ │ │ │ ├── image_source.dart │ │ │ │ ├── lost_data_response.dart │ │ │ │ ├── media_options.dart │ │ │ │ ├── media_selection_type.dart │ │ │ │ ├── multi_image_picker_options.dart │ │ │ │ ├── picked_file │ │ │ │ ├── base.dart │ │ │ │ ├── html.dart │ │ │ │ ├── io.dart │ │ │ │ ├── lost_data.dart │ │ │ │ ├── picked_file.dart │ │ │ │ └── unsupported.dart │ │ │ │ ├── retrieve_type.dart │ │ │ │ └── types.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── assets │ │ │ └── hello.txt │ │ │ ├── image_picker_platform_test.dart │ │ │ ├── method_channel_image_picker_test.dart │ │ │ ├── picked_file_html_test.dart │ │ │ └── picked_file_io_test.dart │ └── image_picker_windows │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example │ │ ├── README.md │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── windows │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ └── 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 │ │ ├── lib │ │ └── image_picker_windows.dart │ │ ├── pubspec.yaml │ │ └── test │ │ ├── image_picker_windows_test.dart │ │ └── image_picker_windows_test.mocks.dart ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── MyLocalSendStoreKit.storekit │ ├── 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-1024.png │ │ │ │ ├── Icon-App-20.png │ │ │ │ ├── Icon-App-20@2x.png │ │ │ │ ├── Icon-App-20@3x.png │ │ │ │ ├── Icon-App-29.png │ │ │ │ ├── Icon-App-29@2x.png │ │ │ │ ├── Icon-App-29@3x.png │ │ │ │ ├── Icon-App-40.png │ │ │ │ ├── Icon-App-40@2x.png │ │ │ │ ├── Icon-App-40@3x.png │ │ │ │ ├── Icon-App-60@2x.png │ │ │ │ ├── Icon-App-60@3x.png │ │ │ │ ├── Icon-App-76.png │ │ │ │ ├── Icon-App-76@2x.png │ │ │ │ └── Icon-App-83.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 │ │ └── Runner.entitlements │ └── ShareExtension │ │ ├── Base.lproj │ │ └── MainInterface.storyboard │ │ ├── Info.plist │ │ ├── ShareExtension.entitlements │ │ └── ShareViewController.swift ├── lib │ ├── config │ │ ├── init.dart │ │ ├── init_error.dart │ │ ├── refena.dart │ │ └── theme.dart │ ├── gen │ │ ├── assets.gen.dart │ │ ├── strings.g.dart │ │ ├── strings_ar.g.dart │ │ ├── strings_az.g.dart │ │ ├── strings_bg.g.dart │ │ ├── strings_bn.g.dart │ │ ├── strings_ca.g.dart │ │ ├── strings_cs.g.dart │ │ ├── strings_da.g.dart │ │ ├── strings_de.g.dart │ │ ├── strings_el.g.dart │ │ ├── strings_en.g.dart │ │ ├── strings_en_IN.g.dart │ │ ├── strings_es_ES.g.dart │ │ ├── strings_et.g.dart │ │ ├── strings_eu.g.dart │ │ ├── strings_fa.g.dart │ │ ├── strings_fi.g.dart │ │ ├── strings_fil_PH.g.dart │ │ ├── strings_fr.g.dart │ │ ├── strings_gl.g.dart │ │ ├── strings_gu.g.dart │ │ ├── strings_he.g.dart │ │ ├── strings_hi.g.dart │ │ ├── strings_hu.g.dart │ │ ├── strings_id.g.dart │ │ ├── strings_it.g.dart │ │ ├── strings_ja.g.dart │ │ ├── strings_km.g.dart │ │ ├── strings_ko.g.dart │ │ ├── strings_ml.g.dart │ │ ├── strings_mn.g.dart │ │ ├── strings_ms.g.dart │ │ ├── strings_ne.g.dart │ │ ├── strings_nl.g.dart │ │ ├── strings_pl.g.dart │ │ ├── strings_pt_BR.g.dart │ │ ├── strings_pt_PT.g.dart │ │ ├── strings_ro.g.dart │ │ ├── strings_ru.g.dart │ │ ├── strings_si.g.dart │ │ ├── strings_sk.g.dart │ │ ├── strings_sl.g.dart │ │ ├── strings_sr.g.dart │ │ ├── strings_sr_Cyrl.g.dart │ │ ├── strings_sv.g.dart │ │ ├── strings_ta.g.dart │ │ ├── strings_th.g.dart │ │ ├── strings_tr.g.dart │ │ ├── strings_uk.g.dart │ │ ├── strings_ur.g.dart │ │ ├── strings_vi.g.dart │ │ ├── strings_zh_CN.g.dart │ │ ├── strings_zh_HK.g.dart │ │ └── strings_zh_TW.g.dart │ ├── main.dart │ ├── model │ │ ├── cross_file.dart │ │ ├── cross_file.mapper.dart │ │ ├── log_entry.dart │ │ ├── log_entry.mapper.dart │ │ ├── persistence │ │ │ ├── color_mode.dart │ │ │ ├── favorite_device.dart │ │ │ ├── favorite_device.mapper.dart │ │ │ ├── receive_history_entry.dart │ │ │ └── receive_history_entry.mapper.dart │ │ ├── send_mode.dart │ │ └── state │ │ │ ├── nearby_devices_state.dart │ │ │ ├── nearby_devices_state.mapper.dart │ │ │ ├── network_state.dart │ │ │ ├── network_state.mapper.dart │ │ │ ├── purchase_state.dart │ │ │ ├── purchase_state.mapper.dart │ │ │ ├── send │ │ │ ├── send_session_state.dart │ │ │ ├── send_session_state.mapper.dart │ │ │ ├── sending_file.dart │ │ │ ├── sending_file.mapper.dart │ │ │ └── web │ │ │ │ ├── web_send_file.dart │ │ │ │ ├── web_send_file.mapper.dart │ │ │ │ ├── web_send_session.dart │ │ │ │ ├── web_send_session.mapper.dart │ │ │ │ ├── web_send_state.dart │ │ │ │ └── web_send_state.mapper.dart │ │ │ ├── server │ │ │ ├── receive_session_state.dart │ │ │ ├── receive_session_state.mapper.dart │ │ │ ├── receiving_file.dart │ │ │ ├── receiving_file.mapper.dart │ │ │ ├── server_state.dart │ │ │ └── server_state.mapper.dart │ │ │ ├── settings_state.dart │ │ │ └── settings_state.mapper.dart │ ├── pages │ │ ├── about │ │ │ ├── about_page.dart │ │ │ ├── contributors.dart │ │ │ ├── packagers.dart │ │ │ └── translators.dart │ │ ├── apk_picker_page.dart │ │ ├── changelog_page.dart │ │ ├── debug │ │ │ ├── debug_page.dart │ │ │ ├── discovery_debug_page.dart │ │ │ ├── http_logs_page.dart │ │ │ └── security_debug_page.dart │ │ ├── donation │ │ │ ├── donation_page.dart │ │ │ └── donation_page_vm.dart │ │ ├── home_page.dart │ │ ├── home_page_controller.dart │ │ ├── language_page.dart │ │ ├── privacy_policy.dart │ │ ├── progress_page.dart │ │ ├── receive_history_page.dart │ │ ├── receive_options_page.dart │ │ ├── receive_page.dart │ │ ├── receive_page_controller.dart │ │ ├── receive_page_controller.mapper.dart │ │ ├── selected_files_page.dart │ │ ├── send_page.dart │ │ ├── settings │ │ │ └── network_interfaces_page.dart │ │ ├── tabs │ │ │ ├── receive_tab.dart │ │ │ ├── receive_tab_vm.dart │ │ │ ├── send_tab.dart │ │ │ ├── send_tab_vm.dart │ │ │ ├── settings_tab.dart │ │ │ ├── settings_tab_controller.dart │ │ │ ├── settings_tab_vm.dart │ │ │ └── settings_tab_vm.mapper.dart │ │ ├── troubleshoot_page.dart │ │ └── web_send_page.dart │ ├── provider │ │ ├── animation_provider.dart │ │ ├── apk_provider.dart │ │ ├── app_arguments_provider.dart │ │ ├── device_info_provider.dart │ │ ├── favorites_provider.dart │ │ ├── http_provider.dart │ │ ├── last_devices.provider.dart │ │ ├── local_ip_provider.dart │ │ ├── logging │ │ │ ├── discovery_logs_provider.dart │ │ │ └── http_logs_provider.dart │ │ ├── network │ │ │ ├── nearby_devices_provider.dart │ │ │ ├── scan_facade.dart │ │ │ ├── send_provider.dart │ │ │ └── server │ │ │ │ ├── controller │ │ │ │ ├── common.dart │ │ │ │ ├── receive_controller.dart │ │ │ │ └── send_controller.dart │ │ │ │ ├── server_provider.dart │ │ │ │ └── server_utils.dart │ │ ├── param │ │ │ ├── apk_provider_param.dart │ │ │ ├── apk_provider_param.mapper.dart │ │ │ ├── cached_apk_provider_param.dart │ │ │ └── cached_apk_provider_param.mapper.dart │ │ ├── persistence_provider.dart │ │ ├── persistence_provider_migrations.dart │ │ ├── progress_provider.dart │ │ ├── purchase_provider.dart │ │ ├── receive_history_provider.dart │ │ ├── security_provider.dart │ │ ├── selection │ │ │ ├── selected_receiving_files_provider.dart │ │ │ └── selected_sending_files_provider.dart │ │ ├── settings_provider.dart │ │ ├── tv_provider.dart │ │ ├── version_provider.dart │ │ └── window_dimensions_provider.dart │ ├── util │ │ ├── alias_generator.dart │ │ ├── determine_image_type.dart │ │ ├── device_type_ext.dart │ │ ├── favorites.dart │ │ ├── file_path_helper.dart │ │ ├── file_size_helper.dart │ │ ├── file_speed_helper.dart │ │ ├── file_type_ext.dart │ │ ├── i18n.dart │ │ ├── image_converter.dart │ │ ├── ip_helper.dart │ │ ├── native │ │ │ ├── autostart_helper.dart │ │ │ ├── cache_helper.dart │ │ │ ├── channel │ │ │ │ ├── android_channel.dart │ │ │ │ └── android_channel.mapper.dart │ │ │ ├── cmd_helper.dart │ │ │ ├── content_uri_helper.dart │ │ │ ├── context_menu_helper.dart │ │ │ ├── cross_file_converters.dart │ │ │ ├── device_info_helper.dart │ │ │ ├── directories.dart │ │ │ ├── file_picker.dart │ │ │ ├── file_saver.dart │ │ │ ├── ios_channel.dart │ │ │ ├── macos_channel.dart │ │ │ ├── open_file.dart │ │ │ ├── open_folder.dart │ │ │ ├── pick_directory_path.dart │ │ │ ├── platform_check.dart │ │ │ ├── taskbar_helper.dart │ │ │ └── tray_helper.dart │ │ ├── platform_strings.dart │ │ ├── rhttp.dart │ │ ├── security_helper.dart │ │ ├── send_ignore.dart │ │ ├── shared_preferences │ │ │ ├── shared_preferences_file.dart │ │ │ └── shared_preferences_portable.dart │ │ ├── simple_server.dart │ │ ├── ui │ │ │ ├── animations_status.dart │ │ │ ├── asset_picker_translated_text_delegate.dart │ │ │ ├── dynamic_colors.dart │ │ │ ├── nav_bar_padding.dart │ │ │ └── snackbar.dart │ │ └── user_agent_analyzer.dart │ └── widget │ │ ├── animated_opacity_cross_fade.dart │ │ ├── animations │ │ ├── initial_fade_transition.dart │ │ └── initial_slide_transition.dart │ │ ├── big_button.dart │ │ ├── column_list_view.dart │ │ ├── copyable_text.dart │ │ ├── custom_dropdown_button.dart │ │ ├── custom_icon_button.dart │ │ ├── custom_progress_bar.dart │ │ ├── debug_entry.dart │ │ ├── device_bage.dart │ │ ├── dialogs │ │ ├── add_file_dialog.dart │ │ ├── address_input_dialog.dart │ │ ├── cancel_session_dialog.dart │ │ ├── cannot_open_file_dialog.dart │ │ ├── custom_bottom_sheet.dart │ │ ├── encryption_disabled_notice.dart │ │ ├── error_dialog.dart │ │ ├── favorite_delete_dialog.dart │ │ ├── favorite_dialog.dart │ │ ├── favorite_edit_dialog.dart │ │ ├── file_info_dialog.dart │ │ ├── file_name_input_dialog.dart │ │ ├── history_clear_dialog.dart │ │ ├── ios_network_permission_dialog.dart │ │ ├── loading_dialog.dart │ │ ├── message_input_dialog.dart │ │ ├── no_files_dialog.dart │ │ ├── no_permission_dialog.dart │ │ ├── not_available_on_platform_dialog.dart │ │ ├── open_file_dialog.dart │ │ ├── pin_dialog.dart │ │ ├── qr_dialog.dart │ │ ├── quick_actions_dialog.dart │ │ ├── quick_save_from_favorites_notice.dart │ │ ├── quick_save_notice.dart │ │ ├── send_mode_help_dialog.dart │ │ ├── text_field_tv.dart │ │ ├── text_field_with_actions.dart │ │ └── zoom_dialog.dart │ │ ├── file_thumbnail.dart │ │ ├── horizontal_clip_list_view.dart │ │ ├── labeled_checkbox.dart │ │ ├── list_tile │ │ ├── custom_list_tile.dart │ │ ├── device_list_tile.dart │ │ └── device_placeholder_list_tile.dart │ │ ├── local_send_logo.dart │ │ ├── opacity_slideshow.dart │ │ ├── responsive_builder.dart │ │ ├── responsive_list_view.dart │ │ ├── rotating_widget.dart │ │ ├── sliver │ │ └── sliver_pinned_header.dart │ │ └── watcher │ │ ├── life_cycle_watcher.dart │ │ ├── shortcut_watcher.dart │ │ ├── tray_watcher.dart │ │ └── window_watcher.dart ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── main.cc │ ├── my_application.cc │ ├── my_application.h │ └── packaging │ │ ├── deb │ │ └── make_config.yaml │ │ └── rpm │ │ └── make_config.yaml ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Runner.xcscheme │ │ │ └── ShareExtension.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── logo-1024-mac-1024.png │ │ │ │ ├── logo-1024-mac-128.png │ │ │ │ ├── logo-1024-mac-16.png │ │ │ │ ├── logo-1024-mac-256.png │ │ │ │ ├── logo-1024-mac-32.png │ │ │ │ ├── logo-1024-mac-512.png │ │ │ │ └── logo-1024-mac-64.png │ │ │ ├── AppIconWithErrorMark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── logo-1024-mac-256.png │ │ │ ├── AppIconWithSuccessMark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── logo-1024-mac-256.png │ │ │ ├── Contents.json │ │ │ └── StatusBarItemIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── logo-32-black.png │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── Configs │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ ├── ContentDropView.swift │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ ├── Release.entitlements │ │ ├── SecurityScopedResourceManager.swift │ │ └── Shared.swift │ └── ShareExtension │ │ ├── Info.plist │ │ ├── ShareController.swift │ │ ├── ShareExtension.entitlements │ │ ├── Utilities.swift │ │ └── icon.icns ├── ohos │ ├── .gitignore │ ├── AppScope │ │ ├── app.json5 │ │ └── resources │ │ │ └── base │ │ │ ├── element │ │ │ └── string.json │ │ │ └── media │ │ │ ├── app_icon.png │ │ │ ├── background.png │ │ │ ├── foreground.png │ │ │ └── layered_image.json │ ├── build-profile.json5.template │ ├── entry │ │ ├── .gitignore │ │ ├── build-profile.json5 │ │ ├── hvigorfile.ts │ │ ├── oh-package.json5 │ │ └── src │ │ │ ├── main │ │ │ ├── ets │ │ │ │ ├── entryability │ │ │ │ │ ├── DownloadPlugin.ets │ │ │ │ │ └── EntryAbility.ets │ │ │ │ ├── pages │ │ │ │ │ └── Index.ets │ │ │ │ └── plugins │ │ │ │ │ └── GeneratedPluginRegistrant.ets │ │ │ ├── module.json5 │ │ │ └── resources │ │ │ │ ├── base │ │ │ │ ├── element │ │ │ │ │ ├── color.json │ │ │ │ │ └── string.json │ │ │ │ ├── media │ │ │ │ │ ├── background.png │ │ │ │ │ ├── foreground.png │ │ │ │ │ ├── icon_small.png │ │ │ │ │ ├── icon_startwindow.png │ │ │ │ │ ├── icon_store.png │ │ │ │ │ └── layered_image.json │ │ │ │ └── profile │ │ │ │ │ └── main_pages.json │ │ │ │ ├── dark │ │ │ │ └── element │ │ │ │ │ └── color.json │ │ │ │ └── zh_CN │ │ │ │ └── element │ │ │ │ └── string.json │ │ │ └── ohosTest │ │ │ ├── ets │ │ │ ├── test │ │ │ │ ├── Ability.test.ets │ │ │ │ └── List.test.ets │ │ │ ├── testability │ │ │ │ ├── TestAbility.ets │ │ │ │ └── pages │ │ │ │ │ └── Index.ets │ │ │ └── testrunner │ │ │ │ └── OpenHarmonyTestRunner.ts │ │ │ ├── module.json5 │ │ │ └── resources │ │ │ └── base │ │ │ ├── element │ │ │ ├── color.json │ │ │ └── string.json │ │ │ ├── media │ │ │ └── icon.png │ │ │ └── profile │ │ │ └── test_pages.json │ ├── hvigor │ │ └── hvigor-config.json5 │ ├── hvigorfile.ts │ └── oh-package.json5 ├── pubspec.lock ├── pubspec.yaml ├── rust-toolchain.toml ├── test │ ├── mocks.dart │ ├── mocks.mocks.dart │ └── unit │ │ ├── i18n_test.dart │ │ ├── model │ │ └── dto │ │ │ └── prepare_upload_request_dto_test.dart │ │ ├── provider │ │ ├── favorites_provider_test.dart │ │ ├── last_devices_provider_test.dart │ │ ├── network_info_provider_test.dart │ │ └── receive_history_provider_test.dart │ │ └── util │ │ ├── api_route_builder_test.dart │ │ ├── native │ │ └── content_uri_helper_test.dart │ │ └── security_helper_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json ├── webview_flutter_ohos │ ├── .gitignore │ ├── AUTHORS │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── assets │ │ │ ├── sample_audio.ogg │ │ │ ├── sample_video.mp4 │ │ │ └── www │ │ │ │ ├── index.html │ │ │ │ └── styles │ │ │ │ └── style.css │ │ ├── lib │ │ │ └── main.dart │ │ ├── ohos │ │ │ ├── .gitignore │ │ │ ├── AppScope │ │ │ │ ├── app.json5 │ │ │ │ └── resources │ │ │ │ │ └── base │ │ │ │ │ ├── element │ │ │ │ │ └── string.json │ │ │ │ │ └── media │ │ │ │ │ └── app_icon.png │ │ │ ├── build-profile.json5 │ │ │ ├── entry │ │ │ │ ├── .gitignore │ │ │ │ ├── build-profile.json5 │ │ │ │ ├── hvigorfile.ts │ │ │ │ ├── libs │ │ │ │ │ └── arm64-v8a │ │ │ │ │ │ └── libc++_shared.so │ │ │ │ ├── oh-package.json5 │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── ets │ │ │ │ │ │ ├── entryability │ │ │ │ │ │ │ └── EntryAbility.ets │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ └── Index.ets │ │ │ │ │ ├── module.json5 │ │ │ │ │ └── resources │ │ │ │ │ │ ├── base │ │ │ │ │ │ ├── element │ │ │ │ │ │ │ ├── color.json │ │ │ │ │ │ │ └── string.json │ │ │ │ │ │ ├── media │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── profile │ │ │ │ │ │ │ └── main_pages.json │ │ │ │ │ │ ├── en_US │ │ │ │ │ │ └── element │ │ │ │ │ │ │ └── string.json │ │ │ │ │ │ └── zh_CN │ │ │ │ │ │ └── element │ │ │ │ │ │ └── string.json │ │ │ │ │ └── ohosTest │ │ │ │ │ ├── ets │ │ │ │ │ ├── test │ │ │ │ │ │ ├── Ability.test.ets │ │ │ │ │ │ └── List.test.ets │ │ │ │ │ ├── testability │ │ │ │ │ │ ├── TestAbility.ets │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ └── Index.ets │ │ │ │ │ └── testrunner │ │ │ │ │ │ └── OpenHarmonyTestRunner.ts │ │ │ │ │ ├── module.json5 │ │ │ │ │ └── resources │ │ │ │ │ └── base │ │ │ │ │ ├── element │ │ │ │ │ ├── color.json │ │ │ │ │ └── string.json │ │ │ │ │ ├── media │ │ │ │ │ └── icon.png │ │ │ │ │ └── profile │ │ │ │ │ └── test_pages.json │ │ │ ├── hvigor │ │ │ │ └── hvigor-config.json5 │ │ │ ├── hvigorfile.ts │ │ │ └── oh-package.json5 │ │ └── pubspec.yaml │ ├── lib │ │ ├── src │ │ │ ├── instance_manager.dart │ │ │ ├── legacy │ │ │ │ ├── webview_ohos.dart │ │ │ │ ├── webview_ohos_cookie_manager.dart │ │ │ │ ├── webview_ohos_widget.dart │ │ │ │ └── webview_surface_ohos.dart │ │ │ ├── ohos_proxy.dart │ │ │ ├── ohos_webview.dart │ │ │ ├── ohos_webview.g.dart │ │ │ ├── ohos_webview_api_impls.dart │ │ │ ├── ohos_webview_controller.dart │ │ │ ├── ohos_webview_cookie_manager.dart │ │ │ ├── ohos_webview_platform.dart │ │ │ ├── platform_views_service_proxy.dart │ │ │ ├── weak_reference_utils.dart │ │ │ └── webview_flutter_ohos_legacy.dart │ │ └── webview_flutter_ohos.dart │ ├── ohos │ │ ├── .gitignore │ │ ├── Index.ets │ │ ├── build-profile.json5 │ │ ├── consumer-rules.txt │ │ ├── hvigorfile.ts │ │ ├── obfuscation-rules.txt │ │ ├── oh-package.json5 │ │ └── src │ │ │ └── main │ │ │ ├── ets │ │ │ └── io.flutter.plugins │ │ │ │ └── webview_flutter │ │ │ │ ├── CookieManagerHostApiImpl.ets │ │ │ │ ├── CustomViewCallbackFlutterApiImpl.ets │ │ │ │ ├── CustomViewCallbackHostApiImpl.ets │ │ │ │ ├── DisplayListenerProxy.ets │ │ │ │ ├── DownloadListenerFlutterApiImpl.ets │ │ │ │ ├── DownloadListenerHostApiImpl.ets │ │ │ │ ├── DynamicUtils.ets │ │ │ │ ├── FileChooserParamsFlutterApiImpl.ets │ │ │ │ ├── FlutterAssetManager.ets │ │ │ │ ├── FlutterAssetManagerHostApiImpl.ets │ │ │ │ ├── FlutterWebViewFactory.ets │ │ │ │ ├── GeneratedOhosWebView.ets │ │ │ │ ├── GeolocationPermissionsCallbackFlutterApiImpl.ets │ │ │ │ ├── GeolocationPermissionsCallbackHostApiImpl.ets │ │ │ │ ├── HttpAuthHandlerFlutterApiImpl.ets │ │ │ │ ├── HttpAuthHandlerHostApiImpl.ets │ │ │ │ ├── InstanceManager.ets │ │ │ │ ├── JavaScriptChannel.ets │ │ │ │ ├── JavaScriptChannelFlutterApiImpl.ets │ │ │ │ ├── JavaScriptChannelHostApiImpl.ets │ │ │ │ ├── OhosObjectHostApiImpl.ets │ │ │ │ ├── OhosWebView.ets │ │ │ │ ├── PermissionRequestFlutterApiImpl.ets │ │ │ │ ├── PermissionRequestHostApiImpl.ets │ │ │ │ ├── ViewFlutterApiImpl.ets │ │ │ │ ├── WebChromeClientFlutterApiImpl.ets │ │ │ │ ├── WebChromeClientHostApiImpl.ets │ │ │ │ ├── WebSettingsHostApiImpl.ets │ │ │ │ ├── WebStorageHostApiImpl.ets │ │ │ │ ├── WebViewClientFlutterApiImpl.ets │ │ │ │ ├── WebViewClientHostApiImpl.ets │ │ │ │ ├── WebViewFlutterApiImpl.ets │ │ │ │ ├── WebViewFlutterPlugin.ets │ │ │ │ └── WebViewHostApiImpl.ets │ │ │ └── module.json5 │ └── pubspec.yaml └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── cli ├── .gitignore ├── README.md ├── analysis_options.yaml ├── bin │ └── cli.dart ├── lib │ └── main.dart ├── pubspec.lock └── pubspec.yaml ├── common ├── .gitignore ├── README.md ├── analysis_options.yaml ├── build.yaml ├── lib │ ├── api_route_builder.dart │ ├── constants.dart │ ├── isolate.dart │ ├── model │ │ ├── device.dart │ │ ├── device.mapper.dart │ │ ├── device_info_result.dart │ │ ├── dto │ │ │ ├── file_dto.dart │ │ │ ├── file_dto.mapper.dart │ │ │ ├── info_dto.dart │ │ │ ├── info_dto.mapper.dart │ │ │ ├── info_register_dto.dart │ │ │ ├── info_register_dto.mapper.dart │ │ │ ├── multicast_dto.dart │ │ │ ├── multicast_dto.mapper.dart │ │ │ ├── prepare_upload_request_dto.dart │ │ │ ├── prepare_upload_request_dto.mapper.dart │ │ │ ├── prepare_upload_response_dto.dart │ │ │ ├── prepare_upload_response_dto.mapper.dart │ │ │ ├── receive_request_response_dto.dart │ │ │ ├── receive_request_response_dto.mapper.dart │ │ │ ├── register_dto.dart │ │ │ └── register_dto.mapper.dart │ │ ├── file_status.dart │ │ ├── file_type.dart │ │ ├── file_type.mapper.dart │ │ ├── session_status.dart │ │ ├── stored_security_context.dart │ │ └── stored_security_context.mapper.dart │ ├── src │ │ ├── isolate │ │ │ ├── child │ │ │ │ ├── http_provider.dart │ │ │ │ ├── http_scan_discovery_isolate.dart │ │ │ │ ├── http_target_discovery_isolate.dart │ │ │ │ ├── main.dart │ │ │ │ ├── multicast_discovery_isolate.dart │ │ │ │ ├── sync_provider.dart │ │ │ │ ├── sync_provider.mapper.dart │ │ │ │ └── upload_isolate.dart │ │ │ ├── dto │ │ │ │ ├── isolate_task.dart │ │ │ │ ├── isolate_task_result.dart │ │ │ │ └── send_to_isolate_data.dart │ │ │ └── parent │ │ │ │ ├── actions.dart │ │ │ │ ├── actions_sync.dart │ │ │ │ ├── parent_isolate_provider.dart │ │ │ │ └── parent_isolate_provider.mapper.dart │ │ ├── task │ │ │ ├── README.md │ │ │ ├── discovery │ │ │ │ ├── http_scan_discovery.dart │ │ │ │ ├── http_target_discovery.dart │ │ │ │ └── multicast_discovery.dart │ │ │ └── upload │ │ │ │ └── http_upload.dart │ │ └── util │ │ │ ├── id_provider.dart │ │ │ └── isolate_helper.dart │ └── util │ │ ├── logger.dart │ │ ├── network_interfaces.dart │ │ ├── sleep.dart │ │ ├── stream.dart │ │ └── task_runner.dart ├── pubspec.yaml └── test │ └── unit │ └── util │ ├── network_interfaces_test.dart │ └── task_runner_test.dart ├── fastlane └── metadata │ └── android │ ├── en-US │ ├── full_description.txt │ ├── images │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ └── 8.jpg │ └── short_description.txt │ └── pt-BR │ ├── full_description.txt │ ├── images │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ └── short_description.txt ├── readme_i18n ├── README_CS.md ├── README_ES.md ├── README_FA.md ├── README_FR.md ├── README_ID.md ├── README_IT.md ├── README_JA.md ├── README_KM.md ├── README_KO.md ├── README_PH.md ├── README_PL.md ├── README_PT_BR.md ├── README_RU.md ├── README_TH.md ├── README_TR.md ├── README_UK.md ├── README_VI.md └── README_ZH.md ├── scripts ├── Languages │ └── ChineseSimplified.isl ├── appimage │ ├── AppImageBuilder_arm_64.yml │ └── AppImageBuilder_x86_64.yml ├── compile_android_apk.sh ├── compile_android_appbundle.ps1 ├── compile_ios.sh ├── compile_linux_appimage.sh ├── compile_mac_appstore.sh ├── compile_mac_dmg.sh ├── compile_windows_exe-inno.iss ├── compile_windows_exe.ps1 ├── compile_windows_msix_signed.ps1 ├── compile_windows_msix_store.ps1 ├── compile_windows_zip.ps1 ├── contributions_digester.dart ├── dmg │ └── background.png ├── download_windows_msix.ps1 ├── msix │ └── msix_downloader.ps1 ├── remove_proprietary_dependencies.sh ├── verify_exe_signature.ps1 └── windows │ └── x64 │ ├── msvcp140.dll │ ├── vcruntime140.dll │ └── vcruntime140_1.dll └── tmp.ps1 /.fvmrc: -------------------------------------------------------------------------------- 1 | { 2 | "flutter": "3.24.5" 3 | } -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Tienisto] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/clear_workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/workflows/clear_workflows.yml -------------------------------------------------------------------------------- /.github/workflows/compile_apk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/workflows/compile_apk.yml -------------------------------------------------------------------------------- /.github/workflows/compile_arm64_appimage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/workflows/compile_arm64_appimage.yml -------------------------------------------------------------------------------- /.github/workflows/linux_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/workflows/linux_build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test_arm64_deb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/workflows/test_arm64_deb.yml -------------------------------------------------------------------------------- /.github/workflows/test_arm64_tar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/workflows/test_arm64_tar.yml -------------------------------------------------------------------------------- /.github/workflows/test_rpm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/workflows/test_rpm.yml -------------------------------------------------------------------------------- /.github/workflows/test_zip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/workflows/test_zip.yml -------------------------------------------------------------------------------- /.github/workflows/winget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.github/workflows/winget.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/analysis_options.yaml -------------------------------------------------------------------------------- /app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/android/.gitignore -------------------------------------------------------------------------------- /app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/android/app/build.gradle -------------------------------------------------------------------------------- /app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/drawable/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/android/app/src/main/res/drawable/banner.png -------------------------------------------------------------------------------- /app/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/android/build.gradle -------------------------------------------------------------------------------- /app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/android/gradle.properties -------------------------------------------------------------------------------- /app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/android/settings.gradle -------------------------------------------------------------------------------- /app/assets/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/CHANGELOG.md -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_ar.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_az.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_bg.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_bn.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_ca.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_cs.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_da.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_de.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_el.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_en_IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_en_IN.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_es_ES.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_et.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_eu.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_fa.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_fi.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_fil_PH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_fil_PH.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_fr.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_gl.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_gu.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_he.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_hi.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_hu.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_id.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_it.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_ja.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_km.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_ko.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_ml.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_mn.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_ms.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_ne.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_nl.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_pl.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_pt_BR.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_pt_PT.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_ro.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_ru.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_si.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_sk.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_sl.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_sr.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_sr_Cyrl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_sr_Cyrl.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_sv.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_ta.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_th.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_tr.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_uk.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_ur.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_vi.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_zh_CN.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_zh_HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_zh_HK.json -------------------------------------------------------------------------------- /app/assets/i18n/_missing_translations_zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_missing_translations_zh_TW.json -------------------------------------------------------------------------------- /app/assets/i18n/_unused_translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/_unused_translations.json -------------------------------------------------------------------------------- /app/assets/i18n/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/ar.json -------------------------------------------------------------------------------- /app/assets/i18n/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/az.json -------------------------------------------------------------------------------- /app/assets/i18n/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/bg.json -------------------------------------------------------------------------------- /app/assets/i18n/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/bn.json -------------------------------------------------------------------------------- /app/assets/i18n/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/ca.json -------------------------------------------------------------------------------- /app/assets/i18n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/cs.json -------------------------------------------------------------------------------- /app/assets/i18n/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/da.json -------------------------------------------------------------------------------- /app/assets/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/de.json -------------------------------------------------------------------------------- /app/assets/i18n/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/el.json -------------------------------------------------------------------------------- /app/assets/i18n/en-IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/en-IN.json -------------------------------------------------------------------------------- /app/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/en.json -------------------------------------------------------------------------------- /app/assets/i18n/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/es-ES.json -------------------------------------------------------------------------------- /app/assets/i18n/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/et.json -------------------------------------------------------------------------------- /app/assets/i18n/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/eu.json -------------------------------------------------------------------------------- /app/assets/i18n/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/fa.json -------------------------------------------------------------------------------- /app/assets/i18n/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/fi.json -------------------------------------------------------------------------------- /app/assets/i18n/fil-PH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/fil-PH.json -------------------------------------------------------------------------------- /app/assets/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/fr.json -------------------------------------------------------------------------------- /app/assets/i18n/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/gl.json -------------------------------------------------------------------------------- /app/assets/i18n/gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/gu.json -------------------------------------------------------------------------------- /app/assets/i18n/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/he.json -------------------------------------------------------------------------------- /app/assets/i18n/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/hi.json -------------------------------------------------------------------------------- /app/assets/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/hu.json -------------------------------------------------------------------------------- /app/assets/i18n/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/id.json -------------------------------------------------------------------------------- /app/assets/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/it.json -------------------------------------------------------------------------------- /app/assets/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/ja.json -------------------------------------------------------------------------------- /app/assets/i18n/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/km.json -------------------------------------------------------------------------------- /app/assets/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/ko.json -------------------------------------------------------------------------------- /app/assets/i18n/ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/ml.json -------------------------------------------------------------------------------- /app/assets/i18n/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/mn.json -------------------------------------------------------------------------------- /app/assets/i18n/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/ms.json -------------------------------------------------------------------------------- /app/assets/i18n/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/ne.json -------------------------------------------------------------------------------- /app/assets/i18n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/nl.json -------------------------------------------------------------------------------- /app/assets/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/pl.json -------------------------------------------------------------------------------- /app/assets/i18n/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/pt-BR.json -------------------------------------------------------------------------------- /app/assets/i18n/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/pt-PT.json -------------------------------------------------------------------------------- /app/assets/i18n/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/ro.json -------------------------------------------------------------------------------- /app/assets/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/ru.json -------------------------------------------------------------------------------- /app/assets/i18n/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/si.json -------------------------------------------------------------------------------- /app/assets/i18n/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/sk.json -------------------------------------------------------------------------------- /app/assets/i18n/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/sl.json -------------------------------------------------------------------------------- /app/assets/i18n/sr-Cyrl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/sr-Cyrl.json -------------------------------------------------------------------------------- /app/assets/i18n/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/sr.json -------------------------------------------------------------------------------- /app/assets/i18n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/sv.json -------------------------------------------------------------------------------- /app/assets/i18n/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/ta.json -------------------------------------------------------------------------------- /app/assets/i18n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/th.json -------------------------------------------------------------------------------- /app/assets/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/tr.json -------------------------------------------------------------------------------- /app/assets/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/uk.json -------------------------------------------------------------------------------- /app/assets/i18n/ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/ur.json -------------------------------------------------------------------------------- /app/assets/i18n/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/vi.json -------------------------------------------------------------------------------- /app/assets/i18n/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/zh-CN.json -------------------------------------------------------------------------------- /app/assets/i18n/zh-HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/zh-HK.json -------------------------------------------------------------------------------- /app/assets/i18n/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/i18n/zh-TW.json -------------------------------------------------------------------------------- /app/assets/img/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/img/gen.py -------------------------------------------------------------------------------- /app/assets/img/logo-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/img/logo-1024.png -------------------------------------------------------------------------------- /app/assets/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/img/logo-128.png -------------------------------------------------------------------------------- /app/assets/img/logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/img/logo-256.png -------------------------------------------------------------------------------- /app/assets/img/logo-32-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/img/logo-32-black.png -------------------------------------------------------------------------------- /app/assets/img/logo-32-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/img/logo-32-white.png -------------------------------------------------------------------------------- /app/assets/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/img/logo-32.png -------------------------------------------------------------------------------- /app/assets/img/logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/img/logo-512.png -------------------------------------------------------------------------------- /app/assets/img/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/img/logo.ico -------------------------------------------------------------------------------- /app/assets/packaging/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/packaging/logo.ico -------------------------------------------------------------------------------- /app/assets/privacy_policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/privacy_policy.html -------------------------------------------------------------------------------- /app/assets/web/error-403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/web/error-403.html -------------------------------------------------------------------------------- /app/assets/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/web/index.html -------------------------------------------------------------------------------- /app/assets/web/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/assets/web/main.js -------------------------------------------------------------------------------- /app/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/build.yaml -------------------------------------------------------------------------------- /app/device_info_plus/device_info_plus/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/device_info_plus/device_info_plus/.gitattributes -------------------------------------------------------------------------------- /app/device_info_plus/device_info_plus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/device_info_plus/device_info_plus/.gitignore -------------------------------------------------------------------------------- /app/device_info_plus/device_info_plus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/device_info_plus/device_info_plus/CHANGELOG.md -------------------------------------------------------------------------------- /app/device_info_plus/device_info_plus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/device_info_plus/device_info_plus/LICENSE -------------------------------------------------------------------------------- /app/device_info_plus/device_info_plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/device_info_plus/device_info_plus/README.md -------------------------------------------------------------------------------- /app/device_info_plus/device_info_plus/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /app/device_info_plus/device_info_plus/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'device_info' 2 | -------------------------------------------------------------------------------- /app/device_info_plus/device_info_plus/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /app/device_info_plus/device_info_plus/example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /app/device_info_plus/device_info_plus/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/device_info_plus/device_info_plus/ohos/index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/device_info_plus/device_info_plus/ohos/index.ets -------------------------------------------------------------------------------- /app/device_info_plus/device_info_plus/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/device_info_plus/device_info_plus/pubspec.yaml -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/.github/workflows/pub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/.github/workflows/pub.yml -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/.gitignore -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/CHANGELOG.md -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/CONTRIBUTING.md -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/LICENSE -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/OAT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/OAT.xml -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/README.md -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/analysis_options.yaml -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/android/.classpath -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/android/.gitignore -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/android/.project -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/android/build.gradle -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/android/gradle.properties -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'file_picker' 2 | -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/example/.gitignore -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/example/.metadata -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/example/README.md -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/example/android/.project -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/example/ios/.gitignore -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/example/ios/Podfile -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/example/ios/Runner/main.m -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/example/lib/main.dart -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/example/linux/main.cc -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/example/pubspec.yaml -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/example/web/favicon.png -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/example/web/index.html -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/example/web/manifest.json -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ios/.gitignore -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ios/Classes/FileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ios/Classes/FileInfo.h -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ios/Classes/FileInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ios/Classes/FileInfo.m -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ios/Classes/FileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ios/Classes/FileUtils.h -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ios/Classes/FileUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ios/Classes/FileUtils.m -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ios/Classes/ImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ios/Classes/ImageUtils.h -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ios/Classes/ImageUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ios/Classes/ImageUtils.m -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ios/file_picker.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ios/file_picker.podspec -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/lib/file_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/lib/file_picker.dart -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/lib/src/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/lib/src/exceptions.dart -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/lib/src/file_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/lib/src/file_picker.dart -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/lib/src/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/lib/src/utils.dart -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/lib/src/windows/stub.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/lib/src/windows/stub.dart -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ohos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ohos/.gitignore -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ohos/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ohos/.metadata -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ohos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ohos/CHANGELOG.md -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ohos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ohos/LICENSE -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ohos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ohos/README.md -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ohos/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ohos/example/.gitignore -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ohos/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ohos/example/README.md -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ohos/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ohos/example/pubspec.yaml -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ohos/lib/src/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ohos/lib/src/utils.dart -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ohos/ohos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ohos/ohos/.gitignore -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ohos/ohos/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ohos/ohos/hvigorfile.ts -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ohos/ohos/index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ohos/ohos/index.ets -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/ohos/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/ohos/pubspec.yaml -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/pubspec.yaml -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/test/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/test/common.dart -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/test/test_files/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/test/test_files/test.pdf -------------------------------------------------------------------------------- /app/fluttertpc_file_picker/test/test_files/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/fluttertpc_file_picker/test/test_files/test.yml -------------------------------------------------------------------------------- /app/frb_dart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/.gitignore -------------------------------------------------------------------------------- /app/frb_dart/.pubignore: -------------------------------------------------------------------------------- 1 | /dart_api_dl -------------------------------------------------------------------------------- /app/frb_dart/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/CHANGELOG.md -------------------------------------------------------------------------------- /app/frb_dart/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/LICENSE -------------------------------------------------------------------------------- /app/frb_dart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/README.md -------------------------------------------------------------------------------- /app/frb_dart/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/analysis_options.yaml -------------------------------------------------------------------------------- /app/frb_dart/bin/flutter_rust_bridge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/bin/flutter_rust_bridge.dart -------------------------------------------------------------------------------- /app/frb_dart/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/build.yaml -------------------------------------------------------------------------------- /app/frb_dart/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/example/README.md -------------------------------------------------------------------------------- /app/frb_dart/lib/flutter_rust_bridge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/flutter_rust_bridge.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/cli/build_web/entrypoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/cli/build_web/entrypoint.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/cli/build_web/entrypoint.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/cli/build_web/entrypoint.g.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/cli/build_web/executor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/cli/build_web/executor.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/cli/cli_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/cli/cli_utils.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/cli/run_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/cli/run_command.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/codec/base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/codec/base.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/codec/cst.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/codec/cst.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/codec/dco.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/codec/dco.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/codec/pde.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/codec/pde.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/codec/sse.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/codec/sse.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/consts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/consts.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/dart_c_object_into_dart/_web.dart: -------------------------------------------------------------------------------- 1 | // nothing 2 | -------------------------------------------------------------------------------- /app/frb_dart/lib/src/dart_opaque/_common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/dart_opaque/_common.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/dart_opaque/_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/dart_opaque/_io.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/dart_opaque/_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/dart_opaque/_web.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/dart_opaque/dart_opaque.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/dart_opaque/dart_opaque.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/droppable/_common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/droppable/_common.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/droppable/_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/droppable/_io.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/droppable/_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/droppable/_web.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/droppable/droppable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/droppable/droppable.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/exceptions.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/generalized_isolate/_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/generalized_isolate/_io.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/generalized_isolate/_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/generalized_isolate/_web.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/generalized_typed_data/_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/generalized_typed_data/_io.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/generalized_uint8list/_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/generalized_uint8list/_io.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/generalized_uint8list/_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/generalized_uint8list/_web.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/loader/_common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/loader/_common.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/loader/_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/loader/_io.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/loader/_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/loader/_web.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/loader/loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/loader/loader.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/main_components/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/main_components/api.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/main_components/api_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/main_components/api_impl.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/main_components/entrypoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/main_components/entrypoint.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/main_components/handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/main_components/handler.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/main_components/wire.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/main_components/wire.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/manual_impl/_common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/manual_impl/_common.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/manual_impl/_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/manual_impl/_io.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/manual_impl/_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/manual_impl/_web.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/manual_impl/manual_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/manual_impl/manual_impl.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/misc/box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/misc/box.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/misc/rust_opaque.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/misc/rust_opaque.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/misc/simple_disposable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/misc/simple_disposable.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/misc/version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/misc/version.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/platform_types/_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/platform_types/_io.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/platform_types/_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/platform_types/_web.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/platform_utils/_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/platform_utils/_io.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/platform_utils/_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/platform_utils/_web.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/rust_arc/_common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/rust_arc/_common.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/rust_arc/_io.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/frb_dart/lib/src/rust_arc/_web.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/frb_dart/lib/src/rust_arc/rust_arc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/rust_arc/rust_arc.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/stream/stream_sink.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/stream/stream_sink.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/task.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/utils/port_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/utils/port_generator.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/utils/single_complete_port.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/utils/single_complete_port.dart -------------------------------------------------------------------------------- /app/frb_dart/lib/src/wasm_module/_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/lib/src/wasm_module/_web.dart -------------------------------------------------------------------------------- /app/frb_dart/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/pubspec.yaml -------------------------------------------------------------------------------- /app/frb_dart/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/test/README.md -------------------------------------------------------------------------------- /app/frb_dart/test/droppable_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/test/droppable_test.dart -------------------------------------------------------------------------------- /app/frb_dart/test/entrypoint_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/test/entrypoint_test.dart -------------------------------------------------------------------------------- /app/frb_dart/test/exceptions_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/test/exceptions_test.dart -------------------------------------------------------------------------------- /app/frb_dart/test/platform_types_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/test/platform_types_test.dart -------------------------------------------------------------------------------- /app/frb_dart/test/run_command_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/test/run_command_test.dart -------------------------------------------------------------------------------- /app/frb_dart/test/task_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/test/task_test.dart -------------------------------------------------------------------------------- /app/frb_dart/test/typed_data_io_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/test/typed_data_io_test.dart -------------------------------------------------------------------------------- /app/frb_dart/test/typed_data_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/frb_dart/test/typed_data_test.dart -------------------------------------------------------------------------------- /app/image_picker/image_picker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker/AUTHORS -------------------------------------------------------------------------------- /app/image_picker/image_picker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker/CHANGELOG.md -------------------------------------------------------------------------------- /app/image_picker/image_picker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker/LICENSE -------------------------------------------------------------------------------- /app/image_picker/image_picker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker/README.md -------------------------------------------------------------------------------- /app/image_picker/image_picker/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker/example/README.md -------------------------------------------------------------------------------- /app/image_picker/image_picker/example/android/app/src/main/java/io/flutter/plugins/.gitignore: -------------------------------------------------------------------------------- 1 | GeneratedPluginRegistrant.java 2 | -------------------------------------------------------------------------------- /app/image_picker/image_picker/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker/example/ios/Podfile -------------------------------------------------------------------------------- /app/image_picker/image_picker/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker/example/lib/main.dart -------------------------------------------------------------------------------- /app/image_picker/image_picker/example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /app/image_picker/image_picker/example/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker/example/linux/main.cc -------------------------------------------------------------------------------- /app/image_picker/image_picker/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker/example/macos/Podfile -------------------------------------------------------------------------------- /app/image_picker/image_picker/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker/example/pubspec.yaml -------------------------------------------------------------------------------- /app/image_picker/image_picker/example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker/example/web/index.html -------------------------------------------------------------------------------- /app/image_picker/image_picker/lib/image_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker/lib/image_picker.dart -------------------------------------------------------------------------------- /app/image_picker/image_picker/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker/pubspec.yaml -------------------------------------------------------------------------------- /app/image_picker/image_picker_android/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_android/AUTHORS -------------------------------------------------------------------------------- /app/image_picker/image_picker_android/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_android/CHANGELOG.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_android/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_android/LICENSE -------------------------------------------------------------------------------- /app/image_picker/image_picker_android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_android/README.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_android/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'image_picker_android' 2 | -------------------------------------------------------------------------------- /app/image_picker/image_picker_android/android/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker: -------------------------------------------------------------------------------- 1 | mock-maker-inline -------------------------------------------------------------------------------- /app/image_picker/image_picker_android/example/android/app/src/main/java/io/flutter/plugins/.gitignore: -------------------------------------------------------------------------------- 1 | GeneratedPluginRegistrant.java 2 | -------------------------------------------------------------------------------- /app/image_picker/image_picker_android/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_android/pubspec.yaml -------------------------------------------------------------------------------- /app/image_picker/image_picker_for_web/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_for_web/AUTHORS -------------------------------------------------------------------------------- /app/image_picker/image_picker_for_web/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_for_web/CHANGELOG.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_for_web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_for_web/LICENSE -------------------------------------------------------------------------------- /app/image_picker/image_picker_for_web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_for_web/README.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_for_web/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_for_web/pubspec.yaml -------------------------------------------------------------------------------- /app/image_picker/image_picker_for_web/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_for_web/test/README.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_ios/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_ios/AUTHORS -------------------------------------------------------------------------------- /app/image_picker/image_picker_ios/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_ios/CHANGELOG.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_ios/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_ios/LICENSE -------------------------------------------------------------------------------- /app/image_picker/image_picker_ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_ios/README.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_ios/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_ios/example/README.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_ios/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/image_picker/image_picker_ios/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_ios/pubspec.yaml -------------------------------------------------------------------------------- /app/image_picker/image_picker_linux/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_linux/AUTHORS -------------------------------------------------------------------------------- /app/image_picker/image_picker_linux/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_linux/CHANGELOG.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_linux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_linux/LICENSE -------------------------------------------------------------------------------- /app/image_picker/image_picker_linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_linux/README.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_linux/example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /app/image_picker/image_picker_linux/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_linux/pubspec.yaml -------------------------------------------------------------------------------- /app/image_picker/image_picker_macos/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_macos/AUTHORS -------------------------------------------------------------------------------- /app/image_picker/image_picker_macos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_macos/CHANGELOG.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_macos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_macos/LICENSE -------------------------------------------------------------------------------- /app/image_picker/image_picker_macos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_macos/README.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_macos/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_macos/pubspec.yaml -------------------------------------------------------------------------------- /app/image_picker/image_picker_ohos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_ohos/.gitignore -------------------------------------------------------------------------------- /app/image_picker/image_picker_ohos/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_ohos/AUTHORS -------------------------------------------------------------------------------- /app/image_picker/image_picker_ohos/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/image_picker/image_picker_ohos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_ohos/LICENSE -------------------------------------------------------------------------------- /app/image_picker/image_picker_ohos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_ohos/README.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_ohos/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_ohos/example/README.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_ohos/ohos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_ohos/ohos/.gitignore -------------------------------------------------------------------------------- /app/image_picker/image_picker_ohos/ohos/index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_ohos/ohos/index.ets -------------------------------------------------------------------------------- /app/image_picker/image_picker_ohos/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_ohos/pubspec.yaml -------------------------------------------------------------------------------- /app/image_picker/image_picker_platform_interface/test/assets/hello.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /app/image_picker/image_picker_windows/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_windows/AUTHORS -------------------------------------------------------------------------------- /app/image_picker/image_picker_windows/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_windows/CHANGELOG.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_windows/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_windows/LICENSE -------------------------------------------------------------------------------- /app/image_picker/image_picker_windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_windows/README.md -------------------------------------------------------------------------------- /app/image_picker/image_picker_windows/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/image_picker/image_picker_windows/pubspec.yaml -------------------------------------------------------------------------------- /app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/.gitignore -------------------------------------------------------------------------------- /app/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /app/ios/MyLocalSendStoreKit.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/MyLocalSendStoreKit.storekit -------------------------------------------------------------------------------- /app/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/Podfile -------------------------------------------------------------------------------- /app/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/Podfile.lock -------------------------------------------------------------------------------- /app/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /app/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /app/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /app/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /app/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/Runner/Info.plist -------------------------------------------------------------------------------- /app/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /app/ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /app/ios/ShareExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/ShareExtension/Info.plist -------------------------------------------------------------------------------- /app/ios/ShareExtension/ShareExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/ShareExtension/ShareExtension.entitlements -------------------------------------------------------------------------------- /app/ios/ShareExtension/ShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ios/ShareExtension/ShareViewController.swift -------------------------------------------------------------------------------- /app/lib/config/init.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/config/init.dart -------------------------------------------------------------------------------- /app/lib/config/init_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/config/init_error.dart -------------------------------------------------------------------------------- /app/lib/config/refena.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/config/refena.dart -------------------------------------------------------------------------------- /app/lib/config/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/config/theme.dart -------------------------------------------------------------------------------- /app/lib/gen/assets.gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/assets.gen.dart -------------------------------------------------------------------------------- /app/lib/gen/strings.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_ar.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_ar.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_az.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_az.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_bg.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_bg.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_bn.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_bn.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_ca.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_ca.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_cs.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_cs.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_da.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_da.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_de.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_de.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_el.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_el.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_en.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_en.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_en_IN.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_en_IN.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_es_ES.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_es_ES.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_et.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_et.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_eu.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_eu.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_fa.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_fa.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_fi.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_fi.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_fil_PH.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_fil_PH.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_fr.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_fr.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_gl.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_gl.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_gu.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_gu.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_he.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_he.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_hi.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_hi.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_hu.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_hu.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_id.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_id.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_it.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_it.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_ja.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_ja.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_km.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_km.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_ko.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_ko.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_ml.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_ml.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_mn.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_mn.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_ms.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_ms.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_ne.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_ne.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_nl.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_nl.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_pl.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_pl.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_pt_BR.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_pt_BR.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_pt_PT.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_pt_PT.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_ro.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_ro.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_ru.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_ru.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_si.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_si.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_sk.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_sk.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_sl.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_sl.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_sr.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_sr.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_sr_Cyrl.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_sr_Cyrl.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_sv.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_sv.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_ta.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_ta.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_th.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_th.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_tr.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_tr.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_uk.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_uk.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_ur.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_ur.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_vi.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_vi.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_zh_CN.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_zh_CN.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_zh_HK.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_zh_HK.g.dart -------------------------------------------------------------------------------- /app/lib/gen/strings_zh_TW.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/gen/strings_zh_TW.g.dart -------------------------------------------------------------------------------- /app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/main.dart -------------------------------------------------------------------------------- /app/lib/model/cross_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/cross_file.dart -------------------------------------------------------------------------------- /app/lib/model/cross_file.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/cross_file.mapper.dart -------------------------------------------------------------------------------- /app/lib/model/log_entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/log_entry.dart -------------------------------------------------------------------------------- /app/lib/model/log_entry.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/log_entry.mapper.dart -------------------------------------------------------------------------------- /app/lib/model/persistence/color_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/persistence/color_mode.dart -------------------------------------------------------------------------------- /app/lib/model/persistence/favorite_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/persistence/favorite_device.dart -------------------------------------------------------------------------------- /app/lib/model/persistence/receive_history_entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/persistence/receive_history_entry.dart -------------------------------------------------------------------------------- /app/lib/model/send_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/send_mode.dart -------------------------------------------------------------------------------- /app/lib/model/state/nearby_devices_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/nearby_devices_state.dart -------------------------------------------------------------------------------- /app/lib/model/state/nearby_devices_state.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/nearby_devices_state.mapper.dart -------------------------------------------------------------------------------- /app/lib/model/state/network_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/network_state.dart -------------------------------------------------------------------------------- /app/lib/model/state/network_state.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/network_state.mapper.dart -------------------------------------------------------------------------------- /app/lib/model/state/purchase_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/purchase_state.dart -------------------------------------------------------------------------------- /app/lib/model/state/purchase_state.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/purchase_state.mapper.dart -------------------------------------------------------------------------------- /app/lib/model/state/send/send_session_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/send/send_session_state.dart -------------------------------------------------------------------------------- /app/lib/model/state/send/sending_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/send/sending_file.dart -------------------------------------------------------------------------------- /app/lib/model/state/send/sending_file.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/send/sending_file.mapper.dart -------------------------------------------------------------------------------- /app/lib/model/state/send/web/web_send_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/send/web/web_send_file.dart -------------------------------------------------------------------------------- /app/lib/model/state/send/web/web_send_session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/send/web/web_send_session.dart -------------------------------------------------------------------------------- /app/lib/model/state/send/web/web_send_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/send/web/web_send_state.dart -------------------------------------------------------------------------------- /app/lib/model/state/server/receiving_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/server/receiving_file.dart -------------------------------------------------------------------------------- /app/lib/model/state/server/server_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/server/server_state.dart -------------------------------------------------------------------------------- /app/lib/model/state/server/server_state.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/server/server_state.mapper.dart -------------------------------------------------------------------------------- /app/lib/model/state/settings_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/settings_state.dart -------------------------------------------------------------------------------- /app/lib/model/state/settings_state.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/model/state/settings_state.mapper.dart -------------------------------------------------------------------------------- /app/lib/pages/about/about_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/about/about_page.dart -------------------------------------------------------------------------------- /app/lib/pages/about/contributors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/about/contributors.dart -------------------------------------------------------------------------------- /app/lib/pages/about/packagers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/about/packagers.dart -------------------------------------------------------------------------------- /app/lib/pages/about/translators.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/about/translators.dart -------------------------------------------------------------------------------- /app/lib/pages/apk_picker_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/apk_picker_page.dart -------------------------------------------------------------------------------- /app/lib/pages/changelog_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/changelog_page.dart -------------------------------------------------------------------------------- /app/lib/pages/debug/debug_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/debug/debug_page.dart -------------------------------------------------------------------------------- /app/lib/pages/debug/discovery_debug_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/debug/discovery_debug_page.dart -------------------------------------------------------------------------------- /app/lib/pages/debug/http_logs_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/debug/http_logs_page.dart -------------------------------------------------------------------------------- /app/lib/pages/debug/security_debug_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/debug/security_debug_page.dart -------------------------------------------------------------------------------- /app/lib/pages/donation/donation_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/donation/donation_page.dart -------------------------------------------------------------------------------- /app/lib/pages/donation/donation_page_vm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/donation/donation_page_vm.dart -------------------------------------------------------------------------------- /app/lib/pages/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/home_page.dart -------------------------------------------------------------------------------- /app/lib/pages/home_page_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/home_page_controller.dart -------------------------------------------------------------------------------- /app/lib/pages/language_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/language_page.dart -------------------------------------------------------------------------------- /app/lib/pages/privacy_policy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/privacy_policy.dart -------------------------------------------------------------------------------- /app/lib/pages/progress_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/progress_page.dart -------------------------------------------------------------------------------- /app/lib/pages/receive_history_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/receive_history_page.dart -------------------------------------------------------------------------------- /app/lib/pages/receive_options_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/receive_options_page.dart -------------------------------------------------------------------------------- /app/lib/pages/receive_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/receive_page.dart -------------------------------------------------------------------------------- /app/lib/pages/receive_page_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/receive_page_controller.dart -------------------------------------------------------------------------------- /app/lib/pages/receive_page_controller.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/receive_page_controller.mapper.dart -------------------------------------------------------------------------------- /app/lib/pages/selected_files_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/selected_files_page.dart -------------------------------------------------------------------------------- /app/lib/pages/send_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/send_page.dart -------------------------------------------------------------------------------- /app/lib/pages/settings/network_interfaces_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/settings/network_interfaces_page.dart -------------------------------------------------------------------------------- /app/lib/pages/tabs/receive_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/tabs/receive_tab.dart -------------------------------------------------------------------------------- /app/lib/pages/tabs/receive_tab_vm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/tabs/receive_tab_vm.dart -------------------------------------------------------------------------------- /app/lib/pages/tabs/send_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/tabs/send_tab.dart -------------------------------------------------------------------------------- /app/lib/pages/tabs/send_tab_vm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/tabs/send_tab_vm.dart -------------------------------------------------------------------------------- /app/lib/pages/tabs/settings_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/tabs/settings_tab.dart -------------------------------------------------------------------------------- /app/lib/pages/tabs/settings_tab_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/tabs/settings_tab_controller.dart -------------------------------------------------------------------------------- /app/lib/pages/tabs/settings_tab_vm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/tabs/settings_tab_vm.dart -------------------------------------------------------------------------------- /app/lib/pages/tabs/settings_tab_vm.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/tabs/settings_tab_vm.mapper.dart -------------------------------------------------------------------------------- /app/lib/pages/troubleshoot_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/troubleshoot_page.dart -------------------------------------------------------------------------------- /app/lib/pages/web_send_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/pages/web_send_page.dart -------------------------------------------------------------------------------- /app/lib/provider/animation_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/animation_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/apk_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/apk_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/app_arguments_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/app_arguments_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/device_info_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/device_info_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/favorites_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/favorites_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/http_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/http_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/last_devices.provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/last_devices.provider.dart -------------------------------------------------------------------------------- /app/lib/provider/local_ip_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/local_ip_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/logging/http_logs_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/logging/http_logs_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/network/scan_facade.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/network/scan_facade.dart -------------------------------------------------------------------------------- /app/lib/provider/network/send_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/network/send_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/network/server/server_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/network/server/server_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/network/server/server_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/network/server/server_utils.dart -------------------------------------------------------------------------------- /app/lib/provider/param/apk_provider_param.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/param/apk_provider_param.dart -------------------------------------------------------------------------------- /app/lib/provider/persistence_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/persistence_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/progress_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/progress_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/purchase_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/purchase_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/receive_history_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/receive_history_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/security_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/security_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/settings_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/settings_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/tv_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/tv_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/version_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/version_provider.dart -------------------------------------------------------------------------------- /app/lib/provider/window_dimensions_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/provider/window_dimensions_provider.dart -------------------------------------------------------------------------------- /app/lib/util/alias_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/alias_generator.dart -------------------------------------------------------------------------------- /app/lib/util/determine_image_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/determine_image_type.dart -------------------------------------------------------------------------------- /app/lib/util/device_type_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/device_type_ext.dart -------------------------------------------------------------------------------- /app/lib/util/favorites.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/favorites.dart -------------------------------------------------------------------------------- /app/lib/util/file_path_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/file_path_helper.dart -------------------------------------------------------------------------------- /app/lib/util/file_size_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/file_size_helper.dart -------------------------------------------------------------------------------- /app/lib/util/file_speed_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/file_speed_helper.dart -------------------------------------------------------------------------------- /app/lib/util/file_type_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/file_type_ext.dart -------------------------------------------------------------------------------- /app/lib/util/i18n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/i18n.dart -------------------------------------------------------------------------------- /app/lib/util/image_converter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/image_converter.dart -------------------------------------------------------------------------------- /app/lib/util/ip_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/ip_helper.dart -------------------------------------------------------------------------------- /app/lib/util/native/autostart_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/autostart_helper.dart -------------------------------------------------------------------------------- /app/lib/util/native/cache_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/cache_helper.dart -------------------------------------------------------------------------------- /app/lib/util/native/channel/android_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/channel/android_channel.dart -------------------------------------------------------------------------------- /app/lib/util/native/cmd_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/cmd_helper.dart -------------------------------------------------------------------------------- /app/lib/util/native/content_uri_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/content_uri_helper.dart -------------------------------------------------------------------------------- /app/lib/util/native/context_menu_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/context_menu_helper.dart -------------------------------------------------------------------------------- /app/lib/util/native/cross_file_converters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/cross_file_converters.dart -------------------------------------------------------------------------------- /app/lib/util/native/device_info_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/device_info_helper.dart -------------------------------------------------------------------------------- /app/lib/util/native/directories.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/directories.dart -------------------------------------------------------------------------------- /app/lib/util/native/file_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/file_picker.dart -------------------------------------------------------------------------------- /app/lib/util/native/file_saver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/file_saver.dart -------------------------------------------------------------------------------- /app/lib/util/native/ios_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/ios_channel.dart -------------------------------------------------------------------------------- /app/lib/util/native/macos_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/macos_channel.dart -------------------------------------------------------------------------------- /app/lib/util/native/open_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/open_file.dart -------------------------------------------------------------------------------- /app/lib/util/native/open_folder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/open_folder.dart -------------------------------------------------------------------------------- /app/lib/util/native/pick_directory_path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/pick_directory_path.dart -------------------------------------------------------------------------------- /app/lib/util/native/platform_check.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/platform_check.dart -------------------------------------------------------------------------------- /app/lib/util/native/taskbar_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/taskbar_helper.dart -------------------------------------------------------------------------------- /app/lib/util/native/tray_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/native/tray_helper.dart -------------------------------------------------------------------------------- /app/lib/util/platform_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/platform_strings.dart -------------------------------------------------------------------------------- /app/lib/util/rhttp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/rhttp.dart -------------------------------------------------------------------------------- /app/lib/util/security_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/security_helper.dart -------------------------------------------------------------------------------- /app/lib/util/send_ignore.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/send_ignore.dart -------------------------------------------------------------------------------- /app/lib/util/simple_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/simple_server.dart -------------------------------------------------------------------------------- /app/lib/util/ui/animations_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/ui/animations_status.dart -------------------------------------------------------------------------------- /app/lib/util/ui/dynamic_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/ui/dynamic_colors.dart -------------------------------------------------------------------------------- /app/lib/util/ui/nav_bar_padding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/ui/nav_bar_padding.dart -------------------------------------------------------------------------------- /app/lib/util/ui/snackbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/ui/snackbar.dart -------------------------------------------------------------------------------- /app/lib/util/user_agent_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/util/user_agent_analyzer.dart -------------------------------------------------------------------------------- /app/lib/widget/animated_opacity_cross_fade.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/animated_opacity_cross_fade.dart -------------------------------------------------------------------------------- /app/lib/widget/big_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/big_button.dart -------------------------------------------------------------------------------- /app/lib/widget/column_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/column_list_view.dart -------------------------------------------------------------------------------- /app/lib/widget/copyable_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/copyable_text.dart -------------------------------------------------------------------------------- /app/lib/widget/custom_dropdown_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/custom_dropdown_button.dart -------------------------------------------------------------------------------- /app/lib/widget/custom_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/custom_icon_button.dart -------------------------------------------------------------------------------- /app/lib/widget/custom_progress_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/custom_progress_bar.dart -------------------------------------------------------------------------------- /app/lib/widget/debug_entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/debug_entry.dart -------------------------------------------------------------------------------- /app/lib/widget/device_bage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/device_bage.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/add_file_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/add_file_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/address_input_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/address_input_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/cancel_session_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/cancel_session_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/cannot_open_file_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/cannot_open_file_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/custom_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/custom_bottom_sheet.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/error_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/error_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/favorite_delete_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/favorite_delete_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/favorite_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/favorite_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/favorite_edit_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/favorite_edit_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/file_info_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/file_info_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/file_name_input_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/file_name_input_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/history_clear_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/history_clear_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/loading_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/loading_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/message_input_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/message_input_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/no_files_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/no_files_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/no_permission_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/no_permission_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/open_file_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/open_file_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/pin_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/pin_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/qr_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/qr_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/quick_actions_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/quick_actions_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/quick_save_notice.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/quick_save_notice.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/send_mode_help_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/send_mode_help_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/text_field_tv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/text_field_tv.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/text_field_with_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/text_field_with_actions.dart -------------------------------------------------------------------------------- /app/lib/widget/dialogs/zoom_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/dialogs/zoom_dialog.dart -------------------------------------------------------------------------------- /app/lib/widget/file_thumbnail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/file_thumbnail.dart -------------------------------------------------------------------------------- /app/lib/widget/horizontal_clip_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/horizontal_clip_list_view.dart -------------------------------------------------------------------------------- /app/lib/widget/labeled_checkbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/labeled_checkbox.dart -------------------------------------------------------------------------------- /app/lib/widget/list_tile/custom_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/list_tile/custom_list_tile.dart -------------------------------------------------------------------------------- /app/lib/widget/list_tile/device_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/list_tile/device_list_tile.dart -------------------------------------------------------------------------------- /app/lib/widget/local_send_logo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/local_send_logo.dart -------------------------------------------------------------------------------- /app/lib/widget/opacity_slideshow.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/opacity_slideshow.dart -------------------------------------------------------------------------------- /app/lib/widget/responsive_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/responsive_builder.dart -------------------------------------------------------------------------------- /app/lib/widget/responsive_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/responsive_list_view.dart -------------------------------------------------------------------------------- /app/lib/widget/rotating_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/rotating_widget.dart -------------------------------------------------------------------------------- /app/lib/widget/sliver/sliver_pinned_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/sliver/sliver_pinned_header.dart -------------------------------------------------------------------------------- /app/lib/widget/watcher/life_cycle_watcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/watcher/life_cycle_watcher.dart -------------------------------------------------------------------------------- /app/lib/widget/watcher/shortcut_watcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/watcher/shortcut_watcher.dart -------------------------------------------------------------------------------- /app/lib/widget/watcher/tray_watcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/watcher/tray_watcher.dart -------------------------------------------------------------------------------- /app/lib/widget/watcher/window_watcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/lib/widget/watcher/window_watcher.dart -------------------------------------------------------------------------------- /app/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /app/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/linux/CMakeLists.txt -------------------------------------------------------------------------------- /app/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /app/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /app/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /app/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /app/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/linux/main.cc -------------------------------------------------------------------------------- /app/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/linux/my_application.cc -------------------------------------------------------------------------------- /app/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/linux/my_application.h -------------------------------------------------------------------------------- /app/linux/packaging/deb/make_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/linux/packaging/deb/make_config.yaml -------------------------------------------------------------------------------- /app/linux/packaging/rpm/make_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/linux/packaging/rpm/make_config.yaml -------------------------------------------------------------------------------- /app/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/.gitignore -------------------------------------------------------------------------------- /app/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /app/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /app/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /app/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Podfile -------------------------------------------------------------------------------- /app/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Podfile.lock -------------------------------------------------------------------------------- /app/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /app/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /app/macos/Runner/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /app/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /app/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /app/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /app/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /app/macos/Runner/ContentDropView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner/ContentDropView.swift -------------------------------------------------------------------------------- /app/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /app/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner/Info.plist -------------------------------------------------------------------------------- /app/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /app/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /app/macos/Runner/SecurityScopedResourceManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner/SecurityScopedResourceManager.swift -------------------------------------------------------------------------------- /app/macos/Runner/Shared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/Runner/Shared.swift -------------------------------------------------------------------------------- /app/macos/ShareExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/ShareExtension/Info.plist -------------------------------------------------------------------------------- /app/macos/ShareExtension/ShareController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/ShareExtension/ShareController.swift -------------------------------------------------------------------------------- /app/macos/ShareExtension/ShareExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/ShareExtension/ShareExtension.entitlements -------------------------------------------------------------------------------- /app/macos/ShareExtension/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/ShareExtension/Utilities.swift -------------------------------------------------------------------------------- /app/macos/ShareExtension/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/macos/ShareExtension/icon.icns -------------------------------------------------------------------------------- /app/ohos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/.gitignore -------------------------------------------------------------------------------- /app/ohos/AppScope/app.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/AppScope/app.json5 -------------------------------------------------------------------------------- /app/ohos/AppScope/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/AppScope/resources/base/element/string.json -------------------------------------------------------------------------------- /app/ohos/AppScope/resources/base/media/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/AppScope/resources/base/media/app_icon.png -------------------------------------------------------------------------------- /app/ohos/build-profile.json5.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/build-profile.json5.template -------------------------------------------------------------------------------- /app/ohos/entry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/entry/.gitignore -------------------------------------------------------------------------------- /app/ohos/entry/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/entry/build-profile.json5 -------------------------------------------------------------------------------- /app/ohos/entry/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/entry/hvigorfile.ts -------------------------------------------------------------------------------- /app/ohos/entry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/entry/oh-package.json5 -------------------------------------------------------------------------------- /app/ohos/entry/src/main/ets/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/entry/src/main/ets/pages/Index.ets -------------------------------------------------------------------------------- /app/ohos/entry/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/entry/src/main/module.json5 -------------------------------------------------------------------------------- /app/ohos/entry/src/ohosTest/ets/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/entry/src/ohosTest/ets/test/List.test.ets -------------------------------------------------------------------------------- /app/ohos/entry/src/ohosTest/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/entry/src/ohosTest/module.json5 -------------------------------------------------------------------------------- /app/ohos/hvigor/hvigor-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/hvigor/hvigor-config.json5 -------------------------------------------------------------------------------- /app/ohos/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/hvigorfile.ts -------------------------------------------------------------------------------- /app/ohos/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/ohos/oh-package.json5 -------------------------------------------------------------------------------- /app/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/pubspec.lock -------------------------------------------------------------------------------- /app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/pubspec.yaml -------------------------------------------------------------------------------- /app/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/rust-toolchain.toml -------------------------------------------------------------------------------- /app/test/mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/test/mocks.dart -------------------------------------------------------------------------------- /app/test/mocks.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/test/mocks.mocks.dart -------------------------------------------------------------------------------- /app/test/unit/i18n_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/test/unit/i18n_test.dart -------------------------------------------------------------------------------- /app/test/unit/provider/favorites_provider_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/test/unit/provider/favorites_provider_test.dart -------------------------------------------------------------------------------- /app/test/unit/util/api_route_builder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/test/unit/util/api_route_builder_test.dart -------------------------------------------------------------------------------- /app/test/unit/util/security_helper_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/test/unit/util/security_helper_test.dart -------------------------------------------------------------------------------- /app/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/web/favicon.png -------------------------------------------------------------------------------- /app/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/web/icons/Icon-192.png -------------------------------------------------------------------------------- /app/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/web/icons/Icon-512.png -------------------------------------------------------------------------------- /app/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /app/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /app/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/web/index.html -------------------------------------------------------------------------------- /app/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/web/manifest.json -------------------------------------------------------------------------------- /app/webview_flutter_ohos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/.gitignore -------------------------------------------------------------------------------- /app/webview_flutter_ohos/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/AUTHORS -------------------------------------------------------------------------------- /app/webview_flutter_ohos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/CHANGELOG.md -------------------------------------------------------------------------------- /app/webview_flutter_ohos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/LICENSE -------------------------------------------------------------------------------- /app/webview_flutter_ohos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/README.md -------------------------------------------------------------------------------- /app/webview_flutter_ohos/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/example/.gitignore -------------------------------------------------------------------------------- /app/webview_flutter_ohos/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/example/README.md -------------------------------------------------------------------------------- /app/webview_flutter_ohos/example/assets/www/styles/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /app/webview_flutter_ohos/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/example/lib/main.dart -------------------------------------------------------------------------------- /app/webview_flutter_ohos/example/ohos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/example/ohos/.gitignore -------------------------------------------------------------------------------- /app/webview_flutter_ohos/example/ohos/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/example/ohos/hvigorfile.ts -------------------------------------------------------------------------------- /app/webview_flutter_ohos/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/example/pubspec.yaml -------------------------------------------------------------------------------- /app/webview_flutter_ohos/lib/src/ohos_proxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/lib/src/ohos_proxy.dart -------------------------------------------------------------------------------- /app/webview_flutter_ohos/ohos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/ohos/.gitignore -------------------------------------------------------------------------------- /app/webview_flutter_ohos/ohos/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/ohos/Index.ets -------------------------------------------------------------------------------- /app/webview_flutter_ohos/ohos/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/ohos/build-profile.json5 -------------------------------------------------------------------------------- /app/webview_flutter_ohos/ohos/consumer-rules.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/webview_flutter_ohos/ohos/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/ohos/hvigorfile.ts -------------------------------------------------------------------------------- /app/webview_flutter_ohos/ohos/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/ohos/oh-package.json5 -------------------------------------------------------------------------------- /app/webview_flutter_ohos/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/webview_flutter_ohos/pubspec.yaml -------------------------------------------------------------------------------- /app/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/.gitignore -------------------------------------------------------------------------------- /app/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/CMakeLists.txt -------------------------------------------------------------------------------- /app/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /app/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /app/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /app/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /app/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/runner/Runner.rc -------------------------------------------------------------------------------- /app/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /app/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /app/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/runner/main.cpp -------------------------------------------------------------------------------- /app/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/runner/resource.h -------------------------------------------------------------------------------- /app/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /app/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /app/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/runner/utils.cpp -------------------------------------------------------------------------------- /app/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/runner/utils.h -------------------------------------------------------------------------------- /app/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /app/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/app/windows/runner/win32_window.h -------------------------------------------------------------------------------- /cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/cli/.gitignore -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- 1 | # cli 2 | 3 | The LocalSend CLI. 4 | -------------------------------------------------------------------------------- /cli/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/cli/analysis_options.yaml -------------------------------------------------------------------------------- /cli/bin/cli.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/cli/bin/cli.dart -------------------------------------------------------------------------------- /cli/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/cli/lib/main.dart -------------------------------------------------------------------------------- /cli/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/cli/pubspec.lock -------------------------------------------------------------------------------- /cli/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/cli/pubspec.yaml -------------------------------------------------------------------------------- /common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/.gitignore -------------------------------------------------------------------------------- /common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/README.md -------------------------------------------------------------------------------- /common/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/analysis_options.yaml -------------------------------------------------------------------------------- /common/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/build.yaml -------------------------------------------------------------------------------- /common/lib/api_route_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/api_route_builder.dart -------------------------------------------------------------------------------- /common/lib/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/constants.dart -------------------------------------------------------------------------------- /common/lib/isolate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/isolate.dart -------------------------------------------------------------------------------- /common/lib/model/device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/device.dart -------------------------------------------------------------------------------- /common/lib/model/device.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/device.mapper.dart -------------------------------------------------------------------------------- /common/lib/model/device_info_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/device_info_result.dart -------------------------------------------------------------------------------- /common/lib/model/dto/file_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/dto/file_dto.dart -------------------------------------------------------------------------------- /common/lib/model/dto/file_dto.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/dto/file_dto.mapper.dart -------------------------------------------------------------------------------- /common/lib/model/dto/info_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/dto/info_dto.dart -------------------------------------------------------------------------------- /common/lib/model/dto/info_dto.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/dto/info_dto.mapper.dart -------------------------------------------------------------------------------- /common/lib/model/dto/info_register_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/dto/info_register_dto.dart -------------------------------------------------------------------------------- /common/lib/model/dto/multicast_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/dto/multicast_dto.dart -------------------------------------------------------------------------------- /common/lib/model/dto/multicast_dto.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/dto/multicast_dto.mapper.dart -------------------------------------------------------------------------------- /common/lib/model/dto/register_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/dto/register_dto.dart -------------------------------------------------------------------------------- /common/lib/model/dto/register_dto.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/dto/register_dto.mapper.dart -------------------------------------------------------------------------------- /common/lib/model/file_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/file_status.dart -------------------------------------------------------------------------------- /common/lib/model/file_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/file_type.dart -------------------------------------------------------------------------------- /common/lib/model/file_type.mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/file_type.mapper.dart -------------------------------------------------------------------------------- /common/lib/model/session_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/session_status.dart -------------------------------------------------------------------------------- /common/lib/model/stored_security_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/model/stored_security_context.dart -------------------------------------------------------------------------------- /common/lib/src/isolate/child/http_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/src/isolate/child/http_provider.dart -------------------------------------------------------------------------------- /common/lib/src/isolate/child/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/src/isolate/child/main.dart -------------------------------------------------------------------------------- /common/lib/src/isolate/child/sync_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/src/isolate/child/sync_provider.dart -------------------------------------------------------------------------------- /common/lib/src/isolate/child/upload_isolate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/src/isolate/child/upload_isolate.dart -------------------------------------------------------------------------------- /common/lib/src/isolate/dto/isolate_task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/src/isolate/dto/isolate_task.dart -------------------------------------------------------------------------------- /common/lib/src/isolate/parent/actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/src/isolate/parent/actions.dart -------------------------------------------------------------------------------- /common/lib/src/isolate/parent/actions_sync.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/src/isolate/parent/actions_sync.dart -------------------------------------------------------------------------------- /common/lib/src/task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/src/task/README.md -------------------------------------------------------------------------------- /common/lib/src/task/upload/http_upload.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/src/task/upload/http_upload.dart -------------------------------------------------------------------------------- /common/lib/src/util/id_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/src/util/id_provider.dart -------------------------------------------------------------------------------- /common/lib/src/util/isolate_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/src/util/isolate_helper.dart -------------------------------------------------------------------------------- /common/lib/util/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/util/logger.dart -------------------------------------------------------------------------------- /common/lib/util/network_interfaces.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/util/network_interfaces.dart -------------------------------------------------------------------------------- /common/lib/util/sleep.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/util/sleep.dart -------------------------------------------------------------------------------- /common/lib/util/stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/util/stream.dart -------------------------------------------------------------------------------- /common/lib/util/task_runner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/lib/util/task_runner.dart -------------------------------------------------------------------------------- /common/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/pubspec.yaml -------------------------------------------------------------------------------- /common/test/unit/util/task_runner_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/common/test/unit/util/task_runner_test.dart -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Cross-Platform file sharing solution via WiFi. -------------------------------------------------------------------------------- /readme_i18n/README_CS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_CS.md -------------------------------------------------------------------------------- /readme_i18n/README_ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_ES.md -------------------------------------------------------------------------------- /readme_i18n/README_FA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_FA.md -------------------------------------------------------------------------------- /readme_i18n/README_FR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_FR.md -------------------------------------------------------------------------------- /readme_i18n/README_ID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_ID.md -------------------------------------------------------------------------------- /readme_i18n/README_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_IT.md -------------------------------------------------------------------------------- /readme_i18n/README_JA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_JA.md -------------------------------------------------------------------------------- /readme_i18n/README_KM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_KM.md -------------------------------------------------------------------------------- /readme_i18n/README_KO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_KO.md -------------------------------------------------------------------------------- /readme_i18n/README_PH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_PH.md -------------------------------------------------------------------------------- /readme_i18n/README_PL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_PL.md -------------------------------------------------------------------------------- /readme_i18n/README_PT_BR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_PT_BR.md -------------------------------------------------------------------------------- /readme_i18n/README_RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_RU.md -------------------------------------------------------------------------------- /readme_i18n/README_TH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_TH.md -------------------------------------------------------------------------------- /readme_i18n/README_TR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_TR.md -------------------------------------------------------------------------------- /readme_i18n/README_UK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_UK.md -------------------------------------------------------------------------------- /readme_i18n/README_VI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_VI.md -------------------------------------------------------------------------------- /readme_i18n/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/readme_i18n/README_ZH.md -------------------------------------------------------------------------------- /scripts/Languages/ChineseSimplified.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/Languages/ChineseSimplified.isl -------------------------------------------------------------------------------- /scripts/appimage/AppImageBuilder_arm_64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/appimage/AppImageBuilder_arm_64.yml -------------------------------------------------------------------------------- /scripts/appimage/AppImageBuilder_x86_64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/appimage/AppImageBuilder_x86_64.yml -------------------------------------------------------------------------------- /scripts/compile_android_apk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/compile_android_apk.sh -------------------------------------------------------------------------------- /scripts/compile_android_appbundle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/compile_android_appbundle.ps1 -------------------------------------------------------------------------------- /scripts/compile_ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/compile_ios.sh -------------------------------------------------------------------------------- /scripts/compile_linux_appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/compile_linux_appimage.sh -------------------------------------------------------------------------------- /scripts/compile_mac_appstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/compile_mac_appstore.sh -------------------------------------------------------------------------------- /scripts/compile_mac_dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/compile_mac_dmg.sh -------------------------------------------------------------------------------- /scripts/compile_windows_exe-inno.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/compile_windows_exe-inno.iss -------------------------------------------------------------------------------- /scripts/compile_windows_exe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/compile_windows_exe.ps1 -------------------------------------------------------------------------------- /scripts/compile_windows_msix_signed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/compile_windows_msix_signed.ps1 -------------------------------------------------------------------------------- /scripts/compile_windows_msix_store.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/compile_windows_msix_store.ps1 -------------------------------------------------------------------------------- /scripts/compile_windows_zip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/compile_windows_zip.ps1 -------------------------------------------------------------------------------- /scripts/contributions_digester.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/contributions_digester.dart -------------------------------------------------------------------------------- /scripts/dmg/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/dmg/background.png -------------------------------------------------------------------------------- /scripts/download_windows_msix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/download_windows_msix.ps1 -------------------------------------------------------------------------------- /scripts/msix/msix_downloader.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/msix/msix_downloader.ps1 -------------------------------------------------------------------------------- /scripts/remove_proprietary_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/remove_proprietary_dependencies.sh -------------------------------------------------------------------------------- /scripts/verify_exe_signature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/verify_exe_signature.ps1 -------------------------------------------------------------------------------- /scripts/windows/x64/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/windows/x64/msvcp140.dll -------------------------------------------------------------------------------- /scripts/windows/x64/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/windows/x64/vcruntime140.dll -------------------------------------------------------------------------------- /scripts/windows/x64/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/scripts/windows/x64/vcruntime140_1.dll -------------------------------------------------------------------------------- /tmp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloereed/localsend-ohos/HEAD/tmp.ps1 --------------------------------------------------------------------------------