XCODE 8 - the rights specified in your application code are invalid.

I am trying to create a jenkins assembly for my ios application using gradle.

I created an adhoc distribution profile for my application, and I use the certificate and password created for another application in one command and referencing them in build.gradle.

Before creating the Jenkins assembly, I wanted to make sure that the assembly works locally using the gradle archive, followed by the gradle package commands, it worked successfully and created the .ipa file.

When I tried to drag and drop .ipa onto my development phone using the XCODE -> Devices window, it gave rights that did not match the error. see below to view a screenshot. I tried everything I could, but that does not fix this problem. Has anyone come across this before. Please help! If you have, I use XCODE 8.

XCODE permission features XCODE inclusion options

Allowed Services / Rights on Apple Developer Website Allowed Services / Rights on Apple Developer Website </a>> </p> <p> The following shows how my distribution profile appears on the Apple Developer Website <a href =The following shows how my distribution profile appears on the Apple Developer website </a>> </p> <p> when I package the application and try to drag and drop the .ipa file using the XCODE -> Devices window.  I get the following error. </P> <p> <a href =Screenshot with exact error

Below is my permissions file.

`<?xml version="1.0" encoding="UTF-8"?>
  <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>com.apple.developer.healthkit</key>
    <true/>
</dict>
</plist>

`

+4
source share

Source: https://habr.com/ru/post/1662434/


All Articles