Microsoft app store

2023-08-25 Thread J. Landman Gay via use-livecode
Has anyone submitted a Windows app to the Microsoft store? I have a lead and if it pans out I'd like to know if there's a resource available here. Nothing is set yet but I'm thinking ahead. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com

ICYMI: 2024 app store API tightening

2023-07-28 Thread Mike Kerner via use-livecode
Saw this in ZDNet: Certain iOS (and presumably macos) apis will require specific justification to be used, starting 2024: https://www.zdnet.com/article/developers-have-new-apple-app-store-rules-to-follow ___ use-livecode mailing list use-livecode

Signing and Uploading apps to the Mac App Store HELL!

2022-07-09 Thread Dan Friedman via use-livecode
Greetings! I am pulling out my hair in getting my app prepared for the MacApp Store (and for downloading from my website). I can't take it anymore!! Is there someone here I can pay to either do this for me, or walk me through this hideous process? -Dan _

Apple App Store Server Notifications [was JWT Token Decode]

2022-04-08 Thread Ralph DiMola via use-livecode
Apple App Store Server Notifications sends transaction data to your server. It is especially good for in-app purchase refunds. If you had previously recorded the transaction ID of the original purchase you can match it up to the server notification and attach it to a user. When you use the App

Strange thing: older App Store app fullscreen shown on iOS 15.2

2021-12-24 Thread William de Smet via use-livecode
Hi there, I got a new iPad 2021 with iOS 15.2 (10.2 inch) and downloaded some of my own older apps on it from the App Store. These apps have been there for several years and the last update was from 2019. I noticed that these apps are shown fullscreen and that is strange because none of these

RE: IAP in App Store

2021-10-07 Thread Ralph DiMola via use-livecode
d for me. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of J. Landman Gay via use-livecode Sent: Wednesday, October 06, 2021 4:33 PM To: How to use LiveCode Cc:

Re: IAP in App Store

2021-10-06 Thread J. Landman Gay via use-livecode
I'm confused about how the purchase flow works so my question is probably incorrect. There is no error when I see the "complete" status, it only shows up in my logging file. After adding additional logging, it looks like "complete" is sent after every transaction. But if something goes wrong, li

Re: IAP in App Store

2021-10-06 Thread panagiotis m via use-livecode
Hello Jacque, What is the exact error that causes purchaseStateUpdate to be sent with a "complete" status? Google is supposed to show its own notification in most cases, so that's fine, but then the purchaseStateUpdate should be sent with an appropriate status anyway. Kind regards, Panos -- On

Re: IAP in App Store

2021-10-05 Thread J. Landman Gay via use-livecode
I guess this is for @Panos. Now that I have IAP working I noticed another thing. I'm building for Android with LC 9.6.5 RC-1 which includes the new billing library. My script has a purchaseStateUpdate handler that logs every response and sends the info to a IAPPurchaseComplete handler that mana

Re: IAP in App Store

