OpenHarmony开发者论坛

标题: code:9568293 error: install failed due to check syscap filed [打印本页]

作者: HeavenGo    时间: 2024-12-9 10:22
标题: code:9568293 error: install failed due to check syscap filed
[md]### 【问题描述】

1. 介绍问题现象和发生的背景
   我基于DevEco Studio 5.0.1 Beta3,新建一个hellowold项目,没有引用特殊的api,编译类型为OpenHarmony,SDK 10,配置完签名后,安装在OpenHarmony 4.0.10的设备上,提示安装失败msg:error: failed to install bundle. code:9568293 error: install failed due to check syscap filed.
   将编译类型改为harmonyOS,就可以正常安装,不知道我哪里配置的不对
2. 相关的代码(请勿使用截图)
   build-profile.json5中SDK的配置如下:

   ```
   "products": [
         {
           "name": "default",
           "signingConfig": "default",
           "compileSdkVersion": 10,
           "compatibleSdkVersion": 10,
           "runtimeOS": "OpenHarmony"
         }
       ],
   ```

   Index.ets代码如下

   ```
   @Entry
   @Component
   struct Index {
     @State message: string = 'Hello World';

     build() {
       RelativeContainer() {
         Text(this.message)
           .id('HelloWorld')
           .fontSize(50)
           .fontWeight(FontWeight.Bold)
           .alignRules({
             center: { anchor: '__container__', align: VerticalAlign.Center },
             middle: { anchor: '__container__', align: HorizontalAlign.Center }
           })
       }
       .height('100%')
       .width('100%')
     }
   }
   ```
3. 运行结果、错误截图

   hdc安装后提示:msg:error: failed to install bundle. code:9568293 error: install failed due to check syscap filed.
4. 我尝试过的解决方法和结果

   模块下的module.json5文件,deviceTypes仅保留default,安装依然失败
5. 我想要达到的结果

   可以在OpenHarmony 4.0设备上正常安装hap

### 【运行环境】

硬件:
ROM版本:OpenHarmony 4.0.10.18
DevEvoStudio版本:5.0.1 Beta3
SDK版本:10
[/md]
作者: hyacinth养花人    时间: 2024-12-9 16:59
把日志都发一下,方便排查问题
作者: fengyunrenwu    时间: 2024-12-10 10:27
镜像版本和SDK版本不匹配哈,建议更新最新的镜像和SDK。
作者: HeavenGo    时间: 2024-12-20 16:03
回复 hyacinth养花人: 已解决,我用的DevEcho Studio是最新的5.0版本,因该默认带上了一些基础能力,导致无法安装,改为4.0就可以了




欢迎光临 OpenHarmony开发者论坛 (https://forums.openharmony.cn/) Powered by Discuz! X3.5