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

Allowed Services / Rights on Apple Developer Website



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>
`
source
share