Search found 595 matches

by AriSilva
November 26th, 2020, 4:33 pm
Forum: Android
Topic: deploying with an external app
Replies: 11
Views: 5956

Re: deploying with an external app

Yeah, That would work in the real running, but not at the test phase, unless I create a new version every time I update it, which would be a pain. Nevertheless, that you for the tip on running the installation of the apk, it is working perfectly, and saves us a lot of trouble trying to remember the ...
by AriSilva
November 25th, 2020, 6:43 am
Forum: Editing
Topic: getting the decimal part of a number
Replies: 2
Views: 2686

getting the decimal part of a number

Is there an easy way to get that?
For example:
i = 23.45678;
j = fn(i);
j would be .45678

I´m using now a maketext to string, then string to number and then a subtraction, like:
i = 23.456789;
x = maketext("%7.0f", i);
j = tonumber(x);
k = i - j;
by AriSilva
November 23rd, 2020, 4:16 pm
Forum: Android
Topic: deploying with an external app
Replies: 11
Views: 5956

Re: deploying with an external app

ok, I´ll give it a try and keep you posted.
I´m not sure the load/save setting scheme would work if I have to update the version installed.
The very first time is easy, but as soon as the setting is done, one way or the other, how do I unflag it in order to reinstall the app?
by AriSilva
November 23rd, 2020, 4:11 pm
Forum: Android
Topic: accessing a path outside csentry in the memory card
Replies: 5
Views: 2593

Re: accessing a path outside csentry in the memory card

Suppose I can write the photo files with my app on this /mnt/card directory.
How do I access it from csentry in order to syncdata them to the server?
by AriSilva
November 23rd, 2020, 1:18 pm
Forum: Android
Topic: accessing a path outside csentry in the memory card
Replies: 5
Views: 2593

Re: accessing a path outside csentry in the memory card

Thanks, Josh, for the prompt (as always) answer. My Android version is 5.1.1, and it has not this mnt directory. In any case, I do not want to depend on something from Google that might not be working tomorrow. The application I´m calling is an in-house (written by a colleague of mine) to take photo...
by AriSilva
November 23rd, 2020, 1:04 pm
Forum: Android
Topic: deploying with an external app
Replies: 11
Views: 5956

Re: deploying with an external app

OK, I´ll try it. But then comes a second question, derived from the previous one: If the execsystem(.apk) works, it it possible to integrate it into the downloading of the csentry application? (I do not know how, but...) That is, when creating the deploy, it would have a feature to execute something...
by AriSilva
November 23rd, 2020, 7:04 am
Forum: Android
Topic: accessing a path outside csentry in the memory card
Replies: 5
Views: 2593

accessing a path outside csentry in the memory card

I´m trying to have access to this path: Card/Android/data/science.foto/files/csentry/u The path exists in the card, and it has some contents (some files that I want to syncfile to the server). I´ve tried a path concat like x = pathname(CSEntryExternal); y = "..\..\science.foto\files\csentry\u&q...
by AriSilva
November 23rd, 2020, 6:57 am
Forum: Android
Topic: deploying with an external app
Replies: 11
Views: 5956

Re: deploying with an external app

Well, that was my guess also.
Thanks
by AriSilva
November 22nd, 2020, 5:00 pm
Forum: Android
Topic: deploying with an external app
Replies: 11
Views: 5956

deploying with an external app

I have an application (.apk) that I call with an execsystem from inside csentry, thus, I put the .apk in the deploy, and it goes right to the tablet.
But I need to install this apk by hand in the tablet.
Is there a way to install it automatically?