Search results for

“testflight the requested app is not avaliable”

416,597 results found

Post

Replies

Boosts

Views

Activity

Reply to Sync Core Data database
There is no direct CloudKit support in watchOS 2. You will need to copy the data you need via the WatchConnectivity framework or via a web service, using NSURLSession.I would urge you to only use a subset of what you need on Apple Watch. That's what we ended up doing in the WWDC app for Apple Watch.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to can't download Xcode 7 beta
No luck here since developer support is just a 9-5 job apparently. On the Apple ID page it was rejecting my password, which was the same one I have always used and have saved in my keychain.I ttired to reset, but they never sent the reset email. I tried to reset via security questions and it says my birthdate doesnt match their records.I guess I'll have to call support tormorrow and try to sort it out.Welcome to Tim Cook's Apple everyone. Steve would be proud!
Jun ’15
Lots of Mail issues
The Smart Mailboxes that I'd created under Yosemite disappeared, and Smart Mailboxes don't seem to be working anyway. All my Rules were reset - the Rule is still there, and the Conditions are unchanged, but the rule is marked as inactive, and the target mailbox is wrong. (The latter is an old bug, where the target folder is silently changed to the folder mentioned in the last rule that you edited. It's been around intermittently since 10.7.) The number of messages in an IMAP folder isn't displayed until you select a message in the folder. (In Yosemite it was calculated and displayed immediately.)
9
0
1.6k
Jun ’15
Metal - Support for geometry and domain shaders?
So after looking through Metal's documentation and going through the headers, I'm noticing the omission of geometry and domain shader support. Technically, the basic idea behind these two could be done with a compute shader given the nature of Metal's pipeline, but proper support in MSL would be a nice convenience to have epsecially given there's largely already support for geometry and domain shaders in OpenGL 4.1.So I have to ask, is there something I missed? Can it be chalked up to 10.11 being in beta, therefore Metal for OS X being in beta as well and not feature complete as such? Or is Metal on OS X only there for additional API compatibility with iOS?
2
0
2.3k
Jun ’15
Reply to How to install watchOS 2 beta.
Briefly...Update your phone to iOS 9 BetaThen, navigate to the developer watchOS beta page and click the beta security profile link to install on your Watch (when you click the link the phone will ask where you want to install it). Then, open the Apple Watch app and check for updates.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Streaming audio with spotty network access
I am working on an iOS app that, among other things, plays streaming audio from an internet source and I am wondering if there are ways to deal with a spotty network that reflects the actual state of the network.Right now, I am using AVPlayer (initialized with the URL of the source). Mostly, it works OK, but it has problems dealing with areas with no network connectivity and transitioning back to areas with connectivity. After entering the area of no network connectivity and then re-entering areas with connectivity, the player does not resume playing. The status of the player remains ReadyToPlay. I have tried toggling pause/play and the player does not resume playing. When I detect that the player gets into this state, I will destroy the AVPlayer object and create a new one.BTW, the Reachability bit in the SCNetworkReachability flag remains set, despite being in a spot with no connectivity.Is there a better way to handle this?alan
2
0
1.1k
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 n
34
0
289k
Jun ’15
Restoring from backup not working
I installed 9.0 with no issues, when I went to go to restore form backup it showed the 2 backups I made, I tried both of them but they both said cannot restore form backup. I reinstaleld the firmware again and now my backups are not evene visible in my icloud account. Is anyone else having this issue?
7
0
967
Jun ’15
Reply to access heartrate directly
No. You must use HealthKit for heart rate data.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Sync Core Data database
There is no direct CloudKit support in watchOS 2. You will need to copy the data you need via the WatchConnectivity framework or via a web service, using NSURLSession.I would urge you to only use a subset of what you need on Apple Watch. That's what we ended up doing in the WWDC app for Apple Watch.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to can't download Xcode 7 beta
No luck here since developer support is just a 9-5 job apparently. On the Apple ID page it was rejecting my password, which was the same one I have always used and have saved in my keychain.I ttired to reset, but they never sent the reset email. I tried to reset via security questions and it says my birthdate doesnt match their records.I guess I'll have to call support tormorrow and try to sort it out.Welcome to Tim Cook's Apple everyone. Steve would be proud!
Replies
Boosts
Views
Activity
Jun ’15
Lots of Mail issues
The Smart Mailboxes that I'd created under Yosemite disappeared, and Smart Mailboxes don't seem to be working anyway. All my Rules were reset - the Rule is still there, and the Conditions are unchanged, but the rule is marked as inactive, and the target mailbox is wrong. (The latter is an old bug, where the target folder is silently changed to the folder mentioned in the last rule that you edited. It's been around intermittently since 10.7.) The number of messages in an IMAP folder isn't displayed until you select a message in the folder. (In Yosemite it was calculated and displayed immediately.)
Replies
9
Boosts
0
Views
1.6k
Activity
Jun ’15
Apple Watch stuck updating? Progress circle hasn't moved in 20 minutes...
It's been stuck at about 3/4 of the way there for the last 20 minutes. I got a message that iMessage was added to the watch across my iPhone & Mac, and in the Apple Watch app it says its on software 2.0.What should I do? I really dont feel like making this thing brickand bringing it to the Apple Store.
Replies
8
Boosts
0
Views
44k
Activity
Jun ’15
Reply to watchOS 2 beta and installing apps
I think i figured it out. You have to register your UDID of the Apple Watch and then it seems to work. As soon as I did I was able to install an app without issue.You get the UDID from Xcode.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Metal - Support for geometry and domain shaders?
So after looking through Metal's documentation and going through the headers, I'm noticing the omission of geometry and domain shader support. Technically, the basic idea behind these two could be done with a compute shader given the nature of Metal's pipeline, but proper support in MSL would be a nice convenience to have epsecially given there's largely already support for geometry and domain shaders in OpenGL 4.1.So I have to ask, is there something I missed? Can it be chalked up to 10.11 being in beta, therefore Metal for OS X being in beta as well and not feature complete as such? Or is Metal on OS X only there for additional API compatibility with iOS?
Replies
2
Boosts
0
Views
2.3k
Activity
Jun ’15
Reply to How to install watchOS 2 beta.
Briefly...Update your phone to iOS 9 BetaThen, navigate to the developer watchOS beta page and click the beta security profile link to install on your Watch (when you click the link the phone will ask where you want to install it). Then, open the Apple Watch app and check for updates.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Will updating my iPhone to iOS 9 stop call functionality?
Ive had no issues on an iPhone 6. Just your normal Video/Battery issues thusfar.Calls work fine for me so far.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Streaming audio with spotty network access
I am working on an iOS app that, among other things, plays streaming audio from an internet source and I am wondering if there are ways to deal with a spotty network that reflects the actual state of the network.Right now, I am using AVPlayer (initialized with the URL of the source). Mostly, it works OK, but it has problems dealing with areas with no network connectivity and transitioning back to areas with connectivity. After entering the area of no network connectivity and then re-entering areas with connectivity, the player does not resume playing. The status of the player remains ReadyToPlay. I have tried toggling pause/play and the player does not resume playing. When I detect that the player gets into this state, I will destroy the AVPlayer object and create a new one.BTW, the Reachability bit in the SCNetworkReachability flag remains set, despite being in a spot with no connectivity.Is there a better way to handle this?alan
Replies
2
Boosts
0
Views
1.1k
Activity
Jun ’15
Reply to Redeem Code
I've tried redeeming it via a system on a non-beta version - Still gaining the same error. I am UK based, as this make impact the App Stores.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Digital Crown Scrolling
My digital crown no longer inputs scrolling. It allows me to click and that works, but it does not seem to know I am scrolling...Anyone else having this problem?
Replies
3
Boosts
0
Views
520
Activity
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 n
Replies
34
Boosts
0
Views
289k
Activity
Jun ’15
Reply to Apple Watch stuck updating? Progress circle hasn't moved in 20 minutes...
No one answered timely enough so I went ahead and held the side button and an option to reset the apple watch to factory settings shows up. Hope this works.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Restoring from backup not working
I installed 9.0 with no issues, when I went to go to restore form backup it showed the 2 backups I made, I tried both of them but they both said cannot restore form backup. I reinstaleld the firmware again and now my backups are not evene visible in my icloud account. Is anyone else having this issue?
Replies
7
Boosts
0
Views
967
Activity
Jun ’15