2021-09-20 Thread J. Landman Gay via use-livecode
Hi Panos, After the login dialog, which worked fine, I got no status response on the first attempt. I realized that I was asking for a nonexistent product (I'd changed the store products during my experiments) and when I asked for a now existing one it went through fine. I got the sandbox purc

Re: IAP in App Store

2021-09-20 Thread panagiotis m via use-livecode
Hello Jacque, Nice, I'll make sure this note is added to the docs at least. Ideally we'll fix it in the engine too, so as it throws an error if the 3rd param is empty. Now, you said you got the login dialog. What happened next, after you entered your test apple ID details? Did you get a dialog fo

Re: IAP in App Store

2021-09-19 Thread J. Landman Gay via use-livecode
Even a note in the documentation would help. I spent two weeks trying to figure out the problem. Was it my store setup? The iPhone? My script, which was based on the lesson example? Did I set up my store products wrong? Just where should I look? By the time I posted here I was a walking mass o

Re: IAP in App Store

2021-09-19 Thread Curry Kenworthy via use-livecode
Jacqueline: > If the third param is omitted, the script compiles okay > but apparently aborts with no error message > and no information when the app runs on the device. Hey LC Team: This may be not merely a bug, but also a "bad habit" in coding practice. A habit that leads to multiple bugs.

Re: IAP in App Store

2021-09-18 Thread J. Landman Gay via use-livecode
that was the problem I add the string "payload here" and bingo, I got the App Store login dialog. I am still not getting any status reports in purchaseStateUpdate and the purchase times out. But at least I'm logged in now. Suggestion: if a third param is missing, LC should throw an er

RE: IAP in App Store

2021-09-17 Thread Ralph DiMola via use-livecode
ehalf Of J. Landman Gay via use-livecode Sent: Friday, September 17, 2021 6:26 PM To: How to use LiveCode Cc: J. Landman Gay Subject: Re: IAP in App Store Yes, I tested on real devices, both an iPad and an iPhone. I also just set up testing on the Google Play Store and got the same non-results. I will l

Re: IAP in App Store

2021-09-17 Thread J. Landman Gay via use-livecode
all from purchaseStateUpdate. Yes, the lesson is still accurate, I did test it 2 weeks ago. The response from purchaseStateUpdate will arrive *after* you get the purchase dialog and click Buy or Cancel. Kind regards, Panos -- On Fri, 17 Sept 2021 at 01:27, J. Landman Gay via use-livecode

Re: IAP in App Store

2021-09-17 Thread panagiotis m via use-livecode
initiate a purchase? Have you called > > mobileStoreEnablePurchaseUpdates? This command creates a "channel" for > > communicating with the app store. Since you get no response at all, it > > seems for some reason this channel is not created. Can you share your > &

Re: IAP in App Store

2021-09-17 Thread J. Landman Gay via use-livecode
se. Should I add that to my script? Will it hurt if I do? On 9/17/21 1:34 PM, panagiotis m via use-livecode wrote: Hello Jacque, How do you initiate a purchase? Have you called mobileStoreEnablePurchaseUpdates? This command creates a "channel" for communicating with the app sto

Re: IAP in App Store

2021-09-17 Thread J. Landman Gay via use-livecode
NTO pProductID LOG "BEGIN IAP PURCHASE:" && pProductID mobileStoreEnablePurchaseUpdates mobileStoreSetProductType pProductID, "inapp" -- required for Play Store; compatible with App Store mobileStoreMakePurchase pProductID, pQuantity end purchaseIAPProduct on purch

Re: IAP in App Store

2021-09-17 Thread panagiotis m via use-livecode
Hello Jacque, How do you initiate a purchase? Have you called mobileStoreEnablePurchaseUpdates? This command creates a "channel" for communicating with the app store. Since you get no response at all, it seems for some reason this channel is not created. Can you share your purchase c

Re: IAP in App Store

2021-09-17 Thread J. Landman Gay via use-livecode
se-livecode < use-livecode@lists.runrev.com> wrote: I'm trying to test IAP in the App Store. I have a tester account and I'm a verified test user with a new Apple ID that is not used anywhere else. Following the LC lesson, it says to sign out of the app store in Settings. I had to look

Re: IAP in App Store

2021-09-17 Thread panagiotis m via use-livecode
. Kind regards, Panos -- On Fri, 17 Sept 2021 at 01:27, J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: > I'm trying to test IAP in the App Store. I have a tester account and I'm a > verified test user > with a new Apple ID that is not used anyw

IAP in App Store

2021-09-16 Thread J. Landman Gay via use-livecode
I'm trying to test IAP in the App Store. I have a tester account and I'm a verified test user with a new Apple ID that is not used anywhere else. Following the LC lesson, it says to sign out of the app store in Settings. I had to look up how to do that in iOS 14, and did so. It als

Re: [ANN] Organize 1.1 now in App Store

2021-09-12 Thread Mark Smith via use-livecode
Hi Kelly, just wondering if you could expand a bit more on the use of iCloud for syncing, and how that would work? Thanks, Mark > On Sep 10, 2021, at 9:42 PM, Dev wrote: > > Just downloaded it and will give it a look. When you get around to the iPad- > please sync through iCloud. It’s the Ap

Re: [ANN] Organize 1.1 now in App Store

2021-09-10 Thread Tom Glod via use-livecode
Very happy to read these positive reports about the mobile engine. Thanks. On Fri, Sep 10, 2021 at 4:57 PM J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: > On 9/10/21 2:32 PM, Mark Smith via use-livecode wrote: > > Thanks Bill, > > > > One other thing I wanted to address

Re: [ANN] Organize 1.1 now in App Store

2021-09-10 Thread J. Landman Gay via use-livecode
On 9/10/21 2:32 PM, Mark Smith via use-livecode wrote: Thanks Bill, One other thing I wanted to address in the announcement, but forgot, was just the sheer reliability of Livecode. I started beta testing 6 months ago, there where 3 rounds of testing and about 19 testers. Not once did TestFligh

Re: [ANN] Organize 1.1 now in App Store

2021-09-10 Thread Mark Smith via use-livecode
Thanks for the suggestion. I’ve added that as well. Cheers, Mark > On Sep 10, 2021, at 9:42 PM, Dev wrote: > > Just downloaded it and will give it a look. When you get around to the iPad- > please sync through iCloud. It’s the Apple way and works seamlessly for so > many apps I have. I even h

Re: [ANN] Organize 1.1 now in App Store

2021-09-10 Thread Dev via use-livecode
Just downloaded it and will give it a look. When you get around to the iPad- please sync through iCloud. It’s the Apple way and works seamlessly for so many apps I have. I even have my LC prefs and plug-ins on iCloud so that they are accessible everywhere easily. Kelly Sent from an iDevice o

Re: [ANN] Organize 1.1 now in App Store

2021-09-10 Thread Mark Smith via use-livecode
Thanks Bill, I’ll add that to the request list. I developed it on a 6S but went out and bought a 12 today so I could tackle the issue of resizing it for larger devices (something I know I don’t handle very well at the moment). My first reaction after installing Organize on the 12 was “holy crap”

Re: [ANN] Organize 1.1 now in App Store

2021-09-10 Thread Mark Smith via use-livecode
Hi Bill, I also use color to represent different categories of activity. All of the “light blue” items are related to app development, for example, all of the pink items to my consulting business, and orange and green to various training programs I am part of. You can assign colours to categori

Re: [ANN] Organize 1.1 now in App Store

2021-09-10 Thread prothero--- via use-livecode
Thanks, Mark. I was thinking about it as a scheduler instead of a task reminder. I use the Apple calendar for reminders of appointments mostly. It is a nice job. For me, I have 2 ipads, an iPhone, and a desktop Mac. I like to use my iPad whenever possible because of the screen size. It could be

Re: [ANN] Organize 1.1 now in App Store

2021-09-10 Thread Mark Smith via use-livecode
Thanks Bill, One other thing I wanted to address in the announcement, but forgot, was just the sheer reliability of Livecode. I started beta testing 6 months ago, there where 3 rounds of testing and about 19 testers. Not once did TestFlight report a crash (it tracks these for you). When I sent

Re: [ANN] Organize 1.1 now in App Store

2021-09-10 Thread ELS Prothero via use-livecode
, Bill P. William Prothero https://earthlearningsolutions.org > On Sep 10, 2021, at 5:36 AM, Mark Smith via use-livecode > wrote: > > I am pleased to announce that Organize: A Daily Task Manager (1.1) is now > available in the app store, and is free. > > https://apps.appl

[ANN] Organize 1.1 now in App Store

2021-09-10 Thread Mark Smith via use-livecode
I am pleased to announce that Organize: A Daily Task Manager (1.1) is now available in the app store, and is free. https://apps.apple.com/gb/app/organize/id1555952717 <https://apps.apple.com/gb/app/organize/id1555952717> Ratings and reviews appreciated. Thanks again to everyone who

Re: Apple App Store Agreement

2021-08-27 Thread Tom Glod via use-livecode
ed to a class action settlement that will allow apps > developers to implement payment systems outside of the App Store and > communicate directly with customers about them." > > > https://www.zdnet.com/article/apple-settles-lawsuit-to-allow-developers-to-

Re: Apple App Store Agreement

2021-08-27 Thread Pi Digital via use-livecode
field; or is it lip service? > >> On Fri, Aug 27, 2021 at 11:57 Jim Lambert via use-livecode < >> use-livecode@lists.runrev.com> wrote: >> >> FYI >> >> "Apple has agreed to a class action settlement that will allow apps >> developers

Re: Apple App Store Agreement

2021-08-27 Thread Stephen Barncard via use-livecode
ment systems outside of the App Store and > communicate directly with customers about them." > > > https://www.zdnet.com/article/apple-settles-lawsuit-to-allow-developers-to-use-payment-systems-outside-of-app-store/ > ___

Apple App Store Agreement

2021-08-27 Thread Jim Lambert via use-livecode
FYI "Apple has agreed to a class action settlement that will allow apps developers to implement payment systems outside of the App Store and communicate directly with customers about them." https://www.zdnet.com/article/apple-settles-lawsuit-to-allow-developers-to-use-payment-syste

Re: Is it possible to implement Mac App Store in-app purchases in LiveCode?

2021-01-12 Thread kee nethery via use-livecode
Tom, Thank you for the link. According to the docs these calls are only for iOS and Android. I need them for macOS. No idea why the iOS ones are not compatible with macOS, but according to the docs they are not. Kee > On Jan 11, 2021, at 7:30 PM, Tom Glod via use-livecode > wrote: > > H.

Re: Is it possible to implement Mac App Store in-app purchases in LiveCode?

2021-01-11 Thread Tom Glod via use-livecode
HI am surprised no one answered this, I found this. https://lessons.livecode.com/m/4069/l/186807-how-do-i-implement-in-app-purchases-in-livecode-apple-appstore On Sun, Jan 3, 2021 at 5:11 PM kee nethery via use-livecode < use-livecode@lists.runrev.com> wrote: > And if it is possible to

Is it possible to implement Mac App Store in-app purchases in LiveCode?

2021-01-03 Thread kee nethery via use-livecode
And if it is possible to do in-app purchases in macOS apps, are there instructions or sample code anywhere? It appears to me that the Apple documentation assumes I am using Swift and have imported a set of libraries that are called via Swift. Is there a sample stack somewhere for Mac apps? Ha

Re: New lesson about codesigning an app, creating codesgined DMG and Notarize it for distribution outside of the Mac App Store

2019-07-20 Thread Matthias Rebbe via use-livecode
Fixed. ;) Thanks for the note. Matthias Rebbe free tools for Livecoders: https://instamaker.dermattes.de https://winsignhelper.dermattes.de > Am 20.07.2019 um 10:50 schrieb JJS via use-livecode > mailto:use-livecode@lis

