ipa

How to convert .xcarchive to .ipa for client to submit app to app store using Application Loader

南楼画角 提交于 2019-11-28 03:27:30
We have created the .xcarchive file code signing with our client's certificate & distribution provisioning profile, but we need to send the .ipa file to our client so that they can upload the app to the App store using Application Loader. The only way to create the .ipa file in Xcode 4.5 is clicking Distribute -> Save for Enterprise or Ad-Hoc Deployment which has a description underneath saying "Sign and package application for distribution outside of the iOS App Store". If we save the .ipa file this way, will it cause any problem submitting to the app store? Or is there a proper way of

--resource-rules has been deprecated in mac os x >= 10.10

。_饼干妹妹 提交于 2019-11-28 03:26:27
I tried to resign my ipa file with new provisioning profile on Mac Os 10.10 with iResign app but I got this warning: "Warning: --resource-rules has been deprecated in Mac OS X >= 10.10". What should I do now? I found workaround : if you run the iResign app from XCode — then you will resign app without problem (warning will appears in console instead of popup). But if you close XCode and run app alone — then popup will back to you! BTW: bug found :) The condition if (systemVersionFloat < 10.9f) Is broken for Yosemite 10.10. Funny. Thanks, Click on your project > Targets > Select your target >

How to make an IPA on XCode 4.3?

北慕城南 提交于 2019-11-27 18:03:11
I have a Mac OS X Lion setup with XCode 4.3. I am not a registered Apple developer. I told, via the plist files: /Applications/Xcode.App/Contents/Developer/Platforms/iPhoneOS.platform/Info.plist and /Applications/Xcode.App/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/SDKSettings.plist , XCode not to require codesigning. I then compiled my project, just a basic iPhone app project, it ran well in simulator. I could build and archive it, then sign it using a self-created certificate and the archive appeared in the Organizer. Nothing strange for the moment, but

How to generate an iOS IPA file with Ionic Framework?

99封情书 提交于 2019-11-27 17:43:12
I've successfully built the iOS app with the ionic build ios command. But now I want to use TestFlight and it asks me for an IPA file. It seems that file is not generated with that build command. So, how can I generate it? Thanks Roshan Bharti You can easily build IPA from ionic framework. by following these steps Navigate to app folder Run cordova build command Open the Xcode Project Clean the project Select iOS mobile device to build for, don't use iOS emulator as device otherwise the archive is disabled. Archive the project Distribute the project Choose a method for distribution Choose a

ios应用在企业内部分发遇到到问题(OAuth2.0授权码模式)

左心房为你撑大大i 提交于 2019-11-27 17:16:57
问题 最近遇到在企业内部分发iOS软件的时候,plist文件和ipa文件都不能下载安装的问题。安装苹果的官方文档: 《通过网页服务器分发企业内部应用》 。搭建了让企业内部员工下载的iOS安装包的服务。但最近给其中的静态资源文件服务器加上了需要用户输入用户名和密码的才能下载的文件的强验证,这直接导致plist文件和ipa不能下载了。 原因 通过抓包发现,用户点击下载的时候,即点击如下代码的时候: <a href="itms-services://?action=download-manifest&url=https://example.com/manifest.plist">Install App</a> itms-services协议想要下载plist文件的Get请求,没有携带用户登录的cookie,导致下载失败。 参考解决方案 根据 《How to secure iOS enterprise distribution using oauth on a public facing website? 》 这个帖子的思路,就是把请求下载plist文件和请求下载ipa文件的两个Get请求,都做成独立的服务,具体过程如下: 总结 itms-services下载问题,应该用OAuth2的方案解决。具体应该看一看阮一峰关于OAuth2.0的几篇文章: 理解OAuth 2.0 OAuth 2.0

How to tell what profile/signing certificate was used to sign .ipa?

一世执手 提交于 2019-11-27 17:03:25
I have a bunch of .ipa files and I've used a script to resign them. So how can check the provisioning profile/signing certificate to conform they are using the correct information? Ideally, I'd like to be able to take any .ipa file and tell which provisioning profile/signing certificate was used to sign it. Backstory: Our enterprise distribution certificate is expiring and I want to re-sign our stuff. It's a simple take for all the stuff we've made and archived in Xcode, but for 3rd party vendor made distributables I can't do that. I want to avoid asking for a re-signed .ipa file because a new

Install .ipa to iPad with or without iTunes

最后都变了- 提交于 2019-11-27 16:52:08
I have the .ipa from PhoneGap build and I need to test it. I got provisioning profile from Developer account. So my question is: can I directly put my .ipa to iPad to install for testing, or do I have to follow some rules to install? Yes, you can install IPA in iPad, first you have to import that IPA to your itunes. Connect your iPad to iTunes then install application just by click on install and then sync. No need to bother with iTunesConnect for sharing your adhoc builds. Just upload your ipa file to diawi and after successful uploading you will get a link open the link in safari and you

ERROR ITMS-90086 submitting app

非 Y 不嫁゛ 提交于 2019-11-27 13:58:55
I need to submit my app and I retrieve this error: and the configuration is on 64 bits: I don't know how to do... thanks in advance Make sure that for BOTH : Project --> Build Settings --> Architectures AND : Targets --> Build Settings --> Architectures You have the following 4 things : Architectures set to Standard architectures (armv7, arm64) - $(ARCHS_STANDARD) Base SDK set to some iOS8 SDK, for example Latest iOS (iOS 8.3) or iOS 8.3 Build Active Architecture Only --> Release set to No Valid Architectures set to arm64 armv7 armv7s You will then no longer get the ERROR ITMS-90086 Make sure

Error when distributing an IPA over the air with dropbox - iOS 7.1

不羁的心 提交于 2019-11-27 13:56:27
问题 As Apple requested to use https instead of http for distributing the IPAs over the air, I tried to use dropbox. I followed this solution Enterprise app deployment doesn't work on iOS 7.1 but I'm getting this error: "Cannot connect to dl.dropboxusercontent.com" when trying to install the plist through this link: <a href="itms-services://?action=download-manifest&url=https://dl.dropboxusercontent.com/s/56ny312cwdacho7/xxxxx.plist> Install </a> Thanks in advance. 回答1: I had exactly the same

ios 8 openUrl itms-services does not exit current app

天涯浪子 提交于 2019-11-27 13:43:17
问题 In iOS 6 or 7, the app exit to the home screen when I call UIApplication openUrl with a url of itms-services://XXXX to install a new version of my app (using enterprise deployment with ipa files). In iOS 8, this is no longer the case. Now the app continue running just as nothing has happened, but if I go the home screen, I can see my app icon grayed out, with a downloading pie chart about 66% completed and the text "Downloading..." below. If I now wait for a while (less than a minute), the