PhxMarco 0 Posted Wednesday at 08:14 PM (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 Wednesday at 10:00 PM by PhxMarco Share this post Link to post
Dave Nottage 571 Posted Wednesday at 10:35 PM 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 195 Posted Wednesday at 11:04 PM 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 571 Posted Wednesday at 11:17 PM 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 18 hours ago 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