Re: New lesson about codesigning an app, creating codesgined DMG and Notarize it for distribution outside of the Mac App Store

2019-07-20 Thread JJS via use-livecode
Very extensive you've done, you help a lot of people with this. Thanks very much! Just FYI the last point 11.14 is missing some text i noticed. schone grussen Op 19-7-2019 om 23:03 schreef scott--- via use-livecode: Matthias, Thank you so much for this timely work! Scott Morrow Elementar

Re: New lesson about codesigning an app, creating codesgined DMG and Notarize it for distribution outside of the Mac App Store

2019-07-19 Thread scott--- via use-livecode
Matthias, Thank you so much for this timely work! Scott Morrow Elementary Software (Now with 20% less chalk dust!) web http://elementarysoftware.com/ email sc...@elementarysoftware.com booth 1-800-615-0867 mobile 360-920-0715 --

Re: New lesson about codesigning an app, creating codesgined DMG and Notarize it for distribution outside of the Mac App Store

2019-07-19 Thread Rick Harrison via use-livecode
Hi Matthias, I did the first cursory look at your lesson. Nicely done! It really is starting to make me dread writing any future macOS apps though. What a pain in the …! I miss the good old days when I could finish my program, zip it, and upload it. Life was so easy by comparison then. Oh well…

Re: New lesson about codesigning an app, creating codesgined DMG and Notarize it for distribution outside of the Mac App Store

