PhxMarco 0 Posted January 8 (edited) 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 Edited January 8 by PhxMarco Share this post Link to post
Dave Nottage 576 Posted January 8 2 hours ago, PhxMarco said: Hi, seems that the RUN button on IDE, after compile when necessary, make always an UNINSTALL of the APK before the INSTALL. By default? No, it does not. Check that your project does not have the -cleaninstall parameter as per the documentation. 1 Share this post Link to post
DelphiUdIT 200 Posted January 8 In the "Project/Deployement" window you can set the files that you don't want overwrite (deploy) ("ovewrite" column options). By default all newer local files will be deployed and overwrite the remote ones. Bye 1 Share this post Link to post
Dave Nottage 576 Posted January 8 Just now, DelphiUdIT said: By default all newer local files will be deployed and overwrite the remote ones. For .\assets\internal\ on Android, this is incorrect. If a file exists, it will not be overwritten, regardless of whether or not the file is newer. 1 Share this post Link to post
PhxMarco 0 Posted January 9 9 hours ago, Dave Nottage said: For .\assets\internal\ on Android, this is incorrect. If a file exists, it will not be overwritten, regardless of whether or not the file is newer. Yes, but I had the -cleaninstall option active... Thank you Dave ! Share this post Link to post