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

안녕하세요, 저에게 답해 주셔서 감사합니다. 나는 이것을 사용했다. 난 그냥 regis 애플 인증서, 그것을 위해 Healthkit을 추가하십시오. 그리고 나는 성공적으로 건설했습니다. –