provisioning-profile

Profile doesn't include certificate

我的梦境 提交于 2019-12-10 16:09:23
问题 Using Xcode 9.1, after building an iOS app, I try to archive it. But I get the following error message: Provisioning profile "MyAppProfile" doesn't include signing certificate "iPhone Developer: My Name (X1YZ2AB3CD)". What is the simplest way to solve this? 回答1: Try enabling automatic signing. It will take care these things mostly. The reason for this error is you may have chosen a developer certificate(which the provisioning profile doesn't intended to use with) for distributing/release

How to add a new device to a provisioning profile

强颜欢笑 提交于 2019-12-10 15:40:15
问题 I would like to edit a distribution provisioning profile so I can add / remove devices. Basically, the following documentation page from Apple shows us how to do it easily... But since they updated the portal, I don't know how to do it anymore... http://developer.apple.com/library/ios/#recipes/ProvisioningPortal_Recipes/CreatingaDistributionProvisioningProfile/CreatingaDistributionProvisioningProfile.html#//apple_ref/doc/uid/TP40011211-CH3-SW1 回答1: I'll answer my own question, since the

Error with Provisioning Profiles (no matches) in Xamarin for Visual Studio 2015

佐手、 提交于 2019-12-10 13:46:57
问题 I am trying to build/run my Xamarin.Forms (PCL) on my iPhone for testing and debugging. I'm suddenly getting the following error: No iOS signing identities match the specified provisioning profile... As you can see from the image below, the profile it's looking for is available on the Mac in the right spot. I cleared out all my other profiles (distribution,et al), and started clean with a single profile. I'm still getting the error. I've tried changing app identifiers and back, creating a new

Bundle Identifier (App ID Suffix)

给你一囗甜甜゛ 提交于 2019-12-10 10:33:20
问题 when creating the AppID for my provisioning profile, i am a bit confused about a point in the documentation, it has been said that you can use either: com.domainname.appname or com.domainname." In which case it is recommended each Bundle please. 回答1: Second one is Wildcard App ID. And it should looks like com.domainname.* . Instead of * you can use any valid name for your project. You can use this ID for all your projects and you don't have to create new ID and new provision profile for each

Resign iOS App from a distribution identity to a developer identity

这一生的挚爱 提交于 2019-12-10 10:14:04
问题 I use a continuous integration tool that builds an app using a Distribution identity and an Ad Hoc mobile provision. This app is sent on a web site for ad-hoc deployment and everything works well. But now I would like to add a step in my build workflow to execute UI Automation tests. Instruments needs an app signed with a Developer identity, so instead of building a new version of the app signed with a developer certificate, I want/need (Q.A. team wants actually) to resign the previous

Provisioning profile not found

孤人 提交于 2019-12-10 04:17:02
问题 I have just upgraded my iPhone to the 4S and having restored all of the settings from my old phone I found that three of my apps were missing. I went to the Apple Dev centre and deleted my old phone and then rebuilt and downloaded the profiles with my new phone added. I removed all of the old profiles and copied the newly created ones across. The problem now is that in two of my projects, when I try to build I get an error - [BEROR]Code Sign error: Provisioning profile '8A69C027-B06A-4A32

What is difference between .ipa with development provisioning and .ipa with adhoc distribution provisioning profile?

北城余情 提交于 2019-12-10 03:34:12
问题 I looked on stack overflow there are many similar questions but could not understand exactly. As my knowledge there are three types provisioning profile - Development provisioning profile Ad hoc distribution provisioning profile App store distribution provisioning profile Development provisioning profile allows for testing and debugging. Ad hoc distribution for beta testing without using Xcode. But my question is that .ipa created for testing using development provisioning or using adhoc

Unable to compile for iOS 10 after Sierra Update

ⅰ亾dé卋堺 提交于 2019-12-10 01:47:42
问题 I have a certificate & provisioning profile generated this August. They are both valid (unexpired) in the Apple Developer Portal. When I open my project, which targets 8.3, I get this error: No certificate matching 'iPhone Developer: My Name (###ABC123)' for team 'Company.' Select a different signing certificate for CODE_SIGN_IDENTITY, a team that matches your selected certificate, or switch to automatic provisioning. I can see the private key nested under my certificate in Keychain. In my

Enterprise Distribution Provisioning Profile Expiration

旧巷老猫 提交于 2019-12-10 01:45:55
问题 Our company enterprise provisioning profile is set to expire in a month, but our distribution certificate is set to expire in a few more years. What are our options? Do I need to regenerate a new provisioning profile and create a new build that I have to redistribute? Or is there a simpler option like just sending out the new provisioning profile I generate? or better yet I don't have to do anything? Thanks 回答1: So generating a new provisioning profile will not invalidate any of the apps out

Deleting expired provisioning profiles

放肆的年华 提交于 2019-12-10 00:25:46
问题 Using exclusively terminal, how can one identify and delete the expired provisioning profiles from ~/Library/MobileDevice/Provisioning Profiles Is there a way to do that just from terminal? 回答1: You can write a shell script that will loop through the files, grab the date from the mobileprovision file, and check it against the current date. #!/bin/sh for provisioning_profile in ~/Library/MobileDevice/Provisioning\ Profiles/*.mobileprovision; do printf "Checking ${provisioning_profile}... " #