PhxMarco
Members-
Content Count
9 -
Joined
-
Last visited
Community Reputation
0 NeutralTechnical Information
-
Delphi-Version
Delphi 11 Alexandria
-
File install path in Android (Deployment Manager)
PhxMarco replied to PhxMarco's topic in Delphi IDE and APIs
yes, I have seen and tested, but the Home path /data/data/<application ID>/files is the top higher level reachable; with Deployment manager seems not possible create or put files in /data/data/<application ID>/databases 😞 -
File install path in Android (Deployment Manager)
PhxMarco replied to PhxMarco's topic in Delphi IDE and APIs
yes just done, but file location stay the same... To list the App folders I use TPath.GetDocumentsPath() and TPath.GetHomePath() which seems give the same path: /data/data/<application ID>/files To list the 'databases' folder there is no TPath method available, so I use tha Andrioid API databaseList: Context := TAndroidHelper.Context; DatabaseArray := Context.databaseList; which still empty, dispite other java made apps, where the db file are listed... -
Hello, I need install my Sqlite db file in a specific path of my industrial handheld: /data/user/0/com.acme.myapp/databases/DBSQLITE.db but in Deployment manager seems only possible install on .\assets\internal\ which result in a absolute path: /data/user/0/com.acme.myapp/files/DBSQLITE.db I tryed to change remote folder in '.\assets\internal\databases\' but after installation the file result located in com.acme.myapp/files/databases/ which is not com.acme.myapp/databases/ Is there any way to set the installation path as I need ? BR, Marco
-
Yes, but I had the -cleaninstall option active... Thank you Dave !
-
Hi, seems that the RUN button on IDE, after compile when necessary, make always an UNINSTALL of the APK before the INSTALL. Someone knows how make the Run button perform INSTALL only ? I need so because with Install, the files in target directory .\assets\internal\ which I use for the database, are retained. Thanks
-
Hello, am starting a new D12 service project to drive 20 remote label printers over TCP and wondering if the original D12 TTask with TThreadedQueue could be used instead of OTL TOmniWorker. Now I will develop for Windows, but in future would be nice have linux compatibility... Thanks for advices, Marco
-
Ah ok, thank you very much !
-
No, I cannot see the component in Indy Misc nor in Indy Clients... But which is the version on Gihub ? can it be compatible with my application written with 10.6.2 ?
-
Hi, I was looking for an HL7 library to manage HL7 TCP connections and found this reference to Indy 🙂 But looking in my D12 indy 10.6.2, I do not see the IdHL7.pas... Which version is this with HL7 protocol ? Regards, Marco