2019-07-19 Thread Tom Glod via use-livecode
Thank you Matthias I will be checking that out very soon. On Fri, Jul 19, 2019 at 3:24 PM Matthias Rebbe via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi, > > some days ago i´ve published a lesson to Livecode´s Lesson area. > The lesson can be found here < > http://lessons.livecode.

New lesson about codesigning an app, creating codesgined DMG and Notarize it for distribution outside of the Mac App Store

2019-07-19 Thread Matthias Rebbe via use-livecode
Hi, some days ago i´ve published a lesson to Livecode´s Lesson area. The lesson can be found here . The lesson covers how to prepare an app/dmg for distrib

Re: Samsung app store -->categories samsung api

2019-06-17 Thread JJS via use-livecode
estion on the contract or partnership, please contact our Customer Support team (https://help.content.samsung.com/csseller/)." Regards, Matthias Am 17.06.2019 um 22:29 schrieb JJS via use-livecode : Hi, anyone ever putted an Android App on the Samsung app store? If yes, how did yo

Re: Samsung app store -->categories samsung api

2019-06-17 Thread Matthias Rebbe via use-livecode
content.samsung.com/csseller/)." > > Regards, > > Matthias > > >> Am 17.06.2019 um 22:29 schrieb JJS via use-livecode >> : >> >> Hi, >> >> >> anyone ever putted an Android App on the Samsung app store? >> >> If

Re: Samsung app store -->categories samsung api

