1

我创建了一个示例 bixby 胶囊,直到上周它都运行良好。我今天打开了胶囊,发现胶囊.bxb 文件中有一条警告消息,我的胶囊停止工作。

这是警告消息:WARN_DEPRECATED 将 'support-halt-effect-in-computed-inputs' 添加到 'runtime-flags' 并适应新的行为:在计算输入期间遇到的停止效果将停止。

下面是 capsule.bxb 文件中的代码

capsule{  
  id (vobo.roqos_support)
  version (0.1.0)
  format (3)
  targets {
    target (bixby-mobile-en-US)
  }  
  marketplace-constraints {    
    country-constraints {
      allowed-list {
        allow (US)
        allow (CA)
      }
    }    
    device-model-constraints {
      allowed-list {
        allow (SM-G965N)    // S9+ Korean version
        allow (SM-G960[A-Z]?)  // any variant of S9
      }
    }
  }
}
4

1 回答 1

1

capsule.bxb如果您将其添加到文件中,警告将消失。

  runtime-flags {
    support-halt-effect-in-computed-inputs
  }

至于“胶囊停止工作”,请更新您的问题以提供有关这意味着什么的更多详细信息。

于 2019-04-10T17:07:06.470 回答