Re: Still problems with creating the neccessary file for keystore reset (Lengthy mail)

2024-08-28 Thread panagiotis merakos via use-livecode
Hello Klaus, I vaguelly remember I had a similar problem in the past. After searching in stackoverflow, it was suggested to use the OpenJDK version of Java, rather than the Oracle's one. I had used version 20.0.1. I still have the .tar file I downloaded back then, it is named "openjdk-20.0.1_maco

Re: Still problems with creating the neccessary file for keystore reset (Lengthy mail)

2024-08-28 Thread panagiotis merakos via use-livecode
Also, in the screenshot you attached, it looks like the arguments "signing-keystore" and "keystore" expect a different value. The "keystore" looks like it should be the "android_upload.keystore" you created and used to sign the app in LiveCode. I am not sure what is the "signing-keystore" - were y

Re: Still problems with creating the neccessary file for keystore reset (Lengthy mail)

2024-08-28 Thread Klaus major-k via use-livecode
Hi Panos, > Am 28.08.2024 um 09:17 schrieb panagiotis merakos via use-livecode > : > > Also, in the screenshot you attached, it looks like the arguments > "signing-keystore" and "keystore" expect a different value. > > The "keystore" looks like it should be the "android_upload.keystore" you > c

Strange...

2024-08-28 Thread jbv via use-livecode
("936,474" is within "777,50,1424,1") -> true ("936,474" is within "777,50,1424,10") -> false LC 9.6.9 on Mac OSX 10.15 ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Still problems with creating the neccessary file for keystore reset (Lengthy mail)

2024-08-28 Thread Curry Kenworthy via use-livecode
Klaus: > I really need your help, please, deadline is saturday! :-/ It has been almost a couple of years since last Android project; my current laptop is not set up for it yet. But ... Panos: > I vaguely remember I had a similar problem in the past. After > searching in stackoverflow, it was s

Re: Still problems with creating the neccessary file for keystore reset (Lengthy mail)

2024-08-28 Thread Klaus major-k via use-livecode
Hi Panos, I had created a new keystore and PEM file with the shell commands that Gooogle support supplied. Still no joy... % java -jar pepk.jar --keystore=android_upload2.jks --alias=upload --output=output.zip --rsa-aes-encryption --encrypti

Re: Still problems with creating the neccessary file for keystore reset (Lengthy mail)

2024-08-28 Thread panagiotis merakos via use-livecode
Hello Klaus, Hmm this looks like a different error. I also noticed that the new keystore you created has extension ".jks" and not ".keystore". Could you try with your old .keystore and .pem file, i.e. something like this: java -jar pepk.jar --keystore=android_upload.keystore --alias=sehenkey --o

Re: Still problems with creating the neccessary file for keystore reset (Lengthy mail)

2024-08-28 Thread Klaus major-k via use-livecode
Hi Panos, still no joy... ... java -jar pepk.jar --keystore=android_upload.keystore --alias=sehenkey --output=output.zip --rsa-aes-encryption --encryption-key-path=upload_certificate.pem Enter password for key 'sehenkey': Error: Unable to export or encrypt the private key java.security.spec.Inv

Re: Strange...

2024-08-28 Thread Brian Milby via use-livecode
Looks like ~32k is the max value allowed for a coordinate value. Brian Milby br...@milby7.com > On Aug 28, 2024, at 4:22 AM, jbv via use-livecode > wrote: > > ("936,474" is within "777,50,1424,1") -> true > > ("936,474" is within "777,50,1424,10") -> false > > LC 9.6.9 on Mac OSX 10

Re: Strange...

2024-08-28 Thread Bob Sneidar via use-livecode
Easy enough to test. put ("936,474" is within "777,50,1424,32767”) —> true put ("936,474" is within "777,50,1424,32768”) —> false Bob S > On Aug 28, 2024, at 5:17 AM, Brian Milby via use-livecode > wrote: > > Looks like ~32k is the max value allowed for a coordinate value. > > Brian Milby

Re: Strange...

2024-08-28 Thread Brian Milby via use-livecode
Exactly (that is essentially what I did) The actual full rect is: (-32768,-32768,32767,32767) Brian Milby br...@milby7.com > On Aug 28, 2024, at 11:19 AM, Bob Sneidar via use-livecode > wrote: > > Easy enough to test. > > put ("936,474" is within "777,50,1424,32767”) —> true > put ("936,474

Re: Strange...

2024-08-28 Thread Klaus major-k via use-livecode
> Am 28.08.2024 um 19:07 schrieb Brian Milby via use-livecode > : > > Exactly (that is essentially what I did) > > The actual full rect is: > (-32768,-32768,32767,32767) should suffice for a simple addressbook app. :-) > Brian Milby > br...@milby7.com > >> On Aug 28, 2024, at 11:19 AM, Bob

Re: Strange...

2024-08-28 Thread jbv via use-livecode
Le 2024-08-28 13:52, Klaus major-k via use-livecode a écrit : should suffice for a simple addressbook app. :-) yep, but not for processing any kind of raw data... ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: Strange...

2024-08-28 Thread Bob Sneidar via use-livecode
put "777,50,1424,1" into tCoords put item 1 of tCoords > -32768 AND \ item 2 of tCoords > -32768 AND \ item 3 of tCoords < 32767 AND \ item 4 of tCoords < 32767 AND \ "936,474" is within tCoords --> true put "777,50,1424,10" into tCoords put item 1 of tCoords > -32768 AND \ item 2 of tCoor