2019-06-17 Thread Matthias Rebbe via use-livecode
rtnership, please contact our Customer Support team (https://help.content.samsung.com/csseller/)." Regards, Matthias > Am 17.06.2019 um 22:29 schrieb JJS via use-livecode > : > > Hi, > > > anyone ever putted an Android App on the Samsung app store? > > If

Samsung app store -->categories samsung api

2019-06-17 Thread JJS via use-livecode
Hi, anyone ever putted an Android App on the Samsung app store? If yes, how did you get past the Categories that you have to choose on the binary page/tab? Choosing an category involves using a Samsung api, which we don't have. And without it you can't choose the correct category

Re: App Store changes in August?

2019-05-24 Thread Tom Glod via use-livecode
yes..there it is.thanks RG. On Fri, May 24, 2019 at 2:27 PM Richard Gaskin via use-livecode < use-livecode@lists.runrev.com> wrote: > Tom Glod wrote: > > > Found it. its google play store needing 64 bit builds of the apps. > > > > The 64-bit requirement: what it means for developers St

Re: App Store changes in August?

2019-05-24 Thread Richard Gaskin via use-livecode
Tom Glod wrote: > Found it. its google play store needing 64 bit builds of the apps. > > The 64-bit requirement: what it means for developers Starting *August > 1 2019:* > >- All new apps and app updates that include native code are > required to provide 64-bit versions in addition to 32-

Re: App Store changes in August?

2019-05-24 Thread Tom Glod via use-livecode
;> > >> > > Hi Peeps, I am not sure I heard correctly, but is there some kind of >> > > change occurring in August where the 9.0x line of LC builds will not >> > > be able to submit to the app store? I think it was the apple store >> > &g

Re: App Store changes in August?

2019-05-24 Thread Tom Glod via use-livecode
t; change occurring in August where the 9.0x line of LC builds will not > > > be able to submit to the app store? I think it was the apple store > > > that was being discussed. > > > > People say all sorts of things. Sometimes those things are true; > >

Re: App Store changes in August?

2019-05-24 Thread Paul Dupuis via use-livecode
; be able to submit to the app store? I think it was the apple store > that was being discussed. People say all sorts of things.  Sometimes those things are true; sometimes they're misunderstandings. To sort out which is the case here: The app store has dozens of requirements, and LiveC

Re: App Store changes in August?

2019-05-24 Thread Richard Gaskin via use-livecode
Tom Glod wrote: > Hi Peeps, I am not sure I heard correctly, but is there some kind of > change occurring in August where the 9.0x line of LC builds will not > be able to submit to the app store? I think it was the apple store > that was being discussed. People say all sor

App Store changes in August?

2019-05-24 Thread Tom Glod via use-livecode
Hi Peeps, I am not sure I heard correctly, but is there some kind of change occurring in August where the 9.0x line of LC builds will not be able to submit to the app store? I think it was the apple store that was being discussed. ___ use-livecode

Re: Notarization & hardening for macOS non-App Store Apps?

2019-05-09 Thread Monte Goulding via use-livecode
> On 10 May 2019, at 10:49 am, kee nethery via use-livecode > wrote: > > > >> On May 9, 2019, at 5:42 PM, Monte Goulding via use-livecode >> mailto:use-livecode@lists.runrev.com>> wrote: >> >> Looks like the hardened runtime needs —options=runtime > > Which what terminal command would —op

Re: Notarization & hardening for macOS non-App Store Apps?

2019-05-09 Thread kee nethery via use-livecode
. Kee > >> On 10 May 2019, at 10:29 am, kee nethery via use-livecode >> wrote: >> >> Help. >> >> I volunteered to research this topic and present on it. I’ve documented the >> process to upload to the App Store, figured this would be less steps an

Re: Notarization & hardening for macOS non-App Store Apps?

2019-05-09 Thread Monte Goulding via use-livecode
and present on it. I’ve documented the > process to upload to the App Store, figured this would be less steps and I > could figure it out and present on it at the LiveCode conference (as well as > document it on the lessons web site). > > There are two issues I’m running into and I coul

Notarization & hardening for macOS non-App Store Apps?

2019-05-09 Thread kee nethery via use-livecode
Help. I volunteered to research this topic and present on it. I’ve documented the process to upload to the App Store, figured this would be less steps and I could figure it out and present on it at the LiveCode conference (as well as document it on the lessons web site). There are two issues

Re: Mac App Store step by step instructions just updated.

2019-02-21 Thread JB via use-livecode
One thing I have noticed with some software is if I upgrade to another drive and OS X then a message is shown that says it does not recognize I purchased it from the Mac App store and I am asked to log in with my user info to activate the program. I don’t know if they check for serial numbers of

Re: Mac App Store step by step instructions just updated.

2019-02-21 Thread kee nethery via use-livecode
to copy protect your program? Most software is not > very expensive and it would be like trying to copy > protect a song. People do not want songs to be > copy protected. > > The majority of software I see on the App store does > not have copy protection and I am glad. > >

Re: Mac App Store step by step instructions just updated.

2019-02-21 Thread JB via use-livecode
With the low price of software is it really even worth it to copy protect your program? Most software is not very expensive and it would be like trying to copy protect a song. People do not want songs to be copy protected. The majority of software I see on the App store does not have copy

Re: Mac App Store step by step instructions just updated.

2019-02-21 Thread kee nethery via use-livecode
on? I mean, how will >>> you take care that the app is not shared and used by an other user with an >>> other Apple ID? >>> Do you use any 3rd party tools for it in your app? >> >> That’s not something I’ve worried about. I thought, perhaps mistakenly, that

Re: Mac App Store step by step instructions just updated.

2019-02-21 Thread Matthias Rebbe via use-livecode
any 3rd party tools for it in your app? > > That’s not something I’ve worried about. I thought, perhaps mistakenly, that > the App Store handled that. I’ll buy a copy of my paid app and email it to > you. You can see if you can run it and we’ll have some idea as to whether the > Ap

Re: Mac App Store step by step instructions just updated.

2019-02-21 Thread kee nethery via use-livecode
er user with an > other Apple ID? > Do you use any 3rd party tools for it in your app? That’s not something I’ve worried about. I thought, perhaps mistakenly, that the App Store handled that. I’ll buy a copy of my paid app and email it to you. You can see if you can run it and we’ll have s

Re: Mac App Store step by step instructions just updated.

2019-02-21 Thread Graham Samuel via use-livecode
Rebbe > > free tools for Livecoders: > https://instamaker.dermattes.de <https://instamaker.dermattes.de/> > https://winsignhelper.dermattes.de <https://winsignhelper.dermattes.de/> > >> Am 21.02.2019 um 06:55 schrieb kee nethery via use-livecode >> mailto:use-livecod

Re: Mac App Store step by step instructions just updated.

2019-02-20 Thread Matthias Rebbe via use-livecode
t; > Signing and Uploading apps to the Mac App Store > http://lessons.livecode.com/m/4071/l/876834-signing-and-uploading-apps-to-the-mac-app-store > > <http://lessons.livecode.com/m/4071/l/876834-signing-and-uploading-apps-to-the-mac-app-store> > > Have gone through t

Mac App Store step by step instructions just updated.

2019-02-20 Thread kee nethery via use-livecode
Signing and Uploading apps to the Mac App Store http://lessons.livecode.com/m/4071/l/876834-signing-and-uploading-apps-to-the-mac-app-store Have gone through the app revision process and my app was reviewed and published so as of yesterday, the step by step instructions are correct. Kee

Re: uploading new app to mac app store

2018-12-02 Thread J. Landman Gay via use-livecode
This is why I stopped doing iOS apps, it's a moving target. I'm going to have to do one next year and I'm dreading it. Hopefully the team can make it easier for us by then. Getting an app ready for the App Store takes almost as much effort as writing it. It shouldn

Re: uploading new app to mac app store

2018-12-02 Thread Rick Harrison via use-livecode
Hi Kee, Sorry to hear that wasn’t the problem for you. I hope you get it straightened out! Rick > On Dec 2, 2018, at 6:08 PM, kee nethery via use-livecode > wrote: > > Went into KeyChain, opened both Installer and Application Certs and clicked > on Trust to see that indeed, both are already

Re: uploading new app to mac app store

2018-12-02 Thread kee nethery via use-livecode
uot;system default” > made the problem go away. > > Once I did that, Application Loader finally > successfully uploaded my app to the > Apple App Store. Whew! > > The status of it is now in review. I will keep > my fingers crossed that they approve it and > that nothin

Re: uploading new app to mac app store

2018-12-02 Thread Rick Harrison via use-livecode
ly successfully uploaded my app to the Apple App Store. Whew! The status of it is now in review. I will keep my fingers crossed that they approve it and that nothing is wrong with it. Good luck! Rick > On Dec 1, 2018, at 10:55 PM, kee nethery via use-livecode > wrote: > > I’m uploadi

uploading new app to mac app store

2018-12-01 Thread kee nethery via use-livecode
I’m uploading a new app to the Mac App Store and at the same time, revising my LiveCode Lesson on the same. Stuff has changed OR I’m just really missing something obvious. I’ve got the app built, signed, all that good stuff. I’ve added it into developer.apple.com with it’s bundle ID of

Re: LC/macOS App Store

2018-11-11 Thread JJS via use-livecode
Yep, you're correct. It says 64bit. I must have been blind. thanks! Op 11-11-2018 om 14:59 schreef Sean Cole (Pi) via use-livecode: The release notes for 9.0.0 stable state otherwise as quoted below referring directly to the IDE, not Standalones. To quote: The *IDE* is now 64-bit by default

Re: LC/macOS App Store

2018-11-11 Thread Sean Cole (Pi) via use-livecode
The release notes for 9.0.0 stable state otherwise as quoted below referring directly to the IDE, not Standalones. > To quote: >> The *IDE* is now 64-bit by default on Mac I also checked on my versions here and it is definitely 64bit so I’m not sure why your machine is not saying the same. Try th

Re: LC/macOS App Store

2018-11-11 Thread JJS via use-livecode
Yes i know the standalone can be 64bit. I also know how to check in Macos if a program is 64bit. I was talking about the IDE itself. That's 32-bit. Op 10-11-2018 om 22:41 schreef Pi Digital via use-livecode: https://downloads.livecode.com/livecode/9_0_0/LiveCodeNotes-9_0_0.pdf#page32 To quot

Re: LC/macOS App Store

2018-11-10 Thread Pi Digital via use-livecode
https://downloads.livecode.com/livecode/9_0_0/LiveCodeNotes-9_0_0.pdf#page32 To quote: > The IDE is now 64-bit by default on Mac > Moreover, the "Build for Mac OS X 64-bit" is checked by default on newly > created stacks in the standalone settings for OS X. Existing stacks will > retain their c

Re: LC/macOS App Store

2018-11-10 Thread Richard Gaskin via use-livecode
JJS wrote: > In Mojave i got a a message "you are running a 32bit program" (the > livecode ide). > > Within a certain amount of time it's going to "force" to use 64bit > programs Yep, and the team has come through: several months ago they delivered v9.0, which now allows standalone building fo

Re: LC/macOS App Store

2018-11-10 Thread JJS via use-livecode
By the way. In Mojave i got a a message "you are running a 32bit program" (the livecode ide). Within a certain amount of time it's going to "force"  to use 64bit programs Op 10-11-2018 om 20:08 schreef Richard Gaskin via use-livecode: Bob Sneidar wrote: > People cannot remember commands, e

Re: LC/macOS App Store

2018-11-10 Thread Richard Gaskin via use-livecode
Bob Sneidar wrote: > People cannot remember commands, especially not terminal commands, > with all the arguments and caveats and different ways to put it all > together. For end-users, the awareness of that principle is very powerful. But where are we, here in this discussion? On a mailing lis

Re: the beauty of the command line tools (a side note from Re: LC/macOS App Store)

2018-11-10 Thread JJS via use-livecode
In the release notes of LC is a line that states: LC is actually a command line tool. Op 10-11-2018 om 13:18 schreef Pi Digital via use-livecode: Hi Just to follow on from Andre, you can of course also run terminal scripts from LC. That’s exactly what I did in the aforementioned OSX Package

Re: the beauty of the command line tools (a side note from Re: LC/macOS App Store)

2018-11-10 Thread Pi Digital via use-livecode
Hi Just to follow on from Andre, you can of course also run terminal scripts from LC. That’s exactly what I did in the aforementioned OSX Package Maker (soon to be reissued as the iOS/macOS Package Maker). You ‘could’ make a GUI for every terminal command available including every nuance and pa

the beauty of the command line tools (a side note from Re: LC/macOS App Store)

2018-11-10 Thread Andre Alves Garzia via use-livecode
Bob, I am hijacking this thread to express some personal opinions about the terminal, it is not related to the topic of the original message but a different perspective on the subject you brought up on your reply. When I first for my mac (A G3 running Mac OS 8.x) and started developing for i

Re: LC/macOS App Store

2018-11-09 Thread kee nethery via use-livecode
I agree that the LiveCode Application Builder should handle all the details. The stacks that others have built work great … until they don’t. That’s why my instructions are all Terminal based. If something errors out, you can see the error and perhaps deal with it. When everything is hidden beh

Re: LC/macOS App Store

2018-11-09 Thread Bob Sneidar via use-livecode
It's funny you should say that. Long ago when the first Apple MacIntoshes came out, I fell in love with the GUI simply because I could use a computer without having to type in commands. For years, I would not even work with a PC, because all their was to work with was DOS, and even when Windows

Re: LC/macOS App Store

2018-11-09 Thread Rick Harrison via use-livecode
ginal message you >> would have seen that I have looked at that lesson. >> >> One of the important things it says is: >> To upload to the App Store you need an Apple Developer >> account and corresponding developer certificates. This article >> does not cover that pr

Re: LC/macOS App Store

2018-11-09 Thread kee nethery via use-livecode
own on my original message you > would have seen that I have looked at that lesson. > > One of the important things it says is: > To upload to the App Store you need an Apple Developer > account and corresponding developer certificates. This article > does not cover that process.

Re: LC/macOS App Store

2018-11-09 Thread Rick Harrison via use-livecode
Hi Kee, If you had read far enough down on my original message you would have seen that I have looked at that lesson. One of the important things it says is: To upload to the App Store you need an Apple Developer account and corresponding developer certificates. This article does not cover

Re: LC/macOS App Store

2018-11-09 Thread kee nethery via use-livecode
Did you try this checklist? If you did and it didn’t work, please let me know so I can fix it. Kee Nethery http://lessons.livecode.com/m/4071/l/876834-signing-and-uploading-apps-to-the-mac-app-store ___ use-livecode mailing list use-livecode

LC/macOS App Store

2018-11-09 Thread Rick Harrison via use-livecode
Dear LiveCoders, I am using LiveCode Indy 9.0.1, Xcode 9.3, and macOS 10.13.6 High Sierra. I have an old LC 32 bit iOS app that was removed from the App Store because it was 32 bit. I was so mad at Apple for screwing me on it that I stayed away from it for quite a while. Recently I decided

RE: iOS app Error ITMS-90529 submitting to app store via Application Loader

2018-02-09 Thread Ralph DiMola via use-livecode
...@lists.runrev.com] On Behalf Of panagiotis merakos via use-livecode Sent: Friday, February 09, 2018 4:55 PM To: How to use LiveCode Cc: panagiotis merakos Subject: Re: iOS app Error ITMS-90529 submitting to app store via Application Loader Hi Ralph, The file you should upload should be called

