Как я могу установить модуль Ti.Healthkit?
Я скачал ti.healthkit с https://labs.appcelerator.com/project/55c3c788e014044625e9b2a1/HealthKit-Module но не смог собрать его, хотя сделал это по инструкции.
Итак, я понял ошибку Chances are there is an issue with your entitlements. Verify the bundle IDs in the generated Info.plist file.
я также добавляю <key>UIRequiredDeviceCapabilities</key>
<array>
<string>healthkit</string>
</array>
в tiapp.xml. Но я все еще получаю ту же ошибку.
Итак, как я могу это исправить?
С нетерпением жду вашего ответа.
Огромное спасибо.
1 ответ
Когда я читаю документы этого комплекта, они говорят добавить это в свой тег plist файла tiapp.xml:
<key>com.apple.developer.healthkit</key>
<true/>
Итак, ваш окончательный файл tiapp.xml должен выглядеть следующим образом (обратите внимание на значение ключа healthkit в конце):
<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>