Search results for

We are unable to process your request

69,584 results found

Post

Replies

Boosts

Views

Activity

Payments and Apps
Apoligies if this has already been posted, but I have a couple of questions and I'm curious. First, how does the payment process work (i.e. Where are the funds transferred), and what happens to the payment?. Perhaps some links would be useful (if any). And secondly, I am a UK developer, but I only see one US IOS program, does it mean I pay the 99 dollars even though I am a UK developer, or is there a difference? Many thanks.
1
0
380
Jun ’15
Reply to can't download
I had this problem but fixed it. It redirected me to manage my Apple ID because apparently the email address on my account had never been verified.I clicked the link to verify my email address, went through that process and then the download links started working.(And don't forget to agree to any new contracts it redirects you to)Hope that helps you!
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to can't download
Same issue. I agreed to the new agreements and paid the $99 since I presume my last years account expired. Says order was processed and will be electronically delivered but haven't recieved any emails other than the order email. That was two hours ago and still doesn't show that Im an active developer when I try to download iOS or OS X. Not sure I need to keep waiting or if maybe my order got stuck in limbo during the initial launch of the new program? My card was charged.And if I try to re-enroll again, after entering in my info it says, We are unable to process your request. An unknown error occurred.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
No symbols for paired Apple Watch
I've created a new project with Xcode 7.0 which includes a Watch Kit app. I've updated my iPhone to iOS 9, and my watch to watchOS 2.0. I'm able to install version of my app by running the main app's Scheme and debugging on the device.However, if I want to debug on the watch I need to run the [App Name] WatchKit scheme. I'm unable to select my phone+watch though because they are listed under Inelegible Devices with the parenthetical explanation: (No symbols for paired Apple Watch)Anyone know how to get Xcode to download these symbols?
58
0
25k
Jun ’15
Invalid Bundle Identifier Format
I'm getting this email below everytime I try to upload my Mac app. Version 1.0 for this happ but I've submitted hundreds of updates/apps before with no issue. My CFBundleIdentifier = com.nuclearnova.mac.birdiegolf , any ideas ass to what could be wrong? I feel like I'm missing something silly here as this is so simple, but I waited a day and looked at it again and still can't figure it out. Also, this happens both before and after the WWDC system upgrades todayDear developer,We have discovered one or more issues with your recent delivery for Birdie Golf. To process your delivery, the following issues must be corrected:Invalid Bundle Identifier Format - The bundle identifier, as specified via the key CFBundleIdentifier in the bundle's Info.plist file, must consist only of characters that are uppercase or lowercase Roman letters (A-Z, a-z), the digits 0 through 9, dot (.), or hyphen (-). For more information about bundle identifiers, the CFBundleIdentifier key, and the Info.plist file, see the Mac Deve
6
0
4.8k
Jun ’15
Application Transport Security ?
When I try to start an URL Request to my website from watchOS 2 the request fail and i get this message :Application Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.what can i do ? All i've found in the doc is :App Transport SecurityApp Transport Security (ATS) lets an app add a declaration to its Info.plist file that specifies the domains with which it needs secure communication. ATS prevents accidental disclosure, provides secure default behavior, and is easy to adopt. You should adopt ATS as soon as possible, regardless of whether you’re creating a new app or updating an existing one.If you’re developing a new app, you should use HTTPS exclusively. If you have an existing app, you should use HTTPS as much as you can right now, and create a plan for migrating the rest of your app as soon as possible.But nothing about the name of the key in Info.plist..
34
0
289k
Jun ’15
WKInterfaceController.openParentApplication is unavailable
I have an app that is currently available for the the Watch. In taking my first peek at iOS9, it only has 2 errors. One in the glanceController and the same in the interfaceController'openParentApplication(_:reply:)' is unavailableIt doesn't look like openParentApplication is even an option with the WKInterfaceController anymore.I know it's early in the process, but suggestions?
2
0
4.1k
Jun ’15
Arrays of tuples
In Swift 2, I created an array of tuples and try to append an item such as: var foo = [(Int, String)]() foo.append((400, Bad Request))I get an error:error: missing argument for parameter #2 in call foo.append((400, Bad Request))However, if I do: var foo = [(Int, String)]() let e = (400, Bad Request) foo.append(e)It compiles.This code worked with the previous version of XCode and Swift, and the release notes don't make any mention of changes to tuples.Is this a bug or am I doing something wrong?
4
0
5.2k
Jun ’15