Re: iOS app Error ITMS-90529 submitting to app store via Application Loader

2018-02-09 Thread panagiotis merakos via use-livecode
gt; > Phone: 518-636-3998 Ex:11 > > Cell: 518-796-9332 > > > > From: Brian Milby [mailto:br...@milby7.com] > Sent: Friday, February 09, 2018 4:16 PM > To: How to use LiveCode > Cc: Ralph DiMola > Subject: Re: iOS app Error ITMS-90529 submitting to app store via >

RE: iOS app Error ITMS-90529 submitting to app store via Application Loader

2018-02-09 Thread Ralph DiMola via use-livecode
-9332 -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of panagiotis merakos via use-livecode Sent: Friday, February 09, 2018 4:41 PM To: How to use LiveCode Cc: panagiotis merakos Subject: Re: iOS app Error ITMS-90529 submitting to app store via

RE: iOS app Error ITMS-90529 submitting to app store via Application Loader

2018-02-09 Thread Ralph DiMola via use-livecode
DiMola Subject: Re: iOS app Error ITMS-90529 submitting to app store via Application Loader Try with 8.1.9 - I think that is a bug that was fixed. On Fri, Feb 9, 2018 at 3:00 PM Ralph DiMola via use-livecode wrote: Here's a new one I never received before. Using 8.1.9 rc2. I made th

