From d19bdbf343a1dea85e7d3adc97fe21ef60b7bee2 Mon Sep 17 00:00:00 2001 From: lloyd <353627866@qq.com> Date: Wed, 20 Aug 2025 17:08:22 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=9F=BA=E4=BA=8E=E5=BA=94=E7=94=A8?= =?UTF-8?q?=E6=8E=A5=E7=BB=AD=E5=AE=9E=E7=8E=B0=E5=88=86=E5=B8=83=E5=BC=8F?= =?UTF-8?q?=E8=A7=86=E9=A2=91=E6=92=AD=E6=94=BE=E5=99=A8=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E3=80=91=E6=9B=B4=E6=96=B0=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.en.md | 8 ++++---- README.md | 10 +++++----- build-profile.json5 | 3 ++- entry/src/main/module.json5 | 3 +-- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.en.md b/README.en.md index b28a5e7..9302b47 100644 --- a/README.en.md +++ b/README.en.md @@ -66,10 +66,10 @@ ohos.permission.DISTRIBUTED_DATASYNC: Allows the application data to be exchange ### Constraints -1. The sample app is supported only on Huawei phones running the standard system. +1. The sample app is supported only on Huawei phones, tablets running the standard system. -2. The HarmonyOS version must be HarmonyOS 5.0.0 Release or later. +2. The HarmonyOS version must be HarmonyOS 5.0.5 Release or later. -3. The DevEco Studio version must be DevEco Studio 5.0.0 Release or later. +3. The DevEco Studio version must be DevEco Studio 5.0.5 Release or later. -4. The HarmonyOS SDK version must be HarmonyOS 5.0.0 Release SDK or later. +4. The HarmonyOS SDK version must be HarmonyOS 5.0.5 Release SDK or later. diff --git a/README.md b/README.md index c0e54da..e054a30 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ### 介绍 -基于ArkTS扩展的声明式开发范式编程语言编写的一个分布式视频播放器,主要包括一个直播视频播放界面,实现视频播放时可以从一台设备迁移到另一台设备继续运行,来选择更合适的设备继续执行播放功能以及PAD视频播放时协同调用手机编辑发送弹幕功能。 +基于ArkTS扩展的声明式开发范式编程语言编写的一个分布式视频播放器,主要包括一个直播视频播放界面,实现视频播放时可以从一台设备迁移到另一台设备继续运行,来选择更合适的设备继续执行播放功能以及平板视频播放时协同调用手机编辑发送弹幕功能。 ### 效果预览 ![dia.gif](./screenshots/devices/dia.gif) @@ -53,10 +53,10 @@ ohos.permission.DISTRIBUTED_DATASYNC:允许不同设备间的数据交换。 ### 约束与限制 -1. 本示例仅支持标准系统上运行,支持设备:华为手机。 +1. 本示例仅支持标准系统上运行,支持设备:华为手机、平板。 -2. HarmonyOS系统:HarmonyOS 5.0.0 Release及以上。 +2. HarmonyOS系统:HarmonyOS 5.0.5 Release及以上。 -3. DevEco Studio版本:DevEco Studio 5.0.0 Release及以上。 +3. DevEco Studio版本:DevEco Studio 5.0.5 Release及以上。 -4. HarmonyOS SDK版本:HarmonyOS 5.0.0 Release SDK及以上。 \ No newline at end of file +4. HarmonyOS SDK版本:HarmonyOS 5.0.5 Release SDK及以上。 \ No newline at end of file diff --git a/build-profile.json5 b/build-profile.json5 index cde2069..9e8e391 100644 --- a/build-profile.json5 +++ b/build-profile.json5 @@ -5,7 +5,8 @@ { "name": "default", "signingConfig": "default", - "compatibleSdkVersion": "5.0.0(12)", + "compatibleSdkVersion": "5.0.5(17)", + "targetSdkVersion": "5.0.5(17)", "runtimeOS": "HarmonyOS" } ], diff --git a/entry/src/main/module.json5 b/entry/src/main/module.json5 index 5ce43d8..a3333f6 100644 --- a/entry/src/main/module.json5 +++ b/entry/src/main/module.json5 @@ -6,8 +6,7 @@ "mainElement": "EntryAbility", "deviceTypes": [ "phone", - "tablet", - "2in1" + "tablet" ], "deliveryWithInstall": true, "installationFree": false, -- Gitee