0

私はhttps://labs.appcelerator.com/project/55c3c788e014044625e9b2a1/HealthKit-Moduleからti.healthkitをダウンロードしましたが、指示に従っていましたが、構築できませんでした。Ti.Healthkitモジュールをインストールするにはどうしたらいいですか?

ので、私はまた、tiapp.xmlに <key>UIRequiredDeviceCapabilities</key> <array> <string>healthkit</string> </array>

を追加バグ Chances are there is an issue with your entitlements. Verify the bundle IDs in the generated Info.plist file.

を取得します。しかし、私はまだ同じバグを取得します。

どうすれば修正できますか?

お返事をお待ちしています。

ありがとうございました。

<key>com.apple.developer.healthkit</key> 
<true/> 

だから、あなたの最終tiapp.xmlファイルは(次のようになります。注意事項:私はこのキットのドキュメントを読むと

答えて

0

は、彼らはあなたのtiapp.xmlファイルplistのタグでこれを追加すると言います最後の健康診断キー数値):

<ios> 
     <enable-launch-screen-storyboard>true</enable-launch-screen-storyboard> 
     <plist> 
      <dict> 
       <key>UISupportedInterfaceOrientations~iphone</key> 
       <array> 
        <string>UIInterfaceOrientationPortrait</string> 
       </array> 
       <key>UISupportedInterfaceOrientations~ipad</key> 
       <array> 
        <string>UIInterfaceOrientationPortrait</string> 
        <string>UIInterfaceOrientationPortraitUpsideDown</string> 
        <string>UIInterfaceOrientationLandscapeLeft</string> 
        <string>UIInterfaceOrientationLandscapeRight</string> 
       </array> 
       <key>UIRequiresPersistentWiFi</key> 
       <false/> 
       <key>UIPrerenderedIcon</key> 
       <false/> 
       <key>UIStatusBarHidden</key> 
       <false/> 
       <key>UIStatusBarStyle</key> 
       <string>UIStatusBarStyleDefault</string> 
       <key>com.apple.developer.healthkit</key> 
       <true/> 
      </dict> 
     </plist> 
    </ios> 
+0

こんにちは、ありがとうございました。私はこれを解決しました。私はちょうどレジスアップル証明書、それのためのHealthkitを追加します。そして、私は正常に構築しています。 –

関連する問題