@ohos-cpf/3rdloop 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +244 -244
- package/bin/3rdloop.mjs +46 -46
- package/lib/cli.js +781 -781
- package/lib/config-cmd.js +451 -451
- package/lib/config.js +318 -318
- package/lib/doctor.js +113 -113
- package/lib/exit-codes.js +30 -30
- package/lib/opencode.js +155 -155
- package/lib/orch.js +426 -426
- package/lib/queries.js +263 -263
- package/lib/step.js +325 -325
- package/lib/ui.js +222 -222
- package/lib/update.js +279 -279
- package/lib/workflow.js +308 -308
- package/lib/workflows.js +131 -131
- package/package.json +50 -50
- package/vendor/Server/Agent/SkillSelector/README.md +343 -343
- package/vendor/Server/Agent/SkillSelector/core/Agent.js +207 -207
- package/vendor/Server/Agent/SkillSelector/index.js +14 -14
- package/vendor/Server/Agent/SkillSelector/llm/llmClient.js +313 -313
- package/vendor/Server/Agent/SkillSelector/llm/prompts.js +161 -161
- package/vendor/Server/Agent/SkillSelector/llm/reactSteps.js +144 -144
- package/vendor/Server/Agent/SkillSelector/matcher/fuzzyMatcher.js +433 -433
- package/vendor/Server/Agent/SkillSelector/scanner/skillScanner.js +382 -382
- package/vendor/Server/Agent/SkillSelector/utils/actionWords.js +59 -59
- package/vendor/Server/Brain/AnalysisStrategies.js +422 -422
- package/vendor/Server/Brain/Brain.js +686 -686
- package/vendor/Server/Brain/DecompositionStrategies.js +621 -621
- package/vendor/Server/Brain/PlanPersistence.js +196 -196
- package/vendor/Server/Brain/SkillExecutor.js +251 -251
- package/vendor/Server/Brain/index.js +11 -11
- package/vendor/Server/CLI/cli.js +275 -275
- package/vendor/Server/CLI/deveco-code/index.js +71 -71
- package/vendor/Server/CLI/deveco-code.js +5 -5
- package/vendor/Server/CLI/opencode/index.js +817 -818
- package/vendor/Server/CLI/opencode.js +5 -5
- package/vendor/Server/DbUse/MessageArchive.js +61 -61
- package/vendor/Server/DbUse/StorageManager.js +107 -107
- package/vendor/Server/DbUse/adapters/BaseAdapter.js +94 -94
- package/vendor/Server/DbUse/adapters/FileAdapter.js +138 -138
- package/vendor/Server/DbUse/adapters/JsonAdapter.js +138 -138
- package/vendor/Server/DbUse/adapters/JsonlAdapter.js +114 -114
- package/vendor/Server/DbUse/adapters/SqliteAdapter.js +157 -157
- package/vendor/Server/DbUse/index.js +160 -160
- package/vendor/Server/DbUse/stores/SessionStore.js +279 -279
- package/vendor/Server/DbUse/stores/TaskExecutionStore.js +133 -133
- package/vendor/Server/DbUse/stores/TaskRegistryStore.js +262 -262
- package/vendor/Server/DbUse/stores/TaskStepStore.js +279 -279
- package/vendor/Server/FlexRunner/FlexRunner.js +1759 -1759
- package/vendor/Server/FlexRunner/index.js +12 -12
- package/vendor/Server/Knowledge/KnowledgeImporter.js +523 -523
- package/vendor/Server/Knowledge/KnowledgeManager.js +341 -341
- package/vendor/Server/Knowledge/index.js +33 -33
- package/vendor/Server/LoopEngine/LoopEngine.js +1133 -1133
- package/vendor/Server/LoopEngine/index.js +11 -11
- package/vendor/Server/Orchestrator/Orchestrator.js +0 -3
- package/vendor/Server/Orchestrator/StepNode.js +312 -312
- package/vendor/Server/Orchestrator/index.js +13 -13
- package/vendor/Server/Routes/controllers/BrainController.js +241 -241
- package/vendor/Server/Routes/controllers/FlexRunnerController.js +1125 -1125
- package/vendor/Server/Routes/controllers/HealthController.js +44 -44
- package/vendor/Server/Routes/controllers/KnowledgeImportController.js +355 -355
- package/vendor/Server/Routes/controllers/LoopEngineController.js +788 -788
- package/vendor/Server/Routes/controllers/StatsController.js +57 -57
- package/vendor/Server/Routes/controllers/StreamController.js +67 -67
- package/vendor/Server/Routes/library/logger.js +179 -179
- package/vendor/Server/Routes/library/zipArchive.js +172 -172
- package/vendor/Server/Routes/router/Router.js +204 -204
- package/vendor/Server/Routes/routes/brain.js +47 -47
- package/vendor/Server/Routes/routes/flexrunner.js +72 -72
- package/vendor/Server/Routes/routes/health.js +28 -28
- package/vendor/Server/Routes/routes/index.js +57 -57
- package/vendor/Server/Routes/routes/knowledge.js +55 -55
- package/vendor/Server/Routes/routes/loopengine.js +58 -58
- package/vendor/Server/Routes/routes/orchestrator.js +61 -61
- package/vendor/Server/Routes/routes/registry.js +97 -97
- package/vendor/Server/Routes/routes/stats.js +23 -23
- package/vendor/Server/Routes/routes/stream.js +30 -30
- package/vendor/Server/Routes/server.js +203 -203
- package/vendor/Server/Routes/sse/SseHub.js +308 -308
- package/vendor/Server/Skills/acceptance-check/SKILL.md +191 -191
- package/vendor/Server/Skills/acceptance-check/references/PHASE1_ARTIFACT_COLLECTION.md +52 -52
- package/vendor/Server/Skills/acceptance-check/references/PHASE2_CRITERIA_EVALUATION.md +77 -77
- package/vendor/Server/Skills/acceptance-check/references/PHASE2_EVIDENCE_VERIFICATION.md +70 -70
- package/vendor/Server/Skills/arkts-code-check/SKILL.md +320 -320
- package/vendor/Server/Skills/arkts-code-check/references/CODE_CHECK_GUIDE.md +210 -210
- package/vendor/Server/Skills/arkts-code-check/references/FILE_TYPE_GUIDE.md +28 -28
- package/vendor/Server/Skills/arkts-code-check/references/PHASE1_INFO_COLLECTION.md +233 -233
- package/vendor/Server/Skills/arkts-code-check/references/REPORT_TEMPLATE.md +219 -219
- package/vendor/Server/Skills/arkts-library-compile-validate/SKILL.md +328 -328
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/build.ps1 +93 -93
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/code-linter.cjs +432 -432
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/migrate.cjs +851 -851
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/ohpm-switch.cjs +788 -788
- package/vendor/Server/Skills/arkts-library-demo-code/SKILL.md +291 -291
- package/vendor/Server/Skills/arkts-library-demo-code/references/API_SIGNATURE_CHECKS.md +68 -68
- package/vendor/Server/Skills/arkts-library-demo-code/references/BUILD_VALIDATION.md +184 -184
- package/vendor/Server/Skills/arkts-library-demo-code/references/CODE_STANDARDS.md +337 -337
- package/vendor/Server/Skills/arkts-library-demo-code/references/EXAMPLES.md +400 -400
- package/vendor/Server/Skills/arkts-library-demo-code/references/SYSTEM_API_LOOKUP.md +98 -98
- package/vendor/Server/Skills/arkts-library-demo-code/references/TEMPLATE.md +544 -544
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/build.ps1 +93 -93
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/code-linter.cjs +432 -432
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/migrate.cjs +851 -851
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/ohpm-switch.cjs +788 -788
- package/vendor/Server/Skills/arkts-library-demo-coverage/SKILL.md +174 -174
- package/vendor/Server/Skills/arkts-library-demo-scenario/SKILL.md +321 -321
- package/vendor/Server/Skills/arkts-library-demo-scenario/references/EXAMPLES.md +100 -100
- package/vendor/Server/Skills/arkts-library-demo-scenario/references/TEMPLATE.md +185 -185
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/SKILL.md +233 -233
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/assets/REPORT_TEMPLATE.md +102 -102
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/CHECK_DIMENSIONS.md +89 -89
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/COMPLIANCE_CHECKLIST.md +62 -62
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/KB_QUERY_GUIDE.md +107 -107
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/MCP_TOOL_DISCOVERY.md +124 -124
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/REPORT_TEMPLATE.md +90 -90
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/SCORING_FORMULA.md +57 -57
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/scripts/validate-skill.cjs +259 -259
- package/vendor/Server/Skills/arkts-library-interface-spec/SKILL.md +97 -97
- package/vendor/Server/Skills/arkts-library-memory-leak-check/SKILL.md +391 -391
- package/vendor/Server/Skills/arkts-library-source-clone/SKILL.md +113 -113
- package/vendor/Server/Skills/arkts-library-stability-check/SKILL.md +312 -312
- package/vendor/Server/Skills/arkts-library-stability-check/assets/REPORT_TEMPLATE.md +154 -154
- package/vendor/Server/Skills/arkts-library-stability-check/references/CHECKLIST.md +165 -165
- package/vendor/Server/Skills/arkts-library-stability-check/references/CODE_EXAMPLES.md +308 -308
- package/vendor/Server/Skills/arkts-library-stability-check/references/SCORING_RULES.md +90 -90
- package/vendor/Server/Skills/arkts-library-stability-check/scripts/validate-skill.cjs +282 -282
- package/vendor/Server/Skills/arkts-library-test-coverage-check/SKILL.md +360 -360
- package/vendor/Server/Skills/arkts-library-test-coverage-check/assets/REPORT_TEMPLATE.md +145 -145
- package/vendor/Server/Skills/arkts-library-test-coverage-check/references/CHECKLIST.md +252 -252
- package/vendor/Server/Skills/arkts-library-test-coverage-check/references/MCP_TOOL_USAGE.md +114 -114
- package/vendor/Server/Skills/arkts-library-test-coverage-check/scripts/validate-skill.cjs +262 -262
- package/vendor/Server/Skills/arkts-library-xts-code/SKILL.md +455 -455
- package/vendor/Server/Skills/arkts-library-xts-code/assets/report-template.md +60 -60
- package/vendor/Server/Skills/arkts-library-xts-code/references/ACCESS_MODIFIER_PRECHECK.md +76 -76
- package/vendor/Server/Skills/arkts-library-xts-code/references/BUILD_VERIFICATION.md +200 -200
- package/vendor/Server/Skills/arkts-library-xts-code/references/CODE_STANDARDS.md +518 -518
- package/vendor/Server/Skills/arkts-library-xts-code/references/SUBAGENT_PROMPT_TEMPLATE.md +276 -276
- package/vendor/Server/Skills/arkts-library-xts-code/references/SYSTEM_API_LOOKUP.md +92 -92
- package/vendor/Server/Skills/arkts-library-xts-code/references/XTS_TEMPLATE.md +767 -767
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/build.ps1 +93 -93
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/code-linter.cjs +432 -432
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/migrate.cjs +851 -851
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/ohpm-switch.cjs +788 -788
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/precheck-access-modifiers.cjs +221 -221
- package/vendor/Server/Skills/arkts-library-xts-code-fix/SKILL.md +228 -228
- package/vendor/Server/Skills/arkts-library-xts-coverage/SKILL.md +97 -97
- package/vendor/Server/Skills/arkts-library-xts-doc/SKILL.md +194 -194
- package/vendor/Server/Skills/arkts-library-xts-doc/references/EXAMPLES.md +575 -575
- package/vendor/Server/Skills/arkts-library-xts-doc/references/TEMPLATE.md +574 -574
- package/vendor/Server/Skills/arkts-library-xts-doc/references/TESTABILITY_GUIDE.md +182 -182
- package/vendor/Server/Skills/arkts-library-xts-execution/SKILL.md +490 -490
- package/vendor/Server/Skills/arkts-library-xts-execution/references/error-fixing-examples.md +217 -217
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/build.ps1 +93 -93
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/code-linter.cjs +432 -432
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/migrate.cjs +851 -851
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/ohpm-switch.cjs +788 -788
- package/vendor/Server/Skills/flutter-code-check/SKILL.md +299 -299
- package/vendor/Server/Skills/flutter-code-check/assets/OUTPUT_TEMPLATE.md +311 -311
- package/vendor/Server/Skills/flutter-code-check/references/CHECKLIST.md +190 -190
- package/vendor/Server/Skills/flutter-code-check/references/PLATFORMS.md +133 -133
- package/vendor/Server/Skills/flutter-code-check/scripts/validate-skill.cjs +259 -259
- package/vendor/Server/Skills/flutter-interface/README.md +75 -75
- package/vendor/Server/Skills/flutter-interface/SKILL.md +291 -291
- package/vendor/Server/Skills/flutter-interface/references/EXAMPLES.md +336 -336
- package/vendor/Server/Skills/flutter-interface/references/GIT_CLONE_GUIDE.md +190 -190
- package/vendor/Server/Skills/flutter-interface/references/SCRIPT_REFERENCE.md +258 -258
- package/vendor/Server/Skills/flutter-interface/references/TEMPLATE.md +254 -254
- package/vendor/Server/Skills/flutter-library-consistency-check/SKILL.md +517 -517
- package/vendor/Server/Skills/flutter-library-consistency-check/references/CHECKLIST.md +381 -381
- package/vendor/Server/Skills/flutter-library-consistency-check/references/FUNCTION_COMPARISON_GUIDE.md +341 -341
- package/vendor/Server/Skills/flutter-library-consistency-check/references/PLATFORM_LIMITATION_GUIDE.md +71 -71
- package/vendor/Server/Skills/flutter-library-documentation-quality-check/SKILL.md +518 -518
- package/vendor/Server/Skills/flutter-library-documentation-quality-check/references/CHECKLIST.md +406 -406
- package/vendor/Server/Skills/flutter-library-memory-leak-check/SKILL.md +652 -652
- package/vendor/Server/Skills/flutter-library-memory-leak-check/references/CHECKLIST.md +396 -396
- package/vendor/Server/Skills/flutter-library-stability-check/SKILL.md +744 -744
- package/vendor/Server/Skills/flutter-library-stability-check/references/CHECKLIST.md +720 -720
- package/vendor/Server/Skills/flutter-library-test-coverage-check/SKILL.md +414 -414
- package/vendor/Server/Skills/flutter-library-test-coverage-check/assets/REPORT_TEMPLATE.md +150 -150
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/CHECKLIST.md +304 -304
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/SCORING_RULES.md +265 -265
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/SCRIPT_USAGE.md +286 -286
- package/vendor/Server/Skills/knowledge-import/SKILL.md +383 -383
- package/vendor/Server/Skills/knowledge-import/references/MCP_TOOL_USAGE.md +165 -165
- package/vendor/Server/Skills/knowledge-import/references/SKILL_LOCATOR_GUIDE.md +91 -91
- package/vendor/Server/Skills/knowledge-import/references/SKILL_OPTIMIZATION_GUIDE.md +127 -127
- package/vendor/Server/Skills/ohos-lib-pr-push/SKILL.md +453 -301
- package/vendor/Server/Skills/ohos-lib-pr-push/assets/PR_CHECKLIST.md +151 -0
- package/vendor/Server/Skills/ohos-lib-pr-push/assets/PR_ISSUE_TEMPLATE.md +257 -105
- package/vendor/Server/Skills/ohos-lib-pr-push/references/GITCODE_API.md +191 -127
- package/vendor/Server/Skills/ohos-lib-pr-push/scripts/gitcode-api.cjs +317 -208
- package/vendor/Server/Skills/rn-code-check/SKILL.md +320 -320
- package/vendor/Server/Skills/rn-code-check/references/API-GUIDE.md +234 -234
- package/vendor/Server/Skills/rn-code-check/references/CHECKLIST.md +188 -188
- package/vendor/Server/Skills/rn-code-check/references/REPORT-TEMPLATE.md +246 -246
- package/vendor/Server/Skills/rn-lib-add-example/SKILL.md +198 -198
- package/vendor/Server/Skills/rn-lib-add-example/references/APP_RENAME_GUIDE.md +40 -40
- package/vendor/Server/Skills/rn-lib-add-example/references/SHELL_ADAPTATION_CHECKLIST.md +78 -78
- package/vendor/Server/Skills/rn-lib-add-example/references/TEMPLATE_REPO_GUIDE.md +70 -70
- package/vendor/Server/Skills/rn-lib-add-example/references/VERIFICATION_GUIDE.md +47 -47
- package/vendor/Server/Skills/rn-lib-add-example/scripts/create-example.cjs +252 -252
- package/vendor/Server/Skills/rn-lib-update-doc/SKILL.md +176 -176
- package/vendor/Server/Skills/rn-lib-update-doc/config.json +5 -5
- package/vendor/Server/Skills/rn-lib-update-doc/references/changelog-template.md +35 -35
- package/vendor/Server/Skills/rn-lib-update-doc/references/format-diff.md +137 -137
- package/vendor/Server/Skills/rn-lib-update-doc/references/link-registry.json +33 -33
- package/vendor/Server/Skills/rn-lib-update-doc/references/model-0.4.2-overview.md +40 -40
- package/vendor/Server/Skills/rn-lib-update-doc/references/model-0.4.2.md +429 -429
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/detect-readme-format.cjs +105 -105
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/find-usage-doc.cjs +90 -90
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/link-verify.cjs +213 -213
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-changelog.cjs +73 -73
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-package-meta.cjs +258 -258
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-readme-links.cjs +341 -341
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/resolve-usage-docs.cjs +67 -67
- package/vendor/Server/Skills/rn-library-consistency-check/SKILL.md +299 -299
- package/vendor/Server/Skills/rn-library-consistency-check/assets/REPORT_TEMPLATE.md +293 -293
- package/vendor/Server/Skills/rn-library-consistency-check/references/ARKTS_COMPONENT_CHECK_GUIDE.md +857 -857
- package/vendor/Server/Skills/rn-library-consistency-check/references/ARKTS_TURBOMODULE_CHECK_GUIDE.md +856 -856
- package/vendor/Server/Skills/rn-library-consistency-check/references/CHECKLIST.md +157 -157
- package/vendor/Server/Skills/rn-library-consistency-check/references/CPP_COMPONENT_CHECK_GUIDE.md +801 -801
- package/vendor/Server/Skills/rn-library-consistency-check/references/CPP_TURBOMODULE_CHECK_GUIDE.md +683 -683
- package/vendor/Server/Skills/rn-library-consistency-check/references/FUNCTION_COMPARISON_GUIDE.md +233 -233
- package/vendor/Server/Skills/rn-library-consistency-check/references/NATIVE_COMPONENT_IDENTIFICATION.md +1373 -1373
- package/vendor/Server/Skills/rn-library-consistency-check/references/SCORING_STANDARD.md +220 -220
- package/vendor/Server/Skills/rn-library-consistency-check/scripts/validate-skill.py +245 -245
- package/vendor/Server/Skills/rn-library-documentation-quality-check/SKILL.md +263 -263
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/MODEL.md +414 -414
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/MODEL_en.md +413 -413
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/REPORT_TEMPLATE.md +311 -311
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/CHECK_CHECKLIST.md +355 -355
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/CROSS_VALIDATION_GUIDE.md +115 -115
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/DOC_COLLECTION_GUIDE.md +139 -139
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/EXAMPLES.md +586 -586
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/GOTCHAS.md +57 -57
- package/vendor/Server/Skills/rn-library-documentation-quality-check/scripts/validate-skill.py +259 -259
- package/vendor/Server/Skills/rn-library-interface-analyzer/SKILL.md +301 -301
- package/vendor/Server/Skills/rn-library-interface-analyzer/assets/REPORT_TEMPLATE.md +148 -148
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/DOC_ANNOTATION_GUIDE.md +118 -118
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/SCRIPT_USAGE_GUIDE.md +168 -168
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/URL_PARSING_RULES.md +176 -176
- package/vendor/Server/Skills/rn-library-issue-generalizer/SKILL.md +274 -274
- package/vendor/Server/Skills/rn-library-issue-generalizer/assets/case-template.md +45 -45
- package/vendor/Server/Skills/rn-library-issue-generalizer/assets/rule-template.md +25 -25
- package/vendor/Server/Skills/rn-library-issue-generalizer/references/PR_FETCH_GUIDE.md +61 -61
- package/vendor/Server/Skills/rn-library-issue-generalizer/references/RULE_TEMPLATE_GUIDE.md +165 -165
- package/vendor/Server/Skills/rn-library-issue-generalizer/scripts/fetch-pr-info.py +239 -239
- package/vendor/Server/Skills/rn-library-known-issue-check/SKILL.md +263 -263
- package/vendor/Server/Skills/rn-library-known-issue-check/assets/REPORT_TEMPLATE.md +96 -96
- package/vendor/Server/Skills/rn-library-known-issue-check/references/COMPLIANCE_CHECKLIST.md +57 -57
- package/vendor/Server/Skills/rn-library-known-issue-check/references/INSPECTION_GUIDE.md +99 -99
- package/vendor/Server/Skills/rn-library-known-issue-check/references/PRESCREEN_GUIDE.md +64 -64
- package/vendor/Server/Skills/rn-library-known-issue-check/references/SOURCE_PREP_GUIDE.md +74 -74
- package/vendor/Server/Skills/rn-library-known-issue-check/scripts/validate-known-issue-report.py +164 -164
- package/vendor/Server/Skills/rn-library-memory-leak-check/SKILL.md +356 -339
- package/vendor/Server/Skills/rn-library-memory-leak-check/assets/REPORT_TEMPLATE.md +85 -83
- package/vendor/Server/Skills/rn-library-memory-leak-check/references/CHECKLIST.md +905 -859
- package/vendor/Server/Skills/rn-library-memory-leak-check/references/HARMONY_CODE_PATTERNS.md +124 -122
- package/vendor/Server/Skills/rn-library-memory-leak-check/scripts/scan_harmony_code.py +287 -279
- package/vendor/Server/Skills/rn-library-stability-check/SKILL.md +273 -273
- package/vendor/Server/Skills/rn-library-stability-check/assets/REPORT_TEMPLATE.md +129 -129
- package/vendor/Server/Skills/rn-library-stability-check/references/CHECKLIST.md +581 -581
- package/vendor/Server/Skills/rn-library-stability-check/references/SCORING_RULES.md +138 -138
- package/vendor/Server/Skills/rn-library-stability-check/scripts/scan-harmony-code.py +168 -168
- package/vendor/Server/Skills/rn-library-test-coverage-check/SKILL.md +526 -506
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/CHECKLIST.md +321 -280
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/DEMO_LOCATION.md +221 -221
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/REPORT_TEMPLATE.md +220 -209
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/SCRIPT_USAGE.md +325 -325
- package/vendor/Server/Skills/rn-ohos-xts-generator/SKILL.md +279 -279
- package/vendor/Server/Skills/rn-ohos-xts-generator/assets/TEST_FILE_TEMPLATES.md +404 -404
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/BUILD_TROUBLESHOOTING.md +185 -185
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/BUILD_WORKFLOW.md +265 -265
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/COMMON_CONFIG.md +189 -189
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/CONFIG_GUIDE.md +203 -203
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/COVERAGE_ANALYZER.md +147 -147
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/DESIGN_DOC_GUIDE.md +148 -148
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/GENERATION_FLOW.md +165 -165
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/GENERATION_STRATEGY.md +195 -195
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/HARMONY_SCANNER.md +249 -249
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/JEST_FRAMEWORK.md +235 -235
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/PLATFORM_COMPAT.md +161 -161
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/RN_TEST_PATTERNS.md +413 -413
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/SOURCE_PARSER.md +235 -235
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/TEST_CONVENTIONS.md +245 -245
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/TROUBLESHOOTING.md +282 -282
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/USAGE_GUIDE.md +251 -251
- package/vendor/Server/Skills/rnoh-cptf-api-test/SKILL.md +469 -469
- package/vendor/Server/Skills/rnoh-cptf-api-test/assets/CPTF_TEST_TEMPLATE.md +310 -310
- package/vendor/Server/Skills/rnoh-cptf-api-test/assets/DEMO_PAGE_TEMPLATE.md +303 -303
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/CPTF_TEST_GENERATION_GUIDE.md +421 -421
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/DEMO_GENERATION_GUIDE.md +358 -358
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/QUALITY_CHECKLIST.md +114 -114
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/SPEC_PARSING_GUIDE.md +274 -274
- package/vendor/Server/Skills/rnoh-cptf-api-test/scripts/validate-rnoh-cptf-api-test.sh +185 -185
- package/vendor/Server/Skills/rnoh-cptf-demo-test/SKILL.md +191 -191
- package/vendor/Server/Skills/rnoh-cptf-demo-test/assets/TEST_TEMPLATE.md +216 -216
- package/vendor/Server/Skills/rnoh-cptf-demo-test/references/CPTF_SETUP.md +107 -107
- package/vendor/Server/Skills/rnoh-cptf-demo-test/references/DEMO_ANALYSIS.md +120 -120
- package/vendor/Server/Skills/rnoh-cptf-demo-test/scripts/validate-rnoh-cptf-test.sh +108 -108
- package/vendor/Server/Skills/rnoh-cptf-test-run/SKILL.md +237 -237
- package/vendor/Server/Skills/rnoh-cptf-test-run/references/DEBUG_PLAYBOOK.md +261 -261
- package/vendor/Server/Skills/rnoh-cptf-test-run/scripts/validate-run-env.sh +112 -112
- package/vendor/Server/Skills/rnoh-lib-code-adapt/SKILL.md +497 -497
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/adapt-checklist.md +270 -270
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/api-migration-checklist.md +164 -164
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/common-compile-errors.md +556 -556
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/deveco-cli-tools.md +459 -459
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/edge-cases.md +65 -65
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/har-tgz-build.md +512 -512
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/version-compat-matrix.md +132 -132
- package/vendor/Server/Skills/rnoh-lib-code-adapt/scripts/auto-integrate.sh +424 -424
- package/vendor/Server/Skills/rnoh-lib-demo-coverage/SKILL.md +137 -137
- package/vendor/Server/Skills/rnoh-lib-demo-create/SKILL.md +306 -306
- package/vendor/Server/Skills/rnoh-lib-demo-create/assets/DEMO_PAGE_TEMPLATE.md +485 -485
- package/vendor/Server/Skills/rnoh-lib-demo-create/assets/INDEX_TEMPLATE.md +172 -172
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/DEMO_CODE_RULES.md +422 -422
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/QUALITY_CHECKLIST.md +95 -95
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/SOURCE_EXPLORATION.md +169 -169
- package/vendor/Server/Skills/rnoh-lib-demo-doc/SKILL.md +554 -554
- package/vendor/Server/Skills/rnoh-lib-demo-doc/assets/DEMO_DOC_TEMPLATE.md +106 -106
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/COVERAGE_INCREMENTAL.md +216 -216
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/DEMO_DESIGN_RULES.md +413 -413
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/OUTPUT_FORMAT.md +269 -269
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/QUALITY_CHECKLIST.md +98 -98
- package/vendor/Server/Skills/rnoh-lib-func-test/SKILL.md +337 -337
- package/vendor/Server/Skills/rnoh-lib-rnt-search/SKILL.md +722 -722
- package/vendor/Server/Skills/rnoh-lib-rnt-search/assets/PORT_REPORT_TEMPLATE.md +219 -219
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/DEMO_PORTING_GUIDE.md +345 -345
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/PORT_VERIFICATION.md +269 -269
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/RNT_PROJECT_STRUCTURE.md +173 -173
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/analyze-demo-deps.cjs +267 -267
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/detect-rnoh-version.cjs +174 -174
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/find-rnt-demo.sh +111 -111
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/port-demo.sh +186 -186
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/read-lib-meta.cjs +150 -150
- package/vendor/Server/Skills/rnoh-lib-test-align/SKILL.md +296 -296
- package/vendor/Server/Skills/rnoh-lib-test-align/references/jest-troubleshooting.md +371 -371
- package/vendor/Server/Skills/rnoh-lib-test-align/references/port-test-demo-guide.md +212 -212
- package/vendor/Server/Skills/rnoh-lib-test-align/references/runtime-troubleshooting.md +345 -345
- package/vendor/Server/Skills/rnoh-lib-test-align/references/unit-test-template.md +223 -223
- package/vendor/Server/Skills/rnoh-lib-test-align/scripts/port-test-demo.sh +1053 -1053
- package/vendor/Server/Skills/rnoh-lib-version-diff/SKILL.md +295 -255
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/OHOS_ADAPTATION.md +82 -77
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/OHOS_API_LOOKUP.md +224 -224
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/script-reference.md +175 -174
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/detect-upstream-version.js +967 -967
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/generate-diff.js +1798 -1798
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/package.json +5 -5
- package/vendor/Server/Skills/rnoh-lib-version-diff/templates/report-template.md +180 -137
- package/vendor/Server/Skills/rnoh-lib-xts-coverage/SKILL.md +145 -145
- package/vendor/Server/Skills/skill-generator/SKILL.md +365 -365
- package/vendor/Server/Skills/skill-generator/assets/SKILL_TEMPLATE.md +183 -183
- package/vendor/Server/Skills/skill-generator/references/COMPLIANCE_CHECKLIST.md +82 -82
- package/vendor/Server/Skills/skill-generator/references/KB_QUERY_GUIDE.md +110 -110
- package/vendor/Server/Skills/skill-generator/references/MCP_TOOL_DISCOVERY.md +122 -122
- package/vendor/Server/Skills/skill-generator/references/SKILL_SPEC.md +121 -121
- package/vendor/Server/Skills/skill-generator/scripts/validate-skill.cjs +259 -259
- package/vendor/Server/Skills/task-analysis/SKILL.md +234 -234
- package/vendor/Server/Skills/task-analysis/assets/OUTPUT_EXAMPLES.md +160 -160
- package/vendor/Server/Skills/task-analysis/references/ACCEPTANCE_CRITERIA_GUIDE.md +190 -190
- package/vendor/Server/Skills/task-analysis/references/ANALYSIS_SCHEMA.md +224 -224
- package/vendor/Server/Skills/task-analysis/references/INTEGRATION_CONTEXT.md +162 -162
- package/vendor/Server/Skills/task-analysis/references/LESSONS_LEARNED.md +55 -55
- package/vendor/Server/Skills/task-analysis/references/REPLAN_CONTEXT_GUIDE.md +126 -126
- package/vendor/Server/Skills/task-analysis/scripts/validate-analysis-output.sh +256 -256
- package/vendor/Server/Skills/task-decomposition/SKILL.md +528 -528
- package/vendor/Server/Skills/task-decomposition/assets/OUTPUT_EXAMPLES.md +451 -451
- package/vendor/Server/Skills/task-decomposition/references/ACCEPTANCE_CRITERIA_GUIDE.md +179 -179
- package/vendor/Server/Skills/task-decomposition/references/DEPENDENCY_GRAPH_GUIDE.md +152 -152
- package/vendor/Server/Skills/task-decomposition/references/INTEGRATION_CONTEXT.md +175 -175
- package/vendor/Server/Skills/task-decomposition/references/REPLAN_CONTEXT_GUIDE.md +195 -195
- package/vendor/Server/Skills/task-decomposition/references/TASK_DECOMPOSITION_TEMPLATES.md +226 -226
- package/vendor/Server/Skills/task-decomposition/scripts/list-available-skills.cjs +263 -263
- package/vendor/Server/Skills/task-decomposition/scripts/skill-blacklist.json +29 -29
- package/vendor/Server/Skills/task-decomposition/scripts/validate-decomposition-output.cjs +376 -376
- package/vendor/Server/Skills/task-decomposition/scripts/validate-param-consistency.cjs +259 -259
- package/vendor/Server/Skills/task-decomposition/scripts/validate-specified-skills.cjs +216 -216
- package/vendor/Server/Skills/task-decomposition/scripts/validate-step-graph.cjs +424 -424
- package/vendor/Server/Skills/tpc-cpp-check/SKILL.md +427 -427
- package/vendor/Server/Skills/tpc-cpp-check/references/CHECKLIST.md +214 -214
- package/vendor/Server/Skills/tpc-cpp-check/references/HPKBUILD_GUIDE.md +235 -235
- package/vendor/Server/Skills/tpc-cpp-check/references/REPORT_TEMPLATE.md +250 -250
- package/vendor/Server/TestCheck/TestCheck.js +775 -775
- package/vendor/Server/TestCheck/index.js +11 -11
- package/vendor/Server/library/McpToolGuide.js +280 -280
- package/vendor/Server/library/StatsService.js +126 -126
- package/vendor/Server/library/cstTime.js +16 -16
- package/vendor/VERSION +3 -3
- package/workflows/pr-check.mjs +105 -105
- package/workflows/pr-push.mjs +192 -192
- package/vendor/Server/Agent/SkillSelector/types.js +0 -63
|
@@ -1,556 +1,556 @@
|
|
|
1
|
-
# 常见编译错误及修复模式
|
|
2
|
-
|
|
3
|
-
## 错误分类速查
|
|
4
|
-
|
|
5
|
-
| 错误类型 | 关键词 | 修复优先级 |
|
|
6
|
-
|----------|--------|-----------|
|
|
7
|
-
| 导入路径错误 | `Cannot find module` | 最高(根因错误,会导致级联) |
|
|
8
|
-
| ArkTS 模块解析失败 | `Failed to resolve OhmUrl` | 最高(需注册模块到 build-profile.json5) |
|
|
9
|
-
| 类型不匹配 | `Type 'X' is not assignable to type 'Y'` | 高 |
|
|
10
|
-
| ArkTS 规则违规 | `arkts-no-*` | 高 |
|
|
11
|
-
| 缺少导出 | `has no exported member` | 高 |
|
|
12
|
-
| C++ 链接错误 | `undefined reference` | 中 |
|
|
13
|
-
| Codegen 产物缺失 | `file not found` (生成的头文件) | 中 |
|
|
14
|
-
| ohpm install 缺失 | `not an existing directory` (CMake) | 中(运行 ohpm install 即可) |
|
|
15
|
-
| HAR 不在 tgz 中 | `npm pack --dry-run` 无 `.har` 输出 | 中(package.json files 加 harmony/) |
|
|
16
|
-
| rnoh-build-har 失败 | HAR 构建报错 | 中(检查 SDK 版本、ohpm 依赖) |
|
|
17
|
-
| SDK 版本不匹配 | `SDK component missing` | 中(移除 compileSdkVersion 即可) |
|
|
18
|
-
| RNOH 框架内部警告 | `deprecated`、`not supported on all devices` | 低(无需修复,是 WARNING) |
|
|
19
|
-
| peer dependency 冲突 | `ERESOLVE` | 低(用 --legacy-peer-deps 绕过) |
|
|
20
|
-
|
|
21
|
-
---
|
|
22
|
-
|
|
23
|
-
## 一、导入路径错误
|
|
24
|
-
|
|
25
|
-
### 症状
|
|
26
|
-
|
|
27
|
-
```
|
|
28
|
-
Cannot find module '../../JsonMapper' or its corresponding type declarations
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
### 原因
|
|
32
|
-
|
|
33
|
-
嵌套目录中相对路径层级错误。一个 import 路径错误会导致 12+ 下游类型错误。
|
|
34
|
-
|
|
35
|
-
### 修复
|
|
36
|
-
|
|
37
|
-
1. 先修复所有 import 路径错误,再处理其他类型错误
|
|
38
|
-
2. 使用 `grep_search` 搜索错误模块名,确认实际文件位置
|
|
39
|
-
3. 修正相对路径层级
|
|
40
|
-
|
|
41
|
-
### 验证
|
|
42
|
-
|
|
43
|
-
修复后重新编译,确认级联错误是否消失。
|
|
44
|
-
|
|
45
|
-
---
|
|
46
|
-
|
|
47
|
-
## 二、ArkTS 编译规则错误
|
|
48
|
-
|
|
49
|
-
### 2.1 对象字面量赋值给 Map
|
|
50
|
-
|
|
51
|
-
```
|
|
52
|
-
arkts-no-untyped-obj-literals
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
**修复**:使用 `new Map()` 或添加类型断言
|
|
56
|
-
|
|
57
|
-
### 2.2 索引签名
|
|
58
|
-
|
|
59
|
-
```
|
|
60
|
-
arkts-no-indexed-signatures
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
**修复**:移除索引签名,改用 `Map<string, T>` 或命名 interface
|
|
64
|
-
|
|
65
|
-
### 2.3 循环类型别名
|
|
66
|
-
|
|
67
|
-
```
|
|
68
|
-
arkts-no-circular-type-alias
|
|
69
|
-
```
|
|
70
|
-
|
|
71
|
-
**修复**:用 `object` 替代递归引用
|
|
72
|
-
|
|
73
|
-
### 2.4 泛型参数推断
|
|
74
|
-
|
|
75
|
-
```
|
|
76
|
-
arkts-no-inferred-generic-params
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
**修复**:显式指定泛型参数 `getMapper<JsonValueType>(...)`
|
|
80
|
-
|
|
81
|
-
### 2.5 unknown 类型
|
|
82
|
-
|
|
83
|
-
```
|
|
84
|
-
arkts-no-any-unknown
|
|
85
|
-
```
|
|
86
|
-
|
|
87
|
-
**修复**:定义具体类型替代 unknown
|
|
88
|
-
|
|
89
|
-
### 2.6 any 类型
|
|
90
|
-
|
|
91
|
-
```
|
|
92
|
-
arkts-no-any
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
**修复**:定义显式 class/interface + `as` 类型断言
|
|
96
|
-
|
|
97
|
-
详见 [references/adapt-checklist.md](adapt-checklist.md) 的 ArkTS 编译规则部分。
|
|
98
|
-
|
|
99
|
-
---
|
|
100
|
-
|
|
101
|
-
## 三、类型不匹配
|
|
102
|
-
|
|
103
|
-
### 症状
|
|
104
|
-
|
|
105
|
-
```
|
|
106
|
-
Type 'string | undefined' is not assignable to type 'string'
|
|
107
|
-
```
|
|
108
|
-
|
|
109
|
-
### 原因
|
|
110
|
-
|
|
111
|
-
版本升级后接口返回类型变窄/变宽,或可选属性变为必选。
|
|
112
|
-
|
|
113
|
-
### 修复
|
|
114
|
-
|
|
115
|
-
1. 检查上游 spec 文件中接口签名的变化
|
|
116
|
-
2. 在调用处添加 null/undefined 检查
|
|
117
|
-
3. 或使用默认值:`const value = result.field ?? ''`
|
|
118
|
-
|
|
119
|
-
---
|
|
120
|
-
|
|
121
|
-
## 四、Codegen 产物相关问题
|
|
122
|
-
|
|
123
|
-
### 症状
|
|
124
|
-
|
|
125
|
-
```
|
|
126
|
-
fatal error: 'RNOH/RNMyComponentProps.h' file not found
|
|
127
|
-
```
|
|
128
|
-
|
|
129
|
-
### 原因
|
|
130
|
-
|
|
131
|
-
codegen 未运行,或 codegen 配置路径不正确。
|
|
132
|
-
|
|
133
|
-
### 修复
|
|
134
|
-
|
|
135
|
-
```bash
|
|
136
|
-
# 1. 确认 codegen 配置
|
|
137
|
-
npm run codegen -- --rnoh-module-path ./harmony/entry/oh_modules/@rnoh/react-native-openharmony
|
|
138
|
-
|
|
139
|
-
# 2. 检查生成的文件是否存在
|
|
140
|
-
ls harmony/entry/src/main/cpp/generated/
|
|
141
|
-
|
|
142
|
-
# 3. 如果不存在,检查 react-native.config.js 中的 codegen 配置
|
|
143
|
-
```
|
|
144
|
-
|
|
145
|
-
### 手写 codegen 产物被覆盖
|
|
146
|
-
|
|
147
|
-
如果之前手写了部分 codegen 产物:
|
|
148
|
-
|
|
149
|
-
1. codegen 前备份 `harmony/` 目录
|
|
150
|
-
2. codegen 后用 `diff -r backup/ harmony/` 对比
|
|
151
|
-
3. 将手写的自定义逻辑合并到新生成的代码中
|
|
152
|
-
|
|
153
|
-
---
|
|
154
|
-
|
|
155
|
-
## 五、C++ 链接错误
|
|
156
|
-
|
|
157
|
-
### 症状
|
|
158
|
-
|
|
159
|
-
```
|
|
160
|
-
undefined reference to `MyNewComponent::setProps(...)`
|
|
161
|
-
```
|
|
162
|
-
|
|
163
|
-
### 原因
|
|
164
|
-
|
|
165
|
-
新增了 C++ 源文件但未在 `CMakeLists.txt` 中注册。
|
|
166
|
-
|
|
167
|
-
### 修复
|
|
168
|
-
|
|
169
|
-
```cmake
|
|
170
|
-
# 在 CMakeLists.txt 中添加新源文件
|
|
171
|
-
target_sources(rnoh_my_lib PRIVATE
|
|
172
|
-
src/main/cpp/MyNewComponent.cpp
|
|
173
|
-
src/main/cpp/MyNewComponentInstance.cpp
|
|
174
|
-
)
|
|
175
|
-
|
|
176
|
-
# 如果新增了依赖库
|
|
177
|
-
target_link_libraries(rnoh_my_lib
|
|
178
|
-
# ... 已有依赖
|
|
179
|
-
my_new_dependency
|
|
180
|
-
)
|
|
181
|
-
```
|
|
182
|
-
|
|
183
|
-
---
|
|
184
|
-
|
|
185
|
-
## 六、peer dependency 冲突
|
|
186
|
-
|
|
187
|
-
### 症状
|
|
188
|
-
|
|
189
|
-
```
|
|
190
|
-
npm ERR! ERESOLVE unable to resolve dependency tree
|
|
191
|
-
npm ERR! peer react@>=18.0.0 from react-native@0.84.1
|
|
192
|
-
```
|
|
193
|
-
|
|
194
|
-
### 原因
|
|
195
|
-
|
|
196
|
-
三方库声明的 peer dependency 与目标 RN/React 版本不兼容。
|
|
197
|
-
|
|
198
|
-
### 修复
|
|
199
|
-
|
|
200
|
-
```bash
|
|
201
|
-
# 方案1: 使用 --legacy-peer-deps (推荐)
|
|
202
|
-
npm install --legacy-peer-deps
|
|
203
|
-
|
|
204
|
-
# 方案2: 使用 --force
|
|
205
|
-
npm install --force
|
|
206
|
-
|
|
207
|
-
# 方案3: 在 package.json 中覆盖 peerDependencies
|
|
208
|
-
{
|
|
209
|
-
"overrides": {
|
|
210
|
-
"react-native-some-lib": {
|
|
211
|
-
"react": "$react"
|
|
212
|
-
}
|
|
213
|
-
}
|
|
214
|
-
}
|
|
215
|
-
```
|
|
216
|
-
|
|
217
|
-
---
|
|
218
|
-
|
|
219
|
-
## 七、React 19 升级特有错误
|
|
220
|
-
|
|
221
|
-
### 7.1 findDOMNode 废弃
|
|
222
|
-
|
|
223
|
-
```
|
|
224
|
-
Warning: findDOMNode is deprecated in StrictMode.
|
|
225
|
-
```
|
|
226
|
-
|
|
227
|
-
**修复**:改用 `useRef` + `ref.current`。
|
|
228
|
-
|
|
229
|
-
### 7.2 字符串 ref 废弃
|
|
230
|
-
|
|
231
|
-
```jsx
|
|
232
|
-
// 错误: <div ref="myRef" />
|
|
233
|
-
// 修复: <div ref={myRef} />
|
|
234
|
-
```
|
|
235
|
-
|
|
236
|
-
### 7.3 useRef 需要初始值
|
|
237
|
-
|
|
238
|
-
```typescript
|
|
239
|
-
// React 18: const ref = useRef()
|
|
240
|
-
// React 19: const ref = useRef(null)
|
|
241
|
-
```
|
|
242
|
-
|
|
243
|
-
---
|
|
244
|
-
|
|
245
|
-
## 八、ohpm install 缺失导致 CMake 找不到目录
|
|
246
|
-
|
|
247
|
-
### 症状
|
|
248
|
-
|
|
249
|
-
```
|
|
250
|
-
CMake Error at CMakeLists.txt:24 (add_subdirectory):
|
|
251
|
-
add_subdirectory given source
|
|
252
|
-
".../oh_modules/@rnoh/react-native-openharmony/src/main/cpp"
|
|
253
|
-
which is not an existing directory.
|
|
254
|
-
```
|
|
255
|
-
|
|
256
|
-
### 原因
|
|
257
|
-
|
|
258
|
-
`npm install` 只安装了 JS 依赖到 `node_modules/`,但鸿蒙原生依赖(har 包)需要通过 `ohpm install` 安装到 `oh_modules/`。CMake 编译时从 `oh_modules/` 读取 RNOH 框架的 C++ 源码。
|
|
259
|
-
|
|
260
|
-
### 修复
|
|
261
|
-
|
|
262
|
-
```bash
|
|
263
|
-
cd example/harmony && ohpm install
|
|
264
|
-
```
|
|
265
|
-
|
|
266
|
-
验证安装成功:
|
|
267
|
-
```bash
|
|
268
|
-
ls entry/oh_modules/@rnoh/react-native-openharmony/src/main/cpp/
|
|
269
|
-
# 应看到 CMakeLists.txt、RNOH/、RNOHAppNapiBridge.cpp 等
|
|
270
|
-
```
|
|
271
|
-
|
|
272
|
-
---
|
|
273
|
-
|
|
274
|
-
## 九、compileSdkVersion 与本地 SDK 不匹配
|
|
275
|
-
|
|
276
|
-
### 症状
|
|
277
|
-
|
|
278
|
-
```
|
|
279
|
-
hvigor ERROR: 00303168 Configuration Error
|
|
280
|
-
Error Message: SDK component missing.
|
|
281
|
-
```
|
|
282
|
-
|
|
283
|
-
### 原因
|
|
284
|
-
|
|
285
|
-
`build-profile.json5` 中的 `compileSdkVersion`(如 `5.0.1(17)`)对应的 SDK 未在本地安装。DevEco Studio 内置 SDK 版本可能与目标版本不一致。
|
|
286
|
-
|
|
287
|
-
### 修复
|
|
288
|
-
|
|
289
|
-
```json5
|
|
290
|
-
// 方案1(推荐):移除 compileSdkVersion,让 hvigor 自动选择
|
|
291
|
-
{
|
|
292
|
-
"app": {
|
|
293
|
-
"products": [{
|
|
294
|
-
"name": 'default',
|
|
295
|
-
"signingConfig": 'default',
|
|
296
|
-
// 删除此行: "compileSdkVersion": '5.0.1(17)',
|
|
297
|
-
"compatibleSdkVersion": '5.0.0(12)',
|
|
298
|
-
"runtimeOS": 'HarmonyOS'
|
|
299
|
-
}]
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
// 方案2:改为本地已安装的 SDK 版本
|
|
304
|
-
// 通过 DevEco Studio > SDK Manager 查看已安装版本
|
|
305
|
-
```
|
|
306
|
-
|
|
307
|
-
**注意**:`build-profile.json5` 和 `build-profile.template.json5` 都需要同步修改。
|
|
308
|
-
|
|
309
|
-
---
|
|
310
|
-
|
|
311
|
-
## 十、RNOH 框架内部编译警告
|
|
312
|
-
|
|
313
|
-
### 症状
|
|
314
|
-
|
|
315
|
-
编译输出大量来自 `@rnoh/react-native-openharmony` 的警告:
|
|
316
|
-
|
|
317
|
-
```
|
|
318
|
-
WARN: ArkTS:WARN 'vp2px' has been deprecated.
|
|
319
|
-
WARN: ArkTS:WARN The 'on' API is supported since SDK version 15.
|
|
320
|
-
WARN: ArkTS:WARN The system capacity of this api 'reason' is not supported on all devices
|
|
321
|
-
```
|
|
322
|
-
|
|
323
|
-
### 原因
|
|
324
|
-
|
|
325
|
-
RNOH 框架内部代码使用了部分 deprecated API 或高版本 API。这是**框架自身的兼容性问题,不影响编译结果**。
|
|
326
|
-
|
|
327
|
-
### 修复
|
|
328
|
-
|
|
329
|
-
**无需修复**。这些是 WARNING 而非 ERROR,编译仍会 `BUILD SUCCESSFUL`。只需关注自己库的代码(`harmony/<lib>/src/` 下)是否有错误。
|
|
330
|
-
|
|
331
|
-
---
|
|
332
|
-
|
|
333
|
-
## 编译验证流程
|
|
334
|
-
|
|
335
|
-
### 完整验证步骤(HAR → TGZ → 依赖 tgz 编译)
|
|
336
|
-
|
|
337
|
-
```bash
|
|
338
|
-
# ── 前提:代码适配已完成 ──
|
|
339
|
-
|
|
340
|
-
# 1. 单文件语法检查
|
|
341
|
-
devecocli check lint harmony/src/main/ets/
|
|
342
|
-
devecocli check lint harmony/src/main/cpp/
|
|
343
|
-
|
|
344
|
-
# 2. 打 HAR 包(使用 rnoh-build-har 工具)
|
|
345
|
-
cd /path/to/react-native-xxx
|
|
346
|
-
rnoh-build-har 12 0.84.2 .
|
|
347
|
-
# 产出: harmony/xxx.har
|
|
348
|
-
|
|
349
|
-
# 3. 打 TGZ 包
|
|
350
|
-
npm pack
|
|
351
|
-
# 产出: react-native-ohos-react-native-xxx-<version>.tgz
|
|
352
|
-
|
|
353
|
-
# 4. RN 工程依赖本地 tgz 包
|
|
354
|
-
cd example
|
|
355
|
-
# 编辑 package.json: "file:../react-native-ohos-react-native-xxx-<version>.tgz"
|
|
356
|
-
rm -rf node_modules/@react-native-ohos/react-native-xxx
|
|
357
|
-
npm install --legacy-peer-deps
|
|
358
|
-
|
|
359
|
-
# 5. Codegen + JS Bundle
|
|
360
|
-
npm run codegen
|
|
361
|
-
npm run dev
|
|
362
|
-
|
|
363
|
-
# 6. 安装鸿蒙原生依赖(关键!不可跳过)
|
|
364
|
-
cd harmony && ohpm install
|
|
365
|
-
|
|
366
|
-
# 7. 原生构建(依赖 tgz 包)
|
|
367
|
-
devecocli build --product default --build-mode debug
|
|
368
|
-
```
|
|
369
|
-
|
|
370
|
-
> ⚠️ **最终验证必须依赖 tgz 包**,不能依赖源码 `file:` 目录引用。详见 [har-tgz-build.md](har-tgz-build.md)。
|
|
371
|
-
|
|
372
|
-
### 渐进式验证
|
|
373
|
-
|
|
374
|
-
如果一次性修复太多错误难以定位,可以分步验证:
|
|
375
|
-
|
|
376
|
-
1. `devecocli check lint` 通过 — 确认无语法错误
|
|
377
|
-
2. `rnoh-build-har` 通过 — 确认 HAR 包构建成功
|
|
378
|
-
3. `npm pack --dry-run` 通过 — 确认 tgz 包含 HAR 文件
|
|
379
|
-
4. `npm install` 通过 — 确认 tgz 包正确安装
|
|
380
|
-
5. `npm run codegen` 通过 — 确认 codegen 产物正确
|
|
381
|
-
6. `npm run dev` 通过 — 确认 JS Bundle 构建成功
|
|
382
|
-
7. `ohpm install` 通过 — 确认 har 包安装到 oh_modules
|
|
383
|
-
8. `devecocli build` 通过 — 确认原生编译成功
|
|
384
|
-
|
|
385
|
-
---
|
|
386
|
-
|
|
387
|
-
## 十一、源码 `file:` 依赖的 ArkTS 模块解析失败
|
|
388
|
-
|
|
389
|
-
### 症状(两阶段错误)
|
|
390
|
-
|
|
391
|
-
**编译期错误**:
|
|
392
|
-
```
|
|
393
|
-
ERROR: Failed to resolve OhmUrl.
|
|
394
|
-
Failed to get a resolved OhmUrl for "xxx/index.ets"
|
|
395
|
-
imported by "xxx/RNPackagesFactory.ets"
|
|
396
|
-
|
|
397
|
-
ERROR: Cannot import files outside of the current module
|
|
398
|
-
using relative paths. Import statement: './ts'
|
|
399
|
-
```
|
|
400
|
-
|
|
401
|
-
**运行时错误**(编译通过但运行时崩溃):
|
|
402
|
-
```
|
|
403
|
-
ReferenceError: cannot find record 'com.harmony.wechat.lib.demo/entry@harmony/ets/NetInfoPackage'
|
|
404
|
-
```
|
|
405
|
-
|
|
406
|
-
### 原因
|
|
407
|
-
|
|
408
|
-
鸿蒙化三方库通过 `file:` 源码依赖引入 example 工程时,ohpm 在 `entry/oh_modules/@react-native-ohos/xxx` 创建**符号链接**指向源码目录。hvigor/devecocli 无法将符号链接路径作为模块 `srcPath` 识别,导致 ArkTS 模块未注册。
|
|
409
|
-
|
|
410
|
-
同时,`RNPackagesFactory.ets` 如果使用深层路径导入(如 `@react-native-ohos/xxx/src/main/ets/XxxPackage`),ArkTS 运行时模块解析器找不到对应的 record。
|
|
411
|
-
|
|
412
|
-
### 修复(三步配合)
|
|
413
|
-
|
|
414
|
-
**① 在 `build-profile.json5` 中注册库为独立模块**:
|
|
415
|
-
|
|
416
|
-
```json5
|
|
417
|
-
// example/harmony/build-profile.json5
|
|
418
|
-
modules: [
|
|
419
|
-
{
|
|
420
|
-
name: 'xxx',
|
|
421
|
-
srcPath: '../../harmony/xxx', // 直接指向源码目录,不用符号链接
|
|
422
|
-
targets: [{ name: 'default', applyToProducts: ['default'] }],
|
|
423
|
-
},
|
|
424
|
-
{
|
|
425
|
-
name: 'entry',
|
|
426
|
-
srcPath: './entry',
|
|
427
|
-
targets: [{ name: 'default', applyToProducts: ['default'] }],
|
|
428
|
-
},
|
|
429
|
-
]
|
|
430
|
-
```
|
|
431
|
-
|
|
432
|
-
> **路径计算**:从 `example/harmony/` 出发到 `harmony/xxx` = `../../harmony/xxx`。
|
|
433
|
-
> 库自身需有 `build-profile.json5`(stageMode + target default)+ `hvigorfile.ts`(harTasks)。
|
|
434
|
-
|
|
435
|
-
**② `RNPackagesFactory.ets` 使用包根路径导入**:
|
|
436
|
-
|
|
437
|
-
```typescript
|
|
438
|
-
// ❌ 深层路径 — 运行时找不到 record
|
|
439
|
-
import { XxxPackage } from '@react-native-ohos/xxx/src/main/ets/XxxPackage';
|
|
440
|
-
// ✅ 包根路径 — 通过 oh-package.json5 的 main: index.ets 入口解析
|
|
441
|
-
import { XxxPackage } from '@react-native-ohos/xxx';
|
|
442
|
-
```
|
|
443
|
-
|
|
444
|
-
**③ 保持库的 `index.ets` + `ts.ets` 原始结构**:
|
|
445
|
-
|
|
446
|
-
不要尝试以下错误操作:
|
|
447
|
-
- ❌ 将 `ts.ets` 改名为 `ts.ts` — TS 文件不能导入 ArkTS(.ets) 文件(`Importing ArkTS files in JS and TS files is forbidden`)
|
|
448
|
-
- ❌ 删除 `ts.ets` 并在 `index.ets` 中直接 export — 会导致 `Failed to resolve OhmUrl for index.ets`
|
|
449
|
-
- ❌ 在 `build-profile.json5` 中用符号链接路径 `./entry/oh_modules/@react-native-ohos/xxx` 作为 srcPath — hvigor 报 `Path not found`
|
|
450
|
-
|
|
451
|
-
---
|
|
452
|
-
|
|
453
|
-
## 十二、HAR / TGZ 打包相关错误
|
|
454
|
-
|
|
455
|
-
### 12.1 rnoh-build-har 构建失败
|
|
456
|
-
|
|
457
|
-
#### SDK 版本不匹配
|
|
458
|
-
|
|
459
|
-
```
|
|
460
|
-
hvigor ERROR: SDK component missing.
|
|
461
|
-
```
|
|
462
|
-
|
|
463
|
-
**修复**:通过 `api-version` 参数指定正确的 API 版本,或移除库 `build-profile.json5` 中的 `compileSdkVersion`:
|
|
464
|
-
```bash
|
|
465
|
-
# 指定 API 版本
|
|
466
|
-
rnoh-build-har 12 0.84.2 .
|
|
467
|
-
|
|
468
|
-
# 或移除 compileSdkVersion 后重新构建
|
|
469
|
-
rnoh-build-har .
|
|
470
|
-
```
|
|
471
|
-
|
|
472
|
-
#### ohpm 依赖未安装
|
|
473
|
-
|
|
474
|
-
```
|
|
475
|
-
CMake Error: not an existing directory
|
|
476
|
-
.../oh_modules/@rnoh/react-native-openharmony/src/main/cpp
|
|
477
|
-
```
|
|
478
|
-
|
|
479
|
-
**修复**:使用 `rnoh-version` 参数让工具自动从 ohpm 拉取 RNOH,或确保本地 `node_modules` 中有 RNOH HAR:
|
|
480
|
-
```bash
|
|
481
|
-
# 方式1:指定 RNOH ohpm 版本
|
|
482
|
-
rnoh-build-har 0.84.2 .
|
|
483
|
-
|
|
484
|
-
# 方式2:先 npm install 再构建
|
|
485
|
-
npm install --legacy-peer-deps
|
|
486
|
-
rnoh-build-har .
|
|
487
|
-
```
|
|
488
|
-
|
|
489
|
-
### 12.2 TGZ 包不含 HAR 文件
|
|
490
|
-
|
|
491
|
-
#### 症状
|
|
492
|
-
|
|
493
|
-
```bash
|
|
494
|
-
$ npm pack --dry-run | grep '\.har'
|
|
495
|
-
# 无输出 — HAR 文件未包含在 tgz 中
|
|
496
|
-
```
|
|
497
|
-
|
|
498
|
-
#### 原因
|
|
499
|
-
|
|
500
|
-
`package.json` 的 `files` 字段未包含 `harmony/` 目录。
|
|
501
|
-
|
|
502
|
-
#### 修复
|
|
503
|
-
|
|
504
|
-
```json
|
|
505
|
-
{
|
|
506
|
-
"files": [
|
|
507
|
-
"src",
|
|
508
|
-
"harmony",
|
|
509
|
-
"README.md"
|
|
510
|
-
]
|
|
511
|
-
}
|
|
512
|
-
```
|
|
513
|
-
|
|
514
|
-
### 12.3 tgz 依赖安装后找不到 HAR
|
|
515
|
-
|
|
516
|
-
#### 症状
|
|
517
|
-
|
|
518
|
-
example 工程编译时找不到库的 HAR 文件:
|
|
519
|
-
```
|
|
520
|
-
ohpm ERROR: File not found: .../node_modules/@react-native-ohos/xxx/harmony/xxx.har
|
|
521
|
-
```
|
|
522
|
-
|
|
523
|
-
#### 原因
|
|
524
|
-
|
|
525
|
-
tgz 包中确实不含 HAR(见 12.2),或 oh-package.json5 中 HAR 引用路径错误。
|
|
526
|
-
|
|
527
|
-
#### 修复
|
|
528
|
-
|
|
529
|
-
1. 确认 tgz 包含 HAR:`npm pack --dry-run | grep '\.har'`
|
|
530
|
-
2. 确认 `oh-package.json5` 中引用路径正确:
|
|
531
|
-
```json5
|
|
532
|
-
// 从 tgz 安装后,HAR 在 node_modules/@react-native-ohos/xxx/harmony/xxx.har
|
|
533
|
-
"@react-native-ohos/xxx": "file:./xxx.har"
|
|
534
|
-
```
|
|
535
|
-
3. 重新打 tgz 包并安装
|
|
536
|
-
|
|
537
|
-
### 12.4 源码 file: 依赖迁移到 tgz 依赖后路径变更
|
|
538
|
-
|
|
539
|
-
#### 症状
|
|
540
|
-
|
|
541
|
-
从源码 `file:../rntpc_xxx` 改为 tgz `file:../xxx.tgz` 后,oh-package.json5 中的 HAR 路径失效。
|
|
542
|
-
|
|
543
|
-
#### 原因
|
|
544
|
-
|
|
545
|
-
源码依赖时 HAR 在 `../rntpc_xxx/harmony/xxx.har`,tgz 依赖后 HAR 在 `node_modules/@react-native-ohos/xxx/harmony/xxx.har`。
|
|
546
|
-
|
|
547
|
-
#### 修复
|
|
548
|
-
|
|
549
|
-
更新 `oh-package.json5` 中的 HAR 引用路径:
|
|
550
|
-
```json5
|
|
551
|
-
// 旧(源码依赖)
|
|
552
|
-
"@react-native-ohos/xxx": "file:../../rntpc_xxx/harmony/xxx.har"
|
|
553
|
-
|
|
554
|
-
// 新(tgz 依赖)
|
|
555
|
-
"@react-native-ohos/xxx": "file:../../node_modules/@react-native-ohos/xxx/harmony/xxx.har"
|
|
556
|
-
```
|
|
1
|
+
# 常见编译错误及修复模式
|
|
2
|
+
|
|
3
|
+
## 错误分类速查
|
|
4
|
+
|
|
5
|
+
| 错误类型 | 关键词 | 修复优先级 |
|
|
6
|
+
|----------|--------|-----------|
|
|
7
|
+
| 导入路径错误 | `Cannot find module` | 最高(根因错误,会导致级联) |
|
|
8
|
+
| ArkTS 模块解析失败 | `Failed to resolve OhmUrl` | 最高(需注册模块到 build-profile.json5) |
|
|
9
|
+
| 类型不匹配 | `Type 'X' is not assignable to type 'Y'` | 高 |
|
|
10
|
+
| ArkTS 规则违规 | `arkts-no-*` | 高 |
|
|
11
|
+
| 缺少导出 | `has no exported member` | 高 |
|
|
12
|
+
| C++ 链接错误 | `undefined reference` | 中 |
|
|
13
|
+
| Codegen 产物缺失 | `file not found` (生成的头文件) | 中 |
|
|
14
|
+
| ohpm install 缺失 | `not an existing directory` (CMake) | 中(运行 ohpm install 即可) |
|
|
15
|
+
| HAR 不在 tgz 中 | `npm pack --dry-run` 无 `.har` 输出 | 中(package.json files 加 harmony/) |
|
|
16
|
+
| rnoh-build-har 失败 | HAR 构建报错 | 中(检查 SDK 版本、ohpm 依赖) |
|
|
17
|
+
| SDK 版本不匹配 | `SDK component missing` | 中(移除 compileSdkVersion 即可) |
|
|
18
|
+
| RNOH 框架内部警告 | `deprecated`、`not supported on all devices` | 低(无需修复,是 WARNING) |
|
|
19
|
+
| peer dependency 冲突 | `ERESOLVE` | 低(用 --legacy-peer-deps 绕过) |
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## 一、导入路径错误
|
|
24
|
+
|
|
25
|
+
### 症状
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
Cannot find module '../../JsonMapper' or its corresponding type declarations
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### 原因
|
|
32
|
+
|
|
33
|
+
嵌套目录中相对路径层级错误。一个 import 路径错误会导致 12+ 下游类型错误。
|
|
34
|
+
|
|
35
|
+
### 修复
|
|
36
|
+
|
|
37
|
+
1. 先修复所有 import 路径错误,再处理其他类型错误
|
|
38
|
+
2. 使用 `grep_search` 搜索错误模块名,确认实际文件位置
|
|
39
|
+
3. 修正相对路径层级
|
|
40
|
+
|
|
41
|
+
### 验证
|
|
42
|
+
|
|
43
|
+
修复后重新编译,确认级联错误是否消失。
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## 二、ArkTS 编译规则错误
|
|
48
|
+
|
|
49
|
+
### 2.1 对象字面量赋值给 Map
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
arkts-no-untyped-obj-literals
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
**修复**:使用 `new Map()` 或添加类型断言
|
|
56
|
+
|
|
57
|
+
### 2.2 索引签名
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
arkts-no-indexed-signatures
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
**修复**:移除索引签名,改用 `Map<string, T>` 或命名 interface
|
|
64
|
+
|
|
65
|
+
### 2.3 循环类型别名
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
arkts-no-circular-type-alias
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
**修复**:用 `object` 替代递归引用
|
|
72
|
+
|
|
73
|
+
### 2.4 泛型参数推断
|
|
74
|
+
|
|
75
|
+
```
|
|
76
|
+
arkts-no-inferred-generic-params
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
**修复**:显式指定泛型参数 `getMapper<JsonValueType>(...)`
|
|
80
|
+
|
|
81
|
+
### 2.5 unknown 类型
|
|
82
|
+
|
|
83
|
+
```
|
|
84
|
+
arkts-no-any-unknown
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
**修复**:定义具体类型替代 unknown
|
|
88
|
+
|
|
89
|
+
### 2.6 any 类型
|
|
90
|
+
|
|
91
|
+
```
|
|
92
|
+
arkts-no-any
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
**修复**:定义显式 class/interface + `as` 类型断言
|
|
96
|
+
|
|
97
|
+
详见 [references/adapt-checklist.md](adapt-checklist.md) 的 ArkTS 编译规则部分。
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
## 三、类型不匹配
|
|
102
|
+
|
|
103
|
+
### 症状
|
|
104
|
+
|
|
105
|
+
```
|
|
106
|
+
Type 'string | undefined' is not assignable to type 'string'
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
### 原因
|
|
110
|
+
|
|
111
|
+
版本升级后接口返回类型变窄/变宽,或可选属性变为必选。
|
|
112
|
+
|
|
113
|
+
### 修复
|
|
114
|
+
|
|
115
|
+
1. 检查上游 spec 文件中接口签名的变化
|
|
116
|
+
2. 在调用处添加 null/undefined 检查
|
|
117
|
+
3. 或使用默认值:`const value = result.field ?? ''`
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
121
|
+
## 四、Codegen 产物相关问题
|
|
122
|
+
|
|
123
|
+
### 症状
|
|
124
|
+
|
|
125
|
+
```
|
|
126
|
+
fatal error: 'RNOH/RNMyComponentProps.h' file not found
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
### 原因
|
|
130
|
+
|
|
131
|
+
codegen 未运行,或 codegen 配置路径不正确。
|
|
132
|
+
|
|
133
|
+
### 修复
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
# 1. 确认 codegen 配置
|
|
137
|
+
npm run codegen -- --rnoh-module-path ./harmony/entry/oh_modules/@rnoh/react-native-openharmony
|
|
138
|
+
|
|
139
|
+
# 2. 检查生成的文件是否存在
|
|
140
|
+
ls harmony/entry/src/main/cpp/generated/
|
|
141
|
+
|
|
142
|
+
# 3. 如果不存在,检查 react-native.config.js 中的 codegen 配置
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
### 手写 codegen 产物被覆盖
|
|
146
|
+
|
|
147
|
+
如果之前手写了部分 codegen 产物:
|
|
148
|
+
|
|
149
|
+
1. codegen 前备份 `harmony/` 目录
|
|
150
|
+
2. codegen 后用 `diff -r backup/ harmony/` 对比
|
|
151
|
+
3. 将手写的自定义逻辑合并到新生成的代码中
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
## 五、C++ 链接错误
|
|
156
|
+
|
|
157
|
+
### 症状
|
|
158
|
+
|
|
159
|
+
```
|
|
160
|
+
undefined reference to `MyNewComponent::setProps(...)`
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
### 原因
|
|
164
|
+
|
|
165
|
+
新增了 C++ 源文件但未在 `CMakeLists.txt` 中注册。
|
|
166
|
+
|
|
167
|
+
### 修复
|
|
168
|
+
|
|
169
|
+
```cmake
|
|
170
|
+
# 在 CMakeLists.txt 中添加新源文件
|
|
171
|
+
target_sources(rnoh_my_lib PRIVATE
|
|
172
|
+
src/main/cpp/MyNewComponent.cpp
|
|
173
|
+
src/main/cpp/MyNewComponentInstance.cpp
|
|
174
|
+
)
|
|
175
|
+
|
|
176
|
+
# 如果新增了依赖库
|
|
177
|
+
target_link_libraries(rnoh_my_lib
|
|
178
|
+
# ... 已有依赖
|
|
179
|
+
my_new_dependency
|
|
180
|
+
)
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
185
|
+
## 六、peer dependency 冲突
|
|
186
|
+
|
|
187
|
+
### 症状
|
|
188
|
+
|
|
189
|
+
```
|
|
190
|
+
npm ERR! ERESOLVE unable to resolve dependency tree
|
|
191
|
+
npm ERR! peer react@>=18.0.0 from react-native@0.84.1
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
### 原因
|
|
195
|
+
|
|
196
|
+
三方库声明的 peer dependency 与目标 RN/React 版本不兼容。
|
|
197
|
+
|
|
198
|
+
### 修复
|
|
199
|
+
|
|
200
|
+
```bash
|
|
201
|
+
# 方案1: 使用 --legacy-peer-deps (推荐)
|
|
202
|
+
npm install --legacy-peer-deps
|
|
203
|
+
|
|
204
|
+
# 方案2: 使用 --force
|
|
205
|
+
npm install --force
|
|
206
|
+
|
|
207
|
+
# 方案3: 在 package.json 中覆盖 peerDependencies
|
|
208
|
+
{
|
|
209
|
+
"overrides": {
|
|
210
|
+
"react-native-some-lib": {
|
|
211
|
+
"react": "$react"
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
## 七、React 19 升级特有错误
|
|
220
|
+
|
|
221
|
+
### 7.1 findDOMNode 废弃
|
|
222
|
+
|
|
223
|
+
```
|
|
224
|
+
Warning: findDOMNode is deprecated in StrictMode.
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
**修复**:改用 `useRef` + `ref.current`。
|
|
228
|
+
|
|
229
|
+
### 7.2 字符串 ref 废弃
|
|
230
|
+
|
|
231
|
+
```jsx
|
|
232
|
+
// 错误: <div ref="myRef" />
|
|
233
|
+
// 修复: <div ref={myRef} />
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
### 7.3 useRef 需要初始值
|
|
237
|
+
|
|
238
|
+
```typescript
|
|
239
|
+
// React 18: const ref = useRef()
|
|
240
|
+
// React 19: const ref = useRef(null)
|
|
241
|
+
```
|
|
242
|
+
|
|
243
|
+
---
|
|
244
|
+
|
|
245
|
+
## 八、ohpm install 缺失导致 CMake 找不到目录
|
|
246
|
+
|
|
247
|
+
### 症状
|
|
248
|
+
|
|
249
|
+
```
|
|
250
|
+
CMake Error at CMakeLists.txt:24 (add_subdirectory):
|
|
251
|
+
add_subdirectory given source
|
|
252
|
+
".../oh_modules/@rnoh/react-native-openharmony/src/main/cpp"
|
|
253
|
+
which is not an existing directory.
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
### 原因
|
|
257
|
+
|
|
258
|
+
`npm install` 只安装了 JS 依赖到 `node_modules/`,但鸿蒙原生依赖(har 包)需要通过 `ohpm install` 安装到 `oh_modules/`。CMake 编译时从 `oh_modules/` 读取 RNOH 框架的 C++ 源码。
|
|
259
|
+
|
|
260
|
+
### 修复
|
|
261
|
+
|
|
262
|
+
```bash
|
|
263
|
+
cd example/harmony && ohpm install
|
|
264
|
+
```
|
|
265
|
+
|
|
266
|
+
验证安装成功:
|
|
267
|
+
```bash
|
|
268
|
+
ls entry/oh_modules/@rnoh/react-native-openharmony/src/main/cpp/
|
|
269
|
+
# 应看到 CMakeLists.txt、RNOH/、RNOHAppNapiBridge.cpp 等
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
---
|
|
273
|
+
|
|
274
|
+
## 九、compileSdkVersion 与本地 SDK 不匹配
|
|
275
|
+
|
|
276
|
+
### 症状
|
|
277
|
+
|
|
278
|
+
```
|
|
279
|
+
hvigor ERROR: 00303168 Configuration Error
|
|
280
|
+
Error Message: SDK component missing.
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
### 原因
|
|
284
|
+
|
|
285
|
+
`build-profile.json5` 中的 `compileSdkVersion`(如 `5.0.1(17)`)对应的 SDK 未在本地安装。DevEco Studio 内置 SDK 版本可能与目标版本不一致。
|
|
286
|
+
|
|
287
|
+
### 修复
|
|
288
|
+
|
|
289
|
+
```json5
|
|
290
|
+
// 方案1(推荐):移除 compileSdkVersion,让 hvigor 自动选择
|
|
291
|
+
{
|
|
292
|
+
"app": {
|
|
293
|
+
"products": [{
|
|
294
|
+
"name": 'default',
|
|
295
|
+
"signingConfig": 'default',
|
|
296
|
+
// 删除此行: "compileSdkVersion": '5.0.1(17)',
|
|
297
|
+
"compatibleSdkVersion": '5.0.0(12)',
|
|
298
|
+
"runtimeOS": 'HarmonyOS'
|
|
299
|
+
}]
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
// 方案2:改为本地已安装的 SDK 版本
|
|
304
|
+
// 通过 DevEco Studio > SDK Manager 查看已安装版本
|
|
305
|
+
```
|
|
306
|
+
|
|
307
|
+
**注意**:`build-profile.json5` 和 `build-profile.template.json5` 都需要同步修改。
|
|
308
|
+
|
|
309
|
+
---
|
|
310
|
+
|
|
311
|
+
## 十、RNOH 框架内部编译警告
|
|
312
|
+
|
|
313
|
+
### 症状
|
|
314
|
+
|
|
315
|
+
编译输出大量来自 `@rnoh/react-native-openharmony` 的警告:
|
|
316
|
+
|
|
317
|
+
```
|
|
318
|
+
WARN: ArkTS:WARN 'vp2px' has been deprecated.
|
|
319
|
+
WARN: ArkTS:WARN The 'on' API is supported since SDK version 15.
|
|
320
|
+
WARN: ArkTS:WARN The system capacity of this api 'reason' is not supported on all devices
|
|
321
|
+
```
|
|
322
|
+
|
|
323
|
+
### 原因
|
|
324
|
+
|
|
325
|
+
RNOH 框架内部代码使用了部分 deprecated API 或高版本 API。这是**框架自身的兼容性问题,不影响编译结果**。
|
|
326
|
+
|
|
327
|
+
### 修复
|
|
328
|
+
|
|
329
|
+
**无需修复**。这些是 WARNING 而非 ERROR,编译仍会 `BUILD SUCCESSFUL`。只需关注自己库的代码(`harmony/<lib>/src/` 下)是否有错误。
|
|
330
|
+
|
|
331
|
+
---
|
|
332
|
+
|
|
333
|
+
## 编译验证流程
|
|
334
|
+
|
|
335
|
+
### 完整验证步骤(HAR → TGZ → 依赖 tgz 编译)
|
|
336
|
+
|
|
337
|
+
```bash
|
|
338
|
+
# ── 前提:代码适配已完成 ──
|
|
339
|
+
|
|
340
|
+
# 1. 单文件语法检查
|
|
341
|
+
devecocli check lint harmony/src/main/ets/
|
|
342
|
+
devecocli check lint harmony/src/main/cpp/
|
|
343
|
+
|
|
344
|
+
# 2. 打 HAR 包(使用 rnoh-build-har 工具)
|
|
345
|
+
cd /path/to/react-native-xxx
|
|
346
|
+
rnoh-build-har 12 0.84.2 .
|
|
347
|
+
# 产出: harmony/xxx.har
|
|
348
|
+
|
|
349
|
+
# 3. 打 TGZ 包
|
|
350
|
+
npm pack
|
|
351
|
+
# 产出: react-native-ohos-react-native-xxx-<version>.tgz
|
|
352
|
+
|
|
353
|
+
# 4. RN 工程依赖本地 tgz 包
|
|
354
|
+
cd example
|
|
355
|
+
# 编辑 package.json: "file:../react-native-ohos-react-native-xxx-<version>.tgz"
|
|
356
|
+
rm -rf node_modules/@react-native-ohos/react-native-xxx
|
|
357
|
+
npm install --legacy-peer-deps
|
|
358
|
+
|
|
359
|
+
# 5. Codegen + JS Bundle
|
|
360
|
+
npm run codegen
|
|
361
|
+
npm run dev
|
|
362
|
+
|
|
363
|
+
# 6. 安装鸿蒙原生依赖(关键!不可跳过)
|
|
364
|
+
cd harmony && ohpm install
|
|
365
|
+
|
|
366
|
+
# 7. 原生构建(依赖 tgz 包)
|
|
367
|
+
devecocli build --product default --build-mode debug
|
|
368
|
+
```
|
|
369
|
+
|
|
370
|
+
> ⚠️ **最终验证必须依赖 tgz 包**,不能依赖源码 `file:` 目录引用。详见 [har-tgz-build.md](har-tgz-build.md)。
|
|
371
|
+
|
|
372
|
+
### 渐进式验证
|
|
373
|
+
|
|
374
|
+
如果一次性修复太多错误难以定位,可以分步验证:
|
|
375
|
+
|
|
376
|
+
1. `devecocli check lint` 通过 — 确认无语法错误
|
|
377
|
+
2. `rnoh-build-har` 通过 — 确认 HAR 包构建成功
|
|
378
|
+
3. `npm pack --dry-run` 通过 — 确认 tgz 包含 HAR 文件
|
|
379
|
+
4. `npm install` 通过 — 确认 tgz 包正确安装
|
|
380
|
+
5. `npm run codegen` 通过 — 确认 codegen 产物正确
|
|
381
|
+
6. `npm run dev` 通过 — 确认 JS Bundle 构建成功
|
|
382
|
+
7. `ohpm install` 通过 — 确认 har 包安装到 oh_modules
|
|
383
|
+
8. `devecocli build` 通过 — 确认原生编译成功
|
|
384
|
+
|
|
385
|
+
---
|
|
386
|
+
|
|
387
|
+
## 十一、源码 `file:` 依赖的 ArkTS 模块解析失败
|
|
388
|
+
|
|
389
|
+
### 症状(两阶段错误)
|
|
390
|
+
|
|
391
|
+
**编译期错误**:
|
|
392
|
+
```
|
|
393
|
+
ERROR: Failed to resolve OhmUrl.
|
|
394
|
+
Failed to get a resolved OhmUrl for "xxx/index.ets"
|
|
395
|
+
imported by "xxx/RNPackagesFactory.ets"
|
|
396
|
+
|
|
397
|
+
ERROR: Cannot import files outside of the current module
|
|
398
|
+
using relative paths. Import statement: './ts'
|
|
399
|
+
```
|
|
400
|
+
|
|
401
|
+
**运行时错误**(编译通过但运行时崩溃):
|
|
402
|
+
```
|
|
403
|
+
ReferenceError: cannot find record 'com.harmony.wechat.lib.demo/entry@harmony/ets/NetInfoPackage'
|
|
404
|
+
```
|
|
405
|
+
|
|
406
|
+
### 原因
|
|
407
|
+
|
|
408
|
+
鸿蒙化三方库通过 `file:` 源码依赖引入 example 工程时,ohpm 在 `entry/oh_modules/@react-native-ohos/xxx` 创建**符号链接**指向源码目录。hvigor/devecocli 无法将符号链接路径作为模块 `srcPath` 识别,导致 ArkTS 模块未注册。
|
|
409
|
+
|
|
410
|
+
同时,`RNPackagesFactory.ets` 如果使用深层路径导入(如 `@react-native-ohos/xxx/src/main/ets/XxxPackage`),ArkTS 运行时模块解析器找不到对应的 record。
|
|
411
|
+
|
|
412
|
+
### 修复(三步配合)
|
|
413
|
+
|
|
414
|
+
**① 在 `build-profile.json5` 中注册库为独立模块**:
|
|
415
|
+
|
|
416
|
+
```json5
|
|
417
|
+
// example/harmony/build-profile.json5
|
|
418
|
+
modules: [
|
|
419
|
+
{
|
|
420
|
+
name: 'xxx',
|
|
421
|
+
srcPath: '../../harmony/xxx', // 直接指向源码目录,不用符号链接
|
|
422
|
+
targets: [{ name: 'default', applyToProducts: ['default'] }],
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
name: 'entry',
|
|
426
|
+
srcPath: './entry',
|
|
427
|
+
targets: [{ name: 'default', applyToProducts: ['default'] }],
|
|
428
|
+
},
|
|
429
|
+
]
|
|
430
|
+
```
|
|
431
|
+
|
|
432
|
+
> **路径计算**:从 `example/harmony/` 出发到 `harmony/xxx` = `../../harmony/xxx`。
|
|
433
|
+
> 库自身需有 `build-profile.json5`(stageMode + target default)+ `hvigorfile.ts`(harTasks)。
|
|
434
|
+
|
|
435
|
+
**② `RNPackagesFactory.ets` 使用包根路径导入**:
|
|
436
|
+
|
|
437
|
+
```typescript
|
|
438
|
+
// ❌ 深层路径 — 运行时找不到 record
|
|
439
|
+
import { XxxPackage } from '@react-native-ohos/xxx/src/main/ets/XxxPackage';
|
|
440
|
+
// ✅ 包根路径 — 通过 oh-package.json5 的 main: index.ets 入口解析
|
|
441
|
+
import { XxxPackage } from '@react-native-ohos/xxx';
|
|
442
|
+
```
|
|
443
|
+
|
|
444
|
+
**③ 保持库的 `index.ets` + `ts.ets` 原始结构**:
|
|
445
|
+
|
|
446
|
+
不要尝试以下错误操作:
|
|
447
|
+
- ❌ 将 `ts.ets` 改名为 `ts.ts` — TS 文件不能导入 ArkTS(.ets) 文件(`Importing ArkTS files in JS and TS files is forbidden`)
|
|
448
|
+
- ❌ 删除 `ts.ets` 并在 `index.ets` 中直接 export — 会导致 `Failed to resolve OhmUrl for index.ets`
|
|
449
|
+
- ❌ 在 `build-profile.json5` 中用符号链接路径 `./entry/oh_modules/@react-native-ohos/xxx` 作为 srcPath — hvigor 报 `Path not found`
|
|
450
|
+
|
|
451
|
+
---
|
|
452
|
+
|
|
453
|
+
## 十二、HAR / TGZ 打包相关错误
|
|
454
|
+
|
|
455
|
+
### 12.1 rnoh-build-har 构建失败
|
|
456
|
+
|
|
457
|
+
#### SDK 版本不匹配
|
|
458
|
+
|
|
459
|
+
```
|
|
460
|
+
hvigor ERROR: SDK component missing.
|
|
461
|
+
```
|
|
462
|
+
|
|
463
|
+
**修复**:通过 `api-version` 参数指定正确的 API 版本,或移除库 `build-profile.json5` 中的 `compileSdkVersion`:
|
|
464
|
+
```bash
|
|
465
|
+
# 指定 API 版本
|
|
466
|
+
rnoh-build-har 12 0.84.2 .
|
|
467
|
+
|
|
468
|
+
# 或移除 compileSdkVersion 后重新构建
|
|
469
|
+
rnoh-build-har .
|
|
470
|
+
```
|
|
471
|
+
|
|
472
|
+
#### ohpm 依赖未安装
|
|
473
|
+
|
|
474
|
+
```
|
|
475
|
+
CMake Error: not an existing directory
|
|
476
|
+
.../oh_modules/@rnoh/react-native-openharmony/src/main/cpp
|
|
477
|
+
```
|
|
478
|
+
|
|
479
|
+
**修复**:使用 `rnoh-version` 参数让工具自动从 ohpm 拉取 RNOH,或确保本地 `node_modules` 中有 RNOH HAR:
|
|
480
|
+
```bash
|
|
481
|
+
# 方式1:指定 RNOH ohpm 版本
|
|
482
|
+
rnoh-build-har 0.84.2 .
|
|
483
|
+
|
|
484
|
+
# 方式2:先 npm install 再构建
|
|
485
|
+
npm install --legacy-peer-deps
|
|
486
|
+
rnoh-build-har .
|
|
487
|
+
```
|
|
488
|
+
|
|
489
|
+
### 12.2 TGZ 包不含 HAR 文件
|
|
490
|
+
|
|
491
|
+
#### 症状
|
|
492
|
+
|
|
493
|
+
```bash
|
|
494
|
+
$ npm pack --dry-run | grep '\.har'
|
|
495
|
+
# 无输出 — HAR 文件未包含在 tgz 中
|
|
496
|
+
```
|
|
497
|
+
|
|
498
|
+
#### 原因
|
|
499
|
+
|
|
500
|
+
`package.json` 的 `files` 字段未包含 `harmony/` 目录。
|
|
501
|
+
|
|
502
|
+
#### 修复
|
|
503
|
+
|
|
504
|
+
```json
|
|
505
|
+
{
|
|
506
|
+
"files": [
|
|
507
|
+
"src",
|
|
508
|
+
"harmony",
|
|
509
|
+
"README.md"
|
|
510
|
+
]
|
|
511
|
+
}
|
|
512
|
+
```
|
|
513
|
+
|
|
514
|
+
### 12.3 tgz 依赖安装后找不到 HAR
|
|
515
|
+
|
|
516
|
+
#### 症状
|
|
517
|
+
|
|
518
|
+
example 工程编译时找不到库的 HAR 文件:
|
|
519
|
+
```
|
|
520
|
+
ohpm ERROR: File not found: .../node_modules/@react-native-ohos/xxx/harmony/xxx.har
|
|
521
|
+
```
|
|
522
|
+
|
|
523
|
+
#### 原因
|
|
524
|
+
|
|
525
|
+
tgz 包中确实不含 HAR(见 12.2),或 oh-package.json5 中 HAR 引用路径错误。
|
|
526
|
+
|
|
527
|
+
#### 修复
|
|
528
|
+
|
|
529
|
+
1. 确认 tgz 包含 HAR:`npm pack --dry-run | grep '\.har'`
|
|
530
|
+
2. 确认 `oh-package.json5` 中引用路径正确:
|
|
531
|
+
```json5
|
|
532
|
+
// 从 tgz 安装后,HAR 在 node_modules/@react-native-ohos/xxx/harmony/xxx.har
|
|
533
|
+
"@react-native-ohos/xxx": "file:./xxx.har"
|
|
534
|
+
```
|
|
535
|
+
3. 重新打 tgz 包并安装
|
|
536
|
+
|
|
537
|
+
### 12.4 源码 file: 依赖迁移到 tgz 依赖后路径变更
|
|
538
|
+
|
|
539
|
+
#### 症状
|
|
540
|
+
|
|
541
|
+
从源码 `file:../rntpc_xxx` 改为 tgz `file:../xxx.tgz` 后,oh-package.json5 中的 HAR 路径失效。
|
|
542
|
+
|
|
543
|
+
#### 原因
|
|
544
|
+
|
|
545
|
+
源码依赖时 HAR 在 `../rntpc_xxx/harmony/xxx.har`,tgz 依赖后 HAR 在 `node_modules/@react-native-ohos/xxx/harmony/xxx.har`。
|
|
546
|
+
|
|
547
|
+
#### 修复
|
|
548
|
+
|
|
549
|
+
更新 `oh-package.json5` 中的 HAR 引用路径:
|
|
550
|
+
```json5
|
|
551
|
+
// 旧(源码依赖)
|
|
552
|
+
"@react-native-ohos/xxx": "file:../../rntpc_xxx/harmony/xxx.har"
|
|
553
|
+
|
|
554
|
+
// 新(tgz 依赖)
|
|
555
|
+
"@react-native-ohos/xxx": "file:../../node_modules/@react-native-ohos/xxx/harmony/xxx.har"
|
|
556
|
+
```
|