• Lv0
    粉丝0

积分0 / 贡献0

提问1答案被采纳0文章0

作者动态

    code:9568293 error: install failed due to check syscap filed

    HeavenGo 显示全部楼层 发表于 2024-12-9 10:22:35

    【问题描述】

    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

    您尚未登录,无法参与评论,登录后可以:
    参与开源共建问题交流
    认同或收藏高质量问答
    获取积分成为开源共建先驱

    精彩评论2

    hyacinth养花人

    沙发 发表于 2024-12-9 16:59:22
    把日志都发一下,方便排查问题

    fengyunrenwu

    板凳 发表于 2024-12-10 10:27:09
    镜像版本和SDK版本不匹配哈,建议更新最新的镜像和SDK。

    Copyright   ©2023  OpenHarmony开发者论坛  京ICP备2020036654号-3 |技术支持 Discuz!

    返回顶部