Search results for

missing package product

51,080 results found

Post

Replies

Boosts

Views

Activity

iOS Enterprise Program vs Volume Purchase Program
Our company developed its own products and we want to distribute it to our clients ( other companies ) personnels. We have already have an iOS Company Account ( similar to Individual Account but with DUNS number registered ) . However our clients may don’t want to see their specific apps on the market; so I had to distribute it in a different way. After some research I come up with two solutions;iOS Enterprise ProgramCustom B2B Applications ( downloading by Volume Purchase Program )a) I know that Enterprise Program applications should be downloaded only by the employees of the company that they are working. If I bought this program, distribute my apps to a server with SSL cert. how apple is going to check my downloads ? Since devices UDID’s for distributing not required to be registered and the app can be downloaded by unlimited devices, how is it going to be the validation process ?b) I tried to distribute an app for custom b2b but I could’t see an option under the prices segment. I create a new app
5
0
2.8k
Jun ’15
Reply to Download failure
Often there are more than 1 packages downloaded for an update. An example is the recent DP2 update. There is a firmware update which adds about 100MB to the total download. So 2 packages are downloaded, not 1. There was also a separate Recovery Update as well. So just downloading 1 of the packages isn't enough to get the complete update.In the case of command line tools 2 packages are also downloaded, not just 1.There is CLTools_Executables.pkg (which I think is the one you got) AND ALSO a smaller DevSDK_OS1011.pkg (which I think you might not have got).So when you say the App store thinks THE package is larger than what it actually isbear in mind there are actually 2 packages that should be downloaded not just 1 (which you call THE package).
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Bonjour detection
Apparently Apple is moving back on it's strategy, and for privacy reasons is removing Bonjour stuff from the OS core.That's a very odd way to put things. Bonjour has always been about advertising services, not devices. iOS has no services to advertise by default, and thus it does not appear to Bonjour. This is expected behaviour.OTOH, if you register a Bonjour service from within an app that you run on the device, it shows up in Bonjour just fine.Remember that the goal of Bonjour is to help users connect to services, not to provide a network management protocol.1) To be sure I have understood everything right, and if it is realy impossible to discover iDevices with bonjour ?Correct.2) To know any other way to discover an iDevice and more generaly a Smartphone connected on the local WiFi network.In general there's no good way to do this. You can ping every IP address but...3) To know how to ping a iDevice when it is in sleep mode, all my ping requests fail 30 seconds after the iDevice enters in sleep mode.To s
Jun ’15
Reply to Download failure
It's true that this is the case for the DP2 update itself. This is why I haven't dared to try that yet. But I'm not convinced about Command Line Tools having 2 packages. After installing the CLTools_Executables.pkg the Command Line Tools update actually disappeared from the App Store Available Updates list. If it wasn't installed completely then wouldn't it still be in the updates list?
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to OpenSSL headers
Sadly, it looks like we're not supposed to use it any more. As you say, it's included in the 10.10 SDK, but is deliberately missing from the 10.11 SDK.http://lists.apple.com/archives/macnetworkprog/2015/Jun/msg00025.html
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to VoIP with PushKit
What I figured out is that not every voip push notification that has been sent by the server will be received by the iOS device. Sometimes it seems, that they got lost.My app won't be put into the app store, so it is ok, that the app is marked to be a voip app without being a normal voip app.I'm using the voip feature to be able to receive push notifications in all app states - including the suspended state. The notifications will be received even on the lock screen. But this worked sometimes and sometimes not, I cannot figured out why this happens. I found the following posting in the iOS dev forum archives (https://devforums.apple.com/thread/257354?start=0&tstart=0), but I haven't tested this solution yet. I agree with you, I faced many issues as well using PushKit.My problem is still starting a background task, when a voip push notification arrives, the app is suspended and the lock screen is in front. In this case I register a new background task to download a file from a remote server. Therefore I'm
Jun ’15
Xcode 7, Swift 2.0, odd "trap 6" with odd solution
TL;DRI got trap 6 error when I tried to build my App. I tried to fix it for a whole day. I fixed it by simply cloning the repo to somewhere else and build it. It might be caused by some cached build file somewhere in the project folder, which is not tracked by version control.Why I am certain it is caused by some cached file in that project folderI tried Clean action in Product menu. I also tried deleting Derrived Data folder in Project window. None of these helped.I also tried to checkout my master branch, which I know it should build. But I got the same error which makes no sense.I created some demo project to mimic the minimal setup of my App. All of them can be built without any error.I cloned my repo somewhere else and checked out the exact commit which is giving me trap 6 error. Build, succeeded!I copied the original trap 6 folder to somewhere else, I still got the same error.PS.Another thing is that, I got this error when I was using Xcode 7 beta. I updated to beta 2 because I see someone said
6
0
956
Jun ’15
Reply to Battery Darin Worse on Beta 2?
Agreed with others here. My battery performance had probably halved on my iPhone 6+ and Watch with the first betas of iOS9 & Watch OS2 but beta two has probably recovered around half of what I had lost in performance. Would be more likely to recommend it as a beta now.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Determining Whether the User Can install apps
Hi,I'm trying to open the app store in programatically and when the device restriction for Installing apps is on, it won't do anything.These are the things that I've tried:canOpenURL:[NSURL URLWithString:@itms-apps://]] returns YEScanOpenURL:[NSURL URLWithString:@itms://]] also returns YESI want the user to be forwarded to our product web site in case app store cannot be opened (note that it's a normal website not an itunes url).How can I know if the installing app restriction is applied?I know for in-app purchases you can use[SKPaymentQueue canMakePayments]which basically reflects if the have possibly disabled in-app purchases.So what is the synonym to the latter for installing apps?Thanks.
1
0
373
Jun ’15
Anyone else missing kCGLineCapRound?
I've been experimenting with some code in Xcode 7 using CGContextSetLineCap: CGContextSetLineCap(context, kCGLineCapRound)This worked in the first Xcode 7 beta, but it doesn't work in the second beta. I get a compile-time error: Use of unresolved identifier 'kCGLineCapRound'I've looked around a little, but I haven't found anything about this changing, or where I might import/include the kCGLineCapXXX constants.
4
0
5.5k
Jun ’15
When CONFIGURATION_BUILD_DIR is set .dSYM is missing from archive
Hey!We have a problem creating an archive with xcodebuild if CONFIGURATION_BUILD_DIR is set. With this paramater set .dSYM is generated into the CONFIGURATION_BUILD_DIR folder and not in the .xcarchive. I've tried a different combination of parameters but nothing seems to work with the current project settings.Does anyone have a solution for this issue?Thanks in advance! Regards,Tibor
4
0
3.1k
Jun ’15
Reply to Download failure
No. I bet if you install DP2 without the firmware update, then that won't show up in the mac app store updates tab either.Same goes for itunes betas. That's even worse. There are 5 packages for that and if you just install the main itunes one, the other 4 won't show up in the updates tab - leaving you with an incomplete installation.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
About use of SKReceiptRefreshRequest
I lost receipt data with following steps.Purchased a consumable IAP item In Sandbox environment.Terminate app before SKPaymentTransaction is finished.In addition, I delete app and re-install. (This is KEY action)Launch app and receive an above transaction (not finish yet)Get receipt using NSBundle#appStoreURL method but No receipt data exist.I want to get receipt data.I found some way to get it but I dont know whether that way is correct or not.Solution-1: Request with SKReiectRefreshRequest. After that, I can get receipt data using NSBundle#appStoreURLSolution-2: Request with SKPaymentQueue#restoreTransaction. I know it usualy use to restore non-consumable item's receipt. But it works fine.Solution-3: Purchase other item. Somehow I can get receipt data.I think Solution-1 is most natural. ( But I think it is for Volume Purchase or auto-renewal item )Is my use of SKReiectRefreshRequest correct ?or can you tell me other good solution ?
4
0
4.0k
Jun ’15