RE: iOS app Error ITMS-90529 submitting to app store via Application Loader

2018-02-09 Thread Ralph DiMola via use-livecode
How to use LiveCode Cc: panagiotis merakos Subject: Re: iOS app Error ITMS-90529 submitting to app store via Application Loader Hi Ralph, Have you included an AppStore icon (1024x1024) png in the iOS standalone settings? Panos - On Feb 9, 2018 21:16, "Brian Milby via use-livecode" < use-li

Re: iOS app Error ITMS-90529 submitting to app store via Application Loader

2018-02-09 Thread panagiotis merakos via use-livecode
t 3:00 PM Ralph DiMola via use-livecode < > use-livecode@lists.runrev.com> wrote: > > > Here's a new one I never received before. Using 8.1.9 rc2. I made the app > > using the distribution profile and zipped it up as usual. > > Xcode 9.2 > > Application

Re: iOS app Error ITMS-90529 submitting to app store via Application Loader

2018-02-09 Thread Brian Milby via use-livecode
ed it up as usual. > Xcode 9.2 > Application Loader 3.7 > OS X 10.12.6 > > The upload to the app store starts and the I get this error during > "Verifying assets with the App Store." > > ERROR ITMS-90529: "Invalid package. Applications built with sdk 9.0 or >

  1   2   3   4   5   >