apple-id

Can't delete the old agent Apple ID from Xcode

强颜欢笑 提交于 2019-12-08 06:52:59
问题 I have a problem regarding to adding Apple ID to Xcode. So far I have been using an office Apple ID as my Xcode Apple ID. Now they invited me to join as a developer. so using my own Apple ID I can access the provisioning profiles and apps in old account. And now I want to add my own apple id to the xcode and delete that old office Apple id. But I cant delete the old apple id from the xcode. When I archive the project and when try to save the .ipa file, it says cant access the account. That

Can't delete the old agent Apple ID from Xcode

我是研究僧i 提交于 2019-12-06 16:46:54
I have a problem regarding to adding Apple ID to Xcode. So far I have been using an office Apple ID as my Xcode Apple ID. Now they invited me to join as a developer. so using my own Apple ID I can access the provisioning profiles and apps in old account. And now I want to add my own apple id to the xcode and delete that old office Apple id. But I cant delete the old apple id from the xcode. When I archive the project and when try to save the .ipa file, it says cant access the account. That means they have changed the password of old account. I have already added my private apple id to Xcode

Accounts disappearing in Xcode 9

我的未来我决定 提交于 2019-12-05 00:58:53
I upgraded to Xcode 9.0 recently and for some reason my accounts doesn't get stored in the Accounts panel anymore. Xcode stores them if I close the program, but NOT when I restart the computer. I guess this is a bug and not a new feature, but are there any hacks or settings that I could change to prevent my accounts from disappearing (except from never turn off the computer that is)? For the ones who may concern I've experienced a quite similar bug. In my case, some accounts disappeared and some others just "loose" the authentication with a "please relogin message". Even if I re-insert the

Xcode Error Retrieving Developer Info?

£可爱£侵袭症+ 提交于 2019-12-04 22:33:44
I am following this apple doc and trying to add provisioning profiles and signing identities for a new apple-id. The problem is that when I add a new apple-id in Xcode -> Settings -> Accounts I am getting "Error Fetching Developer Info". This is about all I have found searching around on google. I've restarted Xcode multiple times to no avail. Has anyone encountered this error? How do I fix this issue? This is what worked for me. XCode > Preferences > Accounts Retype password, then click the General tab. Then, go back to the Accounts tab. The error disappeared. I'm guessing there are a number

Refreshing iOS app receipt: How to determine if user will need to sign in for app store?

我与影子孤独终老i 提交于 2019-12-03 09:19:11
问题 I am implemeting Apple's "Grand unified receipt" on iOS 7, which allows the app to check an app's purchase receipt locally without having to contact Apple's servers for validation & verification. This works great if the user has a receipt stored in the app. Iin the case that the app is missing the receipt, the best practice is to request the app to refresh its receipt, as such: SKReceiptRefreshRequest *request = [[SKReceiptRefreshRequest alloc] init]; [request setDelegate:self]; [request

user's AppleId programmatically in iphone

坚强是说给别人听的谎言 提交于 2019-11-30 17:15:48
问题 is this possible to get the user's apple id which is currently login to device? Actually I implemented inapp purchases and I get a device id and Apple id of the user when it purchase the app. 回答1: No, it's not possible. Instead of AppleId, you can use [[UIDevice currentDevice] identifierForVendor] . 回答2: No, you can't. It's a privacy element like the UDID. You can read more about this here : Privacy issue But, if you want, you can use the identifierForVendor provided by Apple using this

Apple developer account teams not showing up on VS Mac

只谈情不闲聊 提交于 2019-11-30 15:41:26
问题 When I log in my apple id account on Visual Studio Mac Community 2017, teams doesn't show up. Do I have to have a paid apple developer account to use this? There are no team displayed, and the button "View Details..." doesn't do anything. Also, the icon on the left side of the account is a smiley face icon and it should be a user icon in the official tutorial. Screenshot: While it works perfectly on Xcode: Environments: - Xcode commandline installed. - Fastlane installed. What troubleshooting

How to create ipa in xcode 6 without Apple Developer account?

安稳与你 提交于 2019-11-26 05:16:19
问题 Need to generate .ipa file for Ad-Hoc distribution. Client has provided only certificates, private keys and provisioning profiles which were enough to create .ipa till Xcode 5. But in Xcode 6.1 when I export as Save For Ad Hoc Deployment it gives message To save for Ad Hoc Deployment, you need to add an Apple ID account that is enrolled in the iOS Developer Program for the development team \'xxxxxxxxxx\' Is there any way of creating .ipa without developer account credentials? 回答1: Finally