├── .gitignore ├── AppScope ├── app.json5 └── resources │ └── base │ ├── element │ └── string.json │ └── media │ ├── app_icon.png │ └── app_logo.png ├── LICENSE ├── README.md ├── README_en-US.md ├── Screenshots ├── ReceiveTab.png ├── SendTab.png ├── SettingsTab.png └── Total.png ├── code-linter.json5 ├── entry ├── .gitignore ├── build-profile.json5 ├── hvigorfile.ts ├── obfuscation-rules.txt ├── oh-package.json5 └── src │ ├── main │ ├── ets │ │ ├── controller │ │ │ ├── AnimController.ets │ │ │ └── ShareController.ets │ │ ├── entryability │ │ │ └── EntryAbility.ets │ │ ├── entrybackupability │ │ │ └── EntryBackupAbility.ets │ │ ├── model │ │ │ ├── DeviceInfo.ets │ │ │ ├── FileInfo.ets │ │ │ ├── PreUploadResponse.ets │ │ │ └── RegisteredDevice.ets │ │ ├── pages │ │ │ ├── Index.ets │ │ │ ├── ReceiveTab.ets │ │ │ ├── SendTab.ets │ │ │ └── SettingsTab.ets │ │ └── utils │ │ │ ├── LogoIndicator.ets │ │ │ ├── PickFile.ets │ │ │ ├── ReadConfig.ets │ │ │ ├── ScanLocalNetwork.ets │ │ │ ├── SendFile.ets │ │ │ ├── Server.ets │ │ │ └── UDPBroadcast.ets │ ├── module.json5 │ └── resources │ │ ├── base │ │ ├── element │ │ │ ├── color.json │ │ │ └── string.json │ │ ├── media │ │ │ ├── RecvPageLogo.png │ │ │ ├── background.png │ │ │ ├── device_type_desktop.png │ │ │ ├── device_type_mobile.png │ │ │ ├── device_type_unknown.png │ │ │ ├── file_type_file.png │ │ │ ├── file_type_file_2.png │ │ │ ├── file_type_media.png │ │ │ ├── file_type_text.png │ │ │ ├── foreground.png │ │ │ ├── layered_image.json │ │ │ └── startIcon.png │ │ └── profile │ │ │ ├── backup_config.json │ │ │ └── main_pages.json │ │ └── dark │ │ └── element │ │ └── color.json │ ├── mock │ └── mock-config.json5 │ ├── ohosTest │ ├── ets │ │ └── test │ │ │ ├── Ability.test.ets │ │ │ └── List.test.ets │ └── module.json5 │ └── test │ ├── List.test.ets │ └── LocalUnit.test.ets ├── hvigor └── hvigor-config.json5 ├── hvigorfile.ts ├── oh-package-lock.json5 └── oh-package.json5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/.gitignore -------------------------------------------------------------------------------- /AppScope/app.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/AppScope/app.json5 -------------------------------------------------------------------------------- /AppScope/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/AppScope/resources/base/element/string.json -------------------------------------------------------------------------------- /AppScope/resources/base/media/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/AppScope/resources/base/media/app_icon.png -------------------------------------------------------------------------------- /AppScope/resources/base/media/app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/AppScope/resources/base/media/app_logo.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/README.md -------------------------------------------------------------------------------- /README_en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/README_en-US.md -------------------------------------------------------------------------------- /Screenshots/ReceiveTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/Screenshots/ReceiveTab.png -------------------------------------------------------------------------------- /Screenshots/SendTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/Screenshots/SendTab.png -------------------------------------------------------------------------------- /Screenshots/SettingsTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/Screenshots/SettingsTab.png -------------------------------------------------------------------------------- /Screenshots/Total.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/Screenshots/Total.png -------------------------------------------------------------------------------- /code-linter.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/code-linter.json5 -------------------------------------------------------------------------------- /entry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/.gitignore -------------------------------------------------------------------------------- /entry/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/build-profile.json5 -------------------------------------------------------------------------------- /entry/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/hvigorfile.ts -------------------------------------------------------------------------------- /entry/obfuscation-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/obfuscation-rules.txt -------------------------------------------------------------------------------- /entry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/oh-package.json5 -------------------------------------------------------------------------------- /entry/src/main/ets/controller/AnimController.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/controller/AnimController.ets -------------------------------------------------------------------------------- /entry/src/main/ets/controller/ShareController.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/controller/ShareController.ets -------------------------------------------------------------------------------- /entry/src/main/ets/entryability/EntryAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/entryability/EntryAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/entrybackupability/EntryBackupAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/entrybackupability/EntryBackupAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/model/DeviceInfo.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/model/DeviceInfo.ets -------------------------------------------------------------------------------- /entry/src/main/ets/model/FileInfo.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/model/FileInfo.ets -------------------------------------------------------------------------------- /entry/src/main/ets/model/PreUploadResponse.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/model/PreUploadResponse.ets -------------------------------------------------------------------------------- /entry/src/main/ets/model/RegisteredDevice.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/model/RegisteredDevice.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/pages/Index.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/ReceiveTab.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/pages/ReceiveTab.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/SendTab.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/pages/SendTab.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/SettingsTab.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/pages/SettingsTab.ets -------------------------------------------------------------------------------- /entry/src/main/ets/utils/LogoIndicator.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/utils/LogoIndicator.ets -------------------------------------------------------------------------------- /entry/src/main/ets/utils/PickFile.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/utils/PickFile.ets -------------------------------------------------------------------------------- /entry/src/main/ets/utils/ReadConfig.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/utils/ReadConfig.ets -------------------------------------------------------------------------------- /entry/src/main/ets/utils/ScanLocalNetwork.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/utils/ScanLocalNetwork.ets -------------------------------------------------------------------------------- /entry/src/main/ets/utils/SendFile.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/utils/SendFile.ets -------------------------------------------------------------------------------- /entry/src/main/ets/utils/Server.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/utils/Server.ets -------------------------------------------------------------------------------- /entry/src/main/ets/utils/UDPBroadcast.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/ets/utils/UDPBroadcast.ets -------------------------------------------------------------------------------- /entry/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/module.json5 -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/element/color.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/RecvPageLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/media/RecvPageLogo.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/media/background.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/device_type_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/media/device_type_desktop.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/device_type_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/media/device_type_mobile.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/device_type_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/media/device_type_unknown.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/file_type_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/media/file_type_file.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/file_type_file_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/media/file_type_file_2.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/file_type_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/media/file_type_media.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/file_type_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/media/file_type_text.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/media/foreground.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/layered_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/media/layered_image.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/startIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/media/startIcon.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/backup_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "allowToBackupRestore": true 3 | } -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/main_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/base/profile/main_pages.json -------------------------------------------------------------------------------- /entry/src/main/resources/dark/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/main/resources/dark/element/color.json -------------------------------------------------------------------------------- /entry/src/mock/mock-config.json5: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/Ability.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/ohosTest/ets/test/Ability.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/ohosTest/ets/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/ohosTest/module.json5 -------------------------------------------------------------------------------- /entry/src/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/test/LocalUnit.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/entry/src/test/LocalUnit.test.ets -------------------------------------------------------------------------------- /hvigor/hvigor-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/hvigor/hvigor-config.json5 -------------------------------------------------------------------------------- /hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/hvigorfile.ts -------------------------------------------------------------------------------- /oh-package-lock.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/oh-package-lock.json5 -------------------------------------------------------------------------------- /oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gokr-ble/LocalSendLite_HarmonyOS_NEXT/HEAD/oh-package.json5 --------------------------------------------------------------------------------