Files
youle_app_ohos/entry/src/main/module.json5
T
lanterngamescnandClaude Opus 4.8 dbc416a940 entry: EntryAbility 配 orientation:landscape,脚手架默认横屏
落地横屏项目约束(契约 §7 / 框架 §7.4):module.json5 配默认横屏、
不随传感器自动旋转;H5 显式方向控制留待 M3 用 setPreferredOrientation 动态实现。
模拟器验证:启动即横屏(2856x1320),SplashPage 布局正常。

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-25 08:34:34 +08:00

51 lines
1.3 KiB
JSON

{
"module": {
"name": "entry",
"type": "entry",
"description": "$string:module_desc",
"mainElement": "EntryAbility",
"deviceTypes": [
"phone"
],
"deliveryWithInstall": true,
"installationFree": false,
"pages": "$profile:main_pages",
"abilities": [
{
"name": "EntryAbility",
"srcEntry": "./ets/entryability/EntryAbility.ets",
"orientation": "landscape",
"description": "$string:EntryAbility_desc",
"icon": "$media:layered_image",
"label": "$string:EntryAbility_label",
"startWindowIcon": "$media:startIcon",
"startWindowBackground": "$color:start_window_background",
"exported": true,
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"ohos.want.action.home"
]
}
]
}
],
"extensionAbilities": [
{
"name": "EntryBackupAbility",
"srcEntry": "./ets/entrybackupability/EntryBackupAbility.ets",
"type": "backup",
"exported": false,
"metadata": [
{
"name": "ohos.extension.backup",
"resource": "$profile:backup_config"
}
],
}
]
}
}