Re: Android - Different Builds

2019-06-12 Thread Sannyasin Brahmanathaswami via use-livecode
Hmm, I'm getting warnings First I built all 4, All four have different version codes. But for the arm64-v8a ERROR 1 message for APK 7 Fully shadowed APK Problem: This APK will not be served to any users because it is completely shadowed by one or more APKs with higher version codes.

Re: Visual Studio 2017 to the rescue

2019-06-12 Thread Mark Talluto via use-livecode
Sometimes I think you do not get enough sleep. You are always available. That is really nice for us. Now go get some sleep. Thanks for working this out. :) -Mark > On Jun 11, 2019, at 3:39 PM, Monte Goulding via use-livecode > wrote: > > Thanks Mark! Will sort it out ASAP > >> On 12 Jun

Re: Android - Different Builds

2019-06-12 Thread Sannyasin Brahmanathaswami via use-livecode
OK! That's what we need hear. Thanks Ralph! On 6/12/19, 12:17 PM, "Ralph DiMola" wrote: You would be better off making 4 builds 1 for each architecture. This way instead of 1 huge apk you will have 4 smaller ones. Increment the "version code" for each of the 3 additional builds.

RE: Android - Different Builds

2019-06-12 Thread Ralph DiMola via use-livecode
This is a warning. I have not yet tested if using 4 apks will eliminate this warning. It might. This is a new warning message in the last month. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode

RE: Android - Different Builds

2019-06-12 Thread Ralph DiMola via use-livecode
You would be better off making 4 builds 1 for each architecture. This way instead of 1 huge apk you will have 4 smaller ones. Increment the "version code" for each of the 3 additional builds. Upload all 4 apks to the PlayStore. Making one large build has 2 bad side effects. 1) you might not

Re: Android - Different Builds

2019-06-12 Thread Sannyasin Brahmanathaswami via use-livecode
Hmmm Google says Unoptimized APK Warning: This APK results in unused code and resources being sent to users. Your app could be smaller if you used the Android App Bundle. By not optimizing your app for device configurations, your app is larger to download and install on users' devices than

Re: Android - Different Builds

2019-06-12 Thread Sannyasin Brahmanathaswami via use-livecode
Never mind, I check all four, got one .APK and uploaded... and not I see Native Platform 4 Wow, congrats to LC to doing that so easily.. BR On 6/12/19, 11:45 AM, "use-livecode on behalf of Sannyasin Brahmanathaswami via use-livecode" wrote: Can anyone give a short lesson on how to

Android - Different Builds

2019-06-12 Thread Sannyasin Brahmanathaswami via use-livecode
Can anyone give a short lesson on how to submit the multiple android builds on Google Release Management dashboard? All brand new to me…. BR ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: Apple Deprecated "UIApplicationExitsOnSuspend"

2019-06-12 Thread Sannyasin Brahmanathaswami via use-livecode
Yes, I tried to re-upload after deleted in the key (without checking iTunes first) and it turns out the first app was accepted..., "redundant build'' on the 2nd attempt. I went into iTunesConnect and and the app is now in for review by the Lords of Apple. Agreed. We need to find out what

[ANN]CRON - a library for Levure

2019-06-12 Thread Mike Kerner via use-livecode
Calling all Levurithans and anyone who wants to break some code: Mikey's CRON library is now up on Github. This version is intended for use with Levure projects. CRON allows you to schedule tasks for LC to execute. We use it to regularly update mobile devices, inventory spreadsheets, and ERP

Re: My sticky fingers

2019-06-12 Thread Stephen Barncard via use-livecode
maybe you could tell us if it works... perhaps flush AND exit to top -- Stephen Barncard - Sebastopol Ca. USA - mixstream.org On Wed, Jun 12, 2019 at 1:01 PM Richmond via use-livecode < use-livecode@lists.runrev.com> wrote: > Possibly; but in the event of no hay showing up . . . > > On

Re: My sticky fingers

2019-06-12 Thread Richmond via use-livecode
Possibly; but in the event of no hay showing up . . . On 12.06.19 13:41, FlexibleLearning.com via use-livecode wrote: Straw grasping here... on keyDown do something send "flush" to me in 0 pass keyDown end keyDown on flush get flushEvents("all") end flush Hugh Senior On Mon, Jun

RE: Apple Deprecated "UIApplicationExitsOnSuspend"

2019-06-12 Thread Ralph DiMola via use-livecode
I had this problem last week. I have a ticket out but am unable to work on it because our office is moving and we are in shambles. This is just a warning and your .app will be processed and approved for submission for app review. Apparently ALL apps will NOT "exit on suspend" in iOS 12+. The real

Apple Deprecated "UIApplicationExitsOnSuspend"

2019-06-12 Thread Sannyasin Brahmanathaswami via use-livecode
About to publish an upgrade to our app. I get this from the metadata analysis in "Applications Loader" WARNING ITMS-90339: "Deprecated Info.plist Key. The Info.plist contains a key 'UIApplicationExitsOnSuspend' in bundle SivaSiva [SivaSiva.app] that will soon be unsupported. Remove the key,

Re: My sticky fingers

2019-06-12 Thread Dar Scott Consulting via use-livecode
Maybe something like this? (I used raw, so adjust as you need.) local wasUp = true on rawKeyDown if wasUp then doSomething end if put false into wasUp end rawKeyDown on rawKeyUp put true into wasUp end rawKeyUp command doSomething put "x" after me end doSomething >

Re: My sticky fingers

2019-06-12 Thread FlexibleLearning.com via use-livecode
Straw grasping here... on keyDown do something send "flush" to me in 0 pass keyDown end keyDown on flush get flushEvents("all") end flush Hugh Senior On Mon, Jun 10, 2019 at 01:43 Richmond via use-livecode < use-livecode@lists.runrev.com> wrote: > Everyyytime I try to