I think Xcode is only supported to 9.4 on Mac 10.13.2+ Remove Xcode 10 and try with Xcode 9.4.
https://downloads.livecode.com/livecode ... -9_0_1.pdf
Search found 90 matches
- Wed Oct 03, 2018 3:29 am
- Forum: iOS Deployment
- Topic: Trying to install IOS SDK
- Replies: 2
- Views: 1270
- Thu May 18, 2017 9:12 pm
- Forum: iOS Deployment
- Topic: Pitfalls with iOS Development
- Replies: 2
- Views: 2157
Re: Pitfalls with iOS Development
Dan, Panos, My IOS App uses get http "non-https connection" calls and I do not have ATS disabled. Everything works fine. The caveat is that I believe Apple allows you to call an IP address over http, but not a domain. Not sure for external domains, but my App was just approved for an internal http c...
- Wed Apr 26, 2017 6:20 pm
- Forum: iOS Deployment
- Topic: Empty perBinaryResults key
- Replies: 8
- Views: 3546
Re: Empty perBinaryResults key
I can only conclude this was all total nonsense. I just re-submitted my App with a few bug fixes and no other changes. App was approved, so who knows?
- Mon Apr 24, 2017 5:27 am
- Forum: iOS Deployment
- Topic: Empty perBinaryResults key
- Replies: 8
- Views: 3546
Re: Empty perBinaryResults key
My App was approved March 6th so we have that in common, could be a bug on Apple's end? I haven't heard anything recently and have been avoiding dealing with it. Regarding the copy files pane, I didn't include any fonts. No exit on suspend hack either.
- Fri Apr 14, 2017 5:12 am
- Forum: iOS Deployment
- Topic: Empty perBinaryResults key
- Replies: 8
- Views: 3546
Re: Empty perBinaryResults key
Panos, thanks, I checked it out with TextWrangler and no perBinaryResults key. I'm going to have to assume the email was bogus and I'll do nothing at this point. Will post here if anything else transpires. Thanks for your help.
- Thu Apr 13, 2017 6:44 pm
- Forum: iOS Deployment
- Topic: Empty perBinaryResults key
- Replies: 8
- Views: 3546
Re: Empty perBinaryResults key
Thanks for the help... My first thought was that it was a scam but there is no link to click so I don't know what the point would be. I checked the message header and the email appeared to legitimately come from itunesconnect@apple.com. I replied and the message didn't bounce - no answer though. I d...
- Thu Apr 13, 2017 12:01 am
- Forum: iOS Deployment
- Topic: Empty perBinaryResults key
- Replies: 8
- Views: 3546
Empty perBinaryResults key
My App was approved on March 6th but today I got this cryptic message from Apple: Hello, We are reaching out to you because we were unable to process your latest build upload due to a bad binary. Specifically, your plist has an empty perBinaryResults key. Please resolve this issue and resubmit your ...
- Wed Jan 18, 2017 10:24 am
- Forum: iOS Deployment
- Topic: Help needed with TSNet and optimization
- Replies: 0
- Views: 1321
Help needed with TSNet and optimization
I'm in the final stages of testing my iOS App which uses a REST API to download live data once every second or so. The data expires after the screen updates. I've realized that PUT is synchronous so I'm hoping to speed things up and stop the occasional screen freezing by going the asynchronous route...
- Wed Dec 07, 2016 2:11 am
- Forum: MergEXT
- Topic: MergSocial
- Replies: 10
- Views: 6049
Re: MergSocial
I'm using Livecode Indy 8.1.0 build 14005. I have been messing around with MergSocial but as per the previous comments it doesn't seem to pass the body text properly to Facebook. Twitter seems ok. Any chance this will be or has been fixed? It seems this is an outstanding issue that has fallen throug...
- Fri Dec 02, 2016 1:59 am
- Forum: iOS Deployment
- Topic: give up http for download from a web site ?
- Replies: 11
- Views: 3618
Re: give up http for download from a web site ?
I believe if you read Apple's new requirements carefully they will still allow http connections to a specific IP address. Not domains though.
- Tue Oct 11, 2016 7:49 pm
- Forum: iOS Deployment
- Topic: Parsing a json value returned via rest api call
- Replies: 9
- Views: 5042
Re: Parsing a json value returned via rest api call
Peter,
Thanks for the suggestion, I'm working on that approach, seems promising.
Cheers, Adam
Thanks for the suggestion, I'm working on that approach, seems promising.
Cheers, Adam
- Wed Sep 28, 2016 4:18 am
- Forum: iOS Deployment
- Topic: Navbar widget highlight on app reopen
- Replies: 3
- Views: 1978
Re: Navbar widget highlight on app reopen
Solved my own problem, if you have the same here's a fix: on preopencard set the hilitedItem of widget "navbar" of group "navgroup" to 3 end preopencard Just set the hilitedItem of the widget to the number corresponding to whichever card you are opening. Now you can return to a card after shutting d...
- Tue Sep 27, 2016 8:37 am
- Forum: iOS Deployment
- Topic: Parsing a json value returned via rest api call
- Replies: 9
- Views: 5042
Re: Parsing a json value returned via rest api call
two steps forward, one step back... I need some advice as to the best approach for this design: Imagine a card with 4 data fields constantly updating. As soon as the card is opened the four data fields start making REST API calls to get values to put into the fields. I need to have them all simultan...
- Mon Sep 26, 2016 1:31 am
- Forum: iOS Deployment
- Topic: Parsing a json value returned via rest api call
- Replies: 9
- Views: 5042
Re: Parsing a json value returned via rest api call
Thanks, much appreciated. That worked great, I ended up using this: on mouseUp local tArray put URL "http://999999999/signalk/v1/api/vessels/self/environment/depth" into depthvariable put jsonimport(depthvariable) into tArray put tArray["belowKeel"] into tSubArray combine tSubArray by return and tab...
- Fri Sep 23, 2016 6:35 pm
- Forum: iOS Deployment
- Topic: Parsing a json value returned via rest api call
- Replies: 9
- Views: 5042
Re: Parsing a json value returned via rest api call
A "hopefully" quick easy followup question. If I want to display the entire contents of the array in a table format I try this: put URL "http://????/signalk/v1/api/vessels/self/environment/depth" into depthvariable put jsonimport(depthvariable) into tArray combine tArray by return and tab --"arrayda...