├── .gitignore ├── AppScope ├── app.json5 └── resources │ └── base │ ├── element │ └── string.json │ └── media │ └── app_icon.png ├── README.md ├── entry ├── .gitignore ├── build-profile.json5 ├── hvigorfile.ts ├── libs │ └── net-signed-1.1.7.har ├── obfuscation-rules.txt ├── oh-package-lock.json5 ├── oh-package.json5 └── src │ ├── main │ ├── ets │ │ ├── entryability │ │ │ └── EntryAbility.ets │ │ └── pages │ │ │ ├── App.ets │ │ │ ├── CustomNetPlugin.ets │ │ │ ├── Index.ets │ │ │ └── MyNetErrorInterceptor.ets │ ├── module.json5 │ └── resources │ │ ├── base │ │ ├── element │ │ │ ├── color.json │ │ │ └── string.json │ │ ├── media │ │ │ ├── icon.png │ │ │ └── startIcon.png │ │ └── profile │ │ │ └── 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 │ │ ├── testability │ │ │ ├── TestAbility.ets │ │ │ └── pages │ │ │ │ └── Index.ets │ │ └── testrunner │ │ │ └── OpenHarmonyTestRunner.ets │ ├── 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 ├── hvigorw ├── hvigorw.bat ├── images ├── abner.jpg ├── harmony_vip.png ├── harmonyos_dialog.png ├── harmonyos_error.png ├── net_243_001.png ├── net_243_002.png └── net_243_003.png ├── oh-package-lock.json5 └── oh-package.json5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/.gitignore -------------------------------------------------------------------------------- /AppScope/app.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/AppScope/app.json5 -------------------------------------------------------------------------------- /AppScope/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/AppScope/resources/base/element/string.json -------------------------------------------------------------------------------- /AppScope/resources/base/media/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/AppScope/resources/base/media/app_icon.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/README.md -------------------------------------------------------------------------------- /entry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/.gitignore -------------------------------------------------------------------------------- /entry/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/build-profile.json5 -------------------------------------------------------------------------------- /entry/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/hvigorfile.ts -------------------------------------------------------------------------------- /entry/libs/net-signed-1.1.7.har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/libs/net-signed-1.1.7.har -------------------------------------------------------------------------------- /entry/obfuscation-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/obfuscation-rules.txt -------------------------------------------------------------------------------- /entry/oh-package-lock.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/oh-package-lock.json5 -------------------------------------------------------------------------------- /entry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/oh-package.json5 -------------------------------------------------------------------------------- /entry/src/main/ets/entryability/EntryAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/main/ets/entryability/EntryAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/App.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/main/ets/pages/App.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/CustomNetPlugin.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/main/ets/pages/CustomNetPlugin.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/main/ets/pages/Index.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/MyNetErrorInterceptor.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/main/ets/pages/MyNetErrorInterceptor.ets -------------------------------------------------------------------------------- /entry/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/main/module.json5 -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/main/resources/base/element/color.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/main/resources/base/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/main/resources/base/media/icon.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/startIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/main/resources/base/media/startIcon.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/main_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/main/resources/base/profile/main_pages.json -------------------------------------------------------------------------------- /entry/src/main/resources/en_US/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/main/resources/en_US/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/zh_CN/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/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/AbnerMing888/HarmonyOsNet/HEAD/entry/src/ohosTest/ets/test/Ability.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/ohosTest/ets/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/testability/TestAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/ohosTest/ets/testability/TestAbility.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/testability/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/ohosTest/ets/testability/pages/Index.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/ohosTest/module.json5 -------------------------------------------------------------------------------- /entry/src/ohosTest/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/ohosTest/resources/base/element/color.json -------------------------------------------------------------------------------- /entry/src/ohosTest/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/ohosTest/resources/base/element/string.json -------------------------------------------------------------------------------- /entry/src/ohosTest/resources/base/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/ohosTest/resources/base/media/icon.png -------------------------------------------------------------------------------- /entry/src/ohosTest/resources/base/profile/test_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/ohosTest/resources/base/profile/test_pages.json -------------------------------------------------------------------------------- /entry/src/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/test/LocalUnit.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/entry/src/test/LocalUnit.test.ets -------------------------------------------------------------------------------- /hvigor/hvigor-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/hvigor/hvigor-config.json5 -------------------------------------------------------------------------------- /hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/hvigorfile.ts -------------------------------------------------------------------------------- /hvigorw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/hvigorw -------------------------------------------------------------------------------- /hvigorw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/hvigorw.bat -------------------------------------------------------------------------------- /images/abner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/images/abner.jpg -------------------------------------------------------------------------------- /images/harmony_vip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/images/harmony_vip.png -------------------------------------------------------------------------------- /images/harmonyos_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/images/harmonyos_dialog.png -------------------------------------------------------------------------------- /images/harmonyos_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/images/harmonyos_error.png -------------------------------------------------------------------------------- /images/net_243_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/images/net_243_001.png -------------------------------------------------------------------------------- /images/net_243_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/images/net_243_002.png -------------------------------------------------------------------------------- /images/net_243_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/images/net_243_003.png -------------------------------------------------------------------------------- /oh-package-lock.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/oh-package-lock.json5 -------------------------------------------------------------------------------- /oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbnerMing888/HarmonyOsNet/HEAD/oh-package.json5 --------------------------------------------------------------------------------