in-house-distribution

Resign iOS Application .iPA file without changing BundleId

纵然是瞬间 提交于 2019-12-22 01:20:21
问题 background: we are getting iOS apps ( .ipa ) from external developers ( their apps may be submitted in the appstore ), and they want submit their apps in our internal store just by sending their .ipa to us we are installing apps using ota, by sending plist to our endusers, itms-services://?action=download-manifest&url=[PLIST_URL] i was using some GUI signing tools such as iResign, iOS App Resigner and AppResigner, injecting custom entitlements, injection App Transport Security into info.plist

Can we use in-app purchase in enterprise apps for iOS?

家住魔仙堡 提交于 2019-12-21 07:26:09
问题 Can we use in- App purchase in an iOS App distributed as a enterprise app? If not possible can we use paypal or any other purchasing mechanism for that?Does Apple create any problem here as they did for Kindle App using payment other than their one? 回答1: If you're not going to publish the application in the AppStore, you can use any purchasing mechanism that you want. 回答2: Since the Enterprise license doesn't cover App Store integration, your bundle ID isn't registered and approved with Apple

iOS7 itms-services scheme not work?

China☆狼群 提交于 2019-12-18 17:29:17
问题 I have an in-house app which I distribute over a local wifi in release page have a link like this itms-services://?action=download-manifest&url=http://192.168.1.231/app/plist/houseApp/out.plist this worked on iOS 7 Safari but when i add this page to main screen (like web app) the same link didn't work, and apache access.log have no record about /app/plist/houseApp/out.plist this worked in iOS 6 Anybody knows about this? 回答1: It seems Apple have disabled all URL schemas in iOS7 (including

iOS7 itms-services scheme not work?

陌路散爱 提交于 2019-12-18 17:29:13
问题 I have an in-house app which I distribute over a local wifi in release page have a link like this itms-services://?action=download-manifest&url=http://192.168.1.231/app/plist/houseApp/out.plist this worked on iOS 7 Safari but when i add this page to main screen (like web app) the same link didn't work, and apache access.log have no record about /app/plist/houseApp/out.plist this worked in iOS 6 Anybody knows about this? 回答1: It seems Apple have disabled all URL schemas in iOS7 (including

Enterprise (in-house) Swift application quits on launch on iOS9

点点圈 提交于 2019-12-17 22:42:48
问题 We find that our Swift application signed by in house certificate cannot run on iOS9 while it works correctly on iOS8. We have trusted the developer on settings -> general -> profiles, but when we try to launch the app, it gets stuck on the launch screen and then quits. We don't have any clue from the logs. It only tells that it failed to launch after 20.00s. I suspect that is an issue related to the signing. Because when I sign the application with an AdHoc certificate, it has no problem in

Send app for testing to multiple person (2000) without going to Apple approval process

时光毁灭记忆、已成空白 提交于 2019-12-12 03:26:59
问题 I want send my app for testing to multiple users. I don’t want to go for Apple approval process. I read about Enterprise program. But is there any limit for number of users? Is there any alternate option for this? 回答1: 2,000 testers? I would suspect that you don't have 2,000 testers but that you want to distribute an app outside the app store. The Enterprise program allows unlimited number of customers within your company . You pay $299 to join the program and you sign a legally binding

iOS - APNS With InHouse Distribution

末鹿安然 提交于 2019-12-10 11:38:00
问题 A common problem that is being faced by many developers, I'm posting it again as I couldn't get any right solution. For distribution of apps using InHouse account (by OTA), how is it possible to send push notifications to the apps installed on devices. With development profile, everything works good during. The problem is when distribution only. How will Apple recognize that the bundle identifier is being used in house distributed application? 回答1: How will Apple recognize that the bundle

iOS expiring Distribution Provisioning Profile questions

假如想象 提交于 2019-12-09 05:37:48
问题 We have an iOS "In-House" app (distributed OTA) with a Distribution Provisioning Profile that, as you may know, expires in 1 year. We have gone through upgrading the profile and distribution pains last year, so we are familiar with the process of distributing the app with a new profile, but I want to ask some questions just for clarity. (We are currently 29 days away from expiration, so users are getting notified) Last year we thought that creating a NEW distribution provisioning profile with

iOS - APNS With InHouse Distribution

二次信任 提交于 2019-12-08 17:00:41
A common problem that is being faced by many developers, I'm posting it again as I couldn't get any right solution. For distribution of apps using InHouse account (by OTA), how is it possible to send push notifications to the apps installed on devices. With development profile, everything works good during. The problem is when distribution only. How will Apple recognize that the bundle identifier is being used in house distributed application? How will Apple recognize that the bundle identifier is being used in house distributed application? Apple will recognize the app ID because you added

Download inhouse app from another app programmatically

空扰寡人 提交于 2019-12-08 06:52:52
问题 we have a lot of inhouse apps and want an app like AppStore. We did a demo. We can open installed apps but apps,not installed on iPhone, can't be downloaded from our servers to the iPhone. We do: if([UIApplication sharedApplication] canOpenURL:..] == false){ NSString *schemelink = [NSString stringWithFormat:@"itms-services://?action=download-manifest&url=%@",**plist_url**]; [[UIApplication sharedApplication] openURL:[NSURL URLWithString:schemelink]] } The things that we do to find the reason: