├── .gitignore ├── AppScope ├── app.json5 └── resources │ └── base │ ├── element │ └── string.json │ └── media │ └── app_icon.png ├── LICENSE ├── README.md ├── code-linter.json5 ├── entry ├── .gitignore ├── build-profile.json5 ├── hvigorfile.ts ├── obfuscation-rules.txt ├── oh-package.json5 └── src │ ├── main │ ├── ets │ │ ├── api │ │ │ ├── auth.ets │ │ │ ├── comic.ets │ │ │ ├── models.ets │ │ │ └── profile.ets │ │ ├── common │ │ │ ├── Config.ets │ │ │ ├── Consts.ets │ │ │ ├── Model.ets │ │ │ └── Types.ets │ │ ├── entryability │ │ │ └── EntryAbility.ets │ │ ├── pages │ │ │ ├── Index.ets │ │ │ ├── Login.ets │ │ │ ├── Settings.ets │ │ │ ├── component │ │ │ │ ├── ComicCard.ets │ │ │ │ ├── ComicCardScroll.ets │ │ │ │ ├── ComicList.ets │ │ │ │ ├── ComicListItem.ets │ │ │ │ ├── CommentList.ets │ │ │ │ ├── CommentListItem.ets │ │ │ │ ├── HalfModal.ets │ │ │ │ ├── SearchHead.ets │ │ │ │ ├── SettingsItem.ets │ │ │ │ └── TitleBar.ets │ │ │ └── view │ │ │ │ ├── Categories.ets │ │ │ │ ├── ComicDetail.ets │ │ │ │ ├── ComicReader.ets │ │ │ │ ├── ComicSearch.ets │ │ │ │ ├── Comics.ets │ │ │ │ ├── Comments.ets │ │ │ │ ├── Home.ets │ │ │ │ ├── Leaderboard.ets │ │ │ │ └── Main.ets │ │ └── utils │ │ │ ├── History.ets │ │ │ ├── Http.ets │ │ │ └── Preference.ets │ ├── module.json5 │ └── resources │ │ ├── base │ │ ├── element │ │ │ ├── color.json │ │ │ └── string.json │ │ ├── media │ │ │ ├── background.png │ │ │ ├── cat_forum.jpg │ │ │ ├── cat_latest.jpg │ │ │ ├── cat_leaderboard.jpg │ │ │ ├── cat_random.jpg │ │ │ ├── foreground.png │ │ │ ├── ic_public_arrow_left.svg │ │ │ ├── ic_public_arrow_right.svg │ │ │ ├── ic_public_book.svg │ │ │ ├── ic_public_category.svg │ │ │ ├── ic_public_category_filled.svg │ │ │ ├── ic_public_comments.svg │ │ │ ├── ic_public_delete.svg │ │ │ ├── ic_public_eye.svg │ │ │ ├── ic_public_heart.svg │ │ │ ├── ic_public_home.svg │ │ │ ├── ic_public_home_filled.svg │ │ │ ├── ic_public_more.svg │ │ │ ├── ic_public_quit.svg │ │ │ ├── ic_public_refresh.svg │ │ │ ├── ic_public_search.svg │ │ │ ├── ic_public_settings.svg │ │ │ ├── ic_public_settings_filled.svg │ │ │ ├── ic_public_sort.svg │ │ │ ├── ic_public_user.svg │ │ │ ├── ic_public_user_filled.svg │ │ │ ├── layered_image.json │ │ │ ├── loading.gif │ │ │ ├── login_bg.png │ │ │ ├── startIcon.png │ │ │ └── tip_error.png │ │ └── profile │ │ │ ├── main_pages.json │ │ │ └── route_map.json │ │ ├── en_US │ │ └── element │ │ │ └── string.json │ │ └── zh_CN │ │ └── element │ │ └── string.json │ ├── mock │ └── mock-config.json5 │ └── ohosTest │ └── module.json5 ├── hvigor └── hvigor-config.json5 ├── hvigorfile.ts ├── oh-package-lock.json5 └── oh-package.json5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/.gitignore -------------------------------------------------------------------------------- /AppScope/app.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/AppScope/app.json5 -------------------------------------------------------------------------------- /AppScope/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/AppScope/resources/base/element/string.json -------------------------------------------------------------------------------- /AppScope/resources/base/media/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/AppScope/resources/base/media/app_icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/README.md -------------------------------------------------------------------------------- /code-linter.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/code-linter.json5 -------------------------------------------------------------------------------- /entry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/.gitignore -------------------------------------------------------------------------------- /entry/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/build-profile.json5 -------------------------------------------------------------------------------- /entry/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/hvigorfile.ts -------------------------------------------------------------------------------- /entry/obfuscation-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/obfuscation-rules.txt -------------------------------------------------------------------------------- /entry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/oh-package.json5 -------------------------------------------------------------------------------- /entry/src/main/ets/api/auth.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/api/auth.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/comic.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/api/comic.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/models.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/api/models.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/profile.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/api/profile.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/Config.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/common/Config.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/Consts.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/common/Consts.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/Model.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/common/Model.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/Types.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/common/Types.ets -------------------------------------------------------------------------------- /entry/src/main/ets/entryability/EntryAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/entryability/EntryAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/Index.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/Login.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/Login.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/Settings.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/Settings.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/component/ComicCard.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/component/ComicCard.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/component/ComicCardScroll.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/component/ComicCardScroll.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/component/ComicList.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/component/ComicList.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/component/ComicListItem.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/component/ComicListItem.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/component/CommentList.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/component/CommentList.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/component/CommentListItem.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/component/CommentListItem.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/component/HalfModal.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/component/HalfModal.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/component/SearchHead.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/component/SearchHead.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/component/SettingsItem.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/component/SettingsItem.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/component/TitleBar.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/component/TitleBar.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/view/Categories.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/view/Categories.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/view/ComicDetail.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/view/ComicDetail.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/view/ComicReader.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/view/ComicReader.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/view/ComicSearch.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/view/ComicSearch.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/view/Comics.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/view/Comics.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/view/Comments.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/view/Comments.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/view/Home.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/view/Home.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/view/Leaderboard.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/view/Leaderboard.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/view/Main.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/pages/view/Main.ets -------------------------------------------------------------------------------- /entry/src/main/ets/utils/History.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/utils/History.ets -------------------------------------------------------------------------------- /entry/src/main/ets/utils/Http.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/utils/Http.ets -------------------------------------------------------------------------------- /entry/src/main/ets/utils/Preference.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/ets/utils/Preference.ets -------------------------------------------------------------------------------- /entry/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/module.json5 -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/element/color.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/background.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/cat_forum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/cat_forum.jpg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/cat_latest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/cat_latest.jpg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/cat_leaderboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/cat_leaderboard.jpg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/cat_random.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/cat_random.jpg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/foreground.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_arrow_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_arrow_left.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_arrow_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_arrow_right.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_book.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_category.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_category_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_category_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_comments.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_delete.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_eye.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_heart.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_home.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_home_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_home_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_more.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_quit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_quit.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_refresh.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_search.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_settings.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_settings_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_settings_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_sort.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_user.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_user_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/ic_public_user_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/layered_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/layered_image.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/loading.gif -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/login_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/login_bg.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/startIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/startIcon.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/tip_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/media/tip_error.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/main_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/profile/main_pages.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/route_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/base/profile/route_map.json -------------------------------------------------------------------------------- /entry/src/main/resources/en_US/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/en_US/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/zh_CN/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/main/resources/zh_CN/element/string.json -------------------------------------------------------------------------------- /entry/src/mock/mock-config.json5: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /entry/src/ohosTest/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/entry/src/ohosTest/module.json5 -------------------------------------------------------------------------------- /hvigor/hvigor-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/hvigor/hvigor-config.json5 -------------------------------------------------------------------------------- /hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/hvigorfile.ts -------------------------------------------------------------------------------- /oh-package-lock.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/oh-package-lock.json5 -------------------------------------------------------------------------------- /oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luxcis/PicACG_Next/HEAD/oh-package.json5 --------------------------------------------------------------------------------