├── .gitignore ├── AppScope ├── app.json5 └── resources │ └── base │ ├── element │ └── string.json │ └── media │ └── app_icon.png ├── README.md ├── common └── utils │ ├── .gitignore │ ├── Index.ets │ ├── build-profile.json5 │ ├── consumer-rules.txt │ ├── hvigorfile.ts │ ├── obfuscation-rules.txt │ ├── oh-package.json5 │ └── src │ ├── main │ ├── ets │ │ ├── common │ │ │ ├── CommonConstants.ets │ │ │ └── CommonEnums.ets │ │ ├── components │ │ │ └── MainPage.ets │ │ └── utils │ │ │ ├── BreakpointSystem.ets │ │ │ ├── CommonUtil.ets │ │ │ ├── Logger.ets │ │ │ ├── ObservedArray.ets │ │ │ ├── PermissionChecker.ets │ │ │ ├── WindowUtil.ets │ │ │ └── vibrate.ets │ ├── module.json5 │ └── resources │ │ ├── base │ │ └── element │ │ │ └── string.json │ │ ├── en_US │ │ └── element │ │ │ └── string.json │ │ └── zh_CN │ │ └── element │ │ └── string.json │ ├── ohosTest │ ├── ets │ │ └── test │ │ │ ├── Ability.test.ets │ │ │ └── List.test.ets │ └── module.json5 │ └── test │ ├── List.test.ets │ └── LocalUnit.test.ets ├── entry ├── .gitignore ├── build-profile.json5 ├── hvigorfile.ts ├── obfuscation-rules.txt ├── oh-package.json5 └── src │ ├── main │ ├── ets │ │ ├── entryability │ │ │ └── EntryAbility.ets │ │ ├── entryaccessibilityextability │ │ │ ├── AccessibilityManager.ets │ │ │ └── EntryAccessibilityExtAbility.ets │ │ ├── entrybackupability │ │ │ └── EntryBackupAbility.ets │ │ └── pages │ │ │ └── Index.ets │ ├── module.json5 │ └── resources │ │ ├── base │ │ ├── element │ │ │ ├── color.json │ │ │ └── string.json │ │ ├── media │ │ │ ├── alipay.png │ │ │ ├── background.png │ │ │ ├── bilibili.png │ │ │ ├── foreground.png │ │ │ ├── kfc.png │ │ │ ├── layered_image.json │ │ │ ├── luckin_coffee.png │ │ │ ├── mcdonald.png │ │ │ └── startIcon.png │ │ └── profile │ │ │ ├── backup_config.json │ │ │ ├── entryaccessibilityextability.json │ │ │ └── main_pages.json │ │ ├── en_US │ │ └── element │ │ │ └── string.json │ │ └── zh_CN │ │ └── element │ │ └── string.json │ ├── mock │ └── mock-config.json5 │ ├── ohosTest │ ├── ets │ │ └── test │ │ │ ├── Ability.test.ets │ │ │ └── List.test.ets │ └── module.json5 │ └── test │ ├── List.test.ets │ └── LocalUnit.test.ets ├── example.png ├── hvigor └── hvigor-config.json5 ├── hvigorfile.ts ├── oh-package-lock.json5 ├── oh-package.json5 ├── 无障碍事件响应流程图.drawio └── 设计图.drawio /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/.gitignore -------------------------------------------------------------------------------- /AppScope/app.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/AppScope/app.json5 -------------------------------------------------------------------------------- /AppScope/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/AppScope/resources/base/element/string.json -------------------------------------------------------------------------------- /AppScope/resources/base/media/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/AppScope/resources/base/media/app_icon.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/README.md -------------------------------------------------------------------------------- /common/utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/.gitignore -------------------------------------------------------------------------------- /common/utils/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/Index.ets -------------------------------------------------------------------------------- /common/utils/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/build-profile.json5 -------------------------------------------------------------------------------- /common/utils/consumer-rules.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/utils/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/hvigorfile.ts -------------------------------------------------------------------------------- /common/utils/obfuscation-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/obfuscation-rules.txt -------------------------------------------------------------------------------- /common/utils/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/oh-package.json5 -------------------------------------------------------------------------------- /common/utils/src/main/ets/common/CommonConstants.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/main/ets/common/CommonConstants.ets -------------------------------------------------------------------------------- /common/utils/src/main/ets/common/CommonEnums.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/main/ets/common/CommonEnums.ets -------------------------------------------------------------------------------- /common/utils/src/main/ets/components/MainPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/main/ets/components/MainPage.ets -------------------------------------------------------------------------------- /common/utils/src/main/ets/utils/BreakpointSystem.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/main/ets/utils/BreakpointSystem.ets -------------------------------------------------------------------------------- /common/utils/src/main/ets/utils/CommonUtil.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/main/ets/utils/CommonUtil.ets -------------------------------------------------------------------------------- /common/utils/src/main/ets/utils/Logger.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/main/ets/utils/Logger.ets -------------------------------------------------------------------------------- /common/utils/src/main/ets/utils/ObservedArray.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/main/ets/utils/ObservedArray.ets -------------------------------------------------------------------------------- /common/utils/src/main/ets/utils/PermissionChecker.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/main/ets/utils/PermissionChecker.ets -------------------------------------------------------------------------------- /common/utils/src/main/ets/utils/WindowUtil.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/main/ets/utils/WindowUtil.ets -------------------------------------------------------------------------------- /common/utils/src/main/ets/utils/vibrate.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/main/ets/utils/vibrate.ets -------------------------------------------------------------------------------- /common/utils/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/main/module.json5 -------------------------------------------------------------------------------- /common/utils/src/main/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/main/resources/base/element/string.json -------------------------------------------------------------------------------- /common/utils/src/main/resources/en_US/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/main/resources/en_US/element/string.json -------------------------------------------------------------------------------- /common/utils/src/main/resources/zh_CN/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/main/resources/zh_CN/element/string.json -------------------------------------------------------------------------------- /common/utils/src/ohosTest/ets/test/Ability.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/ohosTest/ets/test/Ability.test.ets -------------------------------------------------------------------------------- /common/utils/src/ohosTest/ets/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/ohosTest/ets/test/List.test.ets -------------------------------------------------------------------------------- /common/utils/src/ohosTest/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/ohosTest/module.json5 -------------------------------------------------------------------------------- /common/utils/src/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/test/List.test.ets -------------------------------------------------------------------------------- /common/utils/src/test/LocalUnit.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/common/utils/src/test/LocalUnit.test.ets -------------------------------------------------------------------------------- /entry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/.gitignore -------------------------------------------------------------------------------- /entry/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/build-profile.json5 -------------------------------------------------------------------------------- /entry/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/hvigorfile.ts -------------------------------------------------------------------------------- /entry/obfuscation-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/obfuscation-rules.txt -------------------------------------------------------------------------------- /entry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/oh-package.json5 -------------------------------------------------------------------------------- /entry/src/main/ets/entryability/EntryAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/ets/entryability/EntryAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/entryaccessibilityextability/AccessibilityManager.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/ets/entryaccessibilityextability/AccessibilityManager.ets -------------------------------------------------------------------------------- /entry/src/main/ets/entryaccessibilityextability/EntryAccessibilityExtAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/ets/entryaccessibilityextability/EntryAccessibilityExtAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/entrybackupability/EntryBackupAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/ets/entrybackupability/EntryBackupAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/ets/pages/Index.ets -------------------------------------------------------------------------------- /entry/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/module.json5 -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/resources/base/element/color.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/resources/base/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/resources/base/media/alipay.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/resources/base/media/background.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/bilibili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/resources/base/media/bilibili.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/resources/base/media/foreground.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/kfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/resources/base/media/kfc.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/layered_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/resources/base/media/layered_image.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/luckin_coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/resources/base/media/luckin_coffee.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/mcdonald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/resources/base/media/mcdonald.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/startIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/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/entryaccessibilityextability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/resources/base/profile/entryaccessibilityextability.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/main_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/resources/base/profile/main_pages.json -------------------------------------------------------------------------------- /entry/src/main/resources/en_US/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/resources/en_US/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/zh_CN/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/main/resources/zh_CN/element/string.json -------------------------------------------------------------------------------- /entry/src/mock/mock-config.json5: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/Ability.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/ohosTest/ets/test/Ability.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/ohosTest/ets/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/ohosTest/module.json5 -------------------------------------------------------------------------------- /entry/src/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/test/LocalUnit.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/entry/src/test/LocalUnit.test.ets -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/example.png -------------------------------------------------------------------------------- /hvigor/hvigor-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/hvigor/hvigor-config.json5 -------------------------------------------------------------------------------- /hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/hvigorfile.ts -------------------------------------------------------------------------------- /oh-package-lock.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/oh-package-lock.json5 -------------------------------------------------------------------------------- /oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/oh-package.json5 -------------------------------------------------------------------------------- /无障碍事件响应流程图.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/无障碍事件响应流程图.drawio -------------------------------------------------------------------------------- /设计图.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchFishCat/HomoJump/HEAD/设计图.drawio --------------------------------------------------------------------------------