Deploy Android APK OTA Using Symbolic Links and Dropbox
1 min read
1 min read
Couple of time ago I wrote a blog post describing how you can use Dropbox for deploying your Android APK basically over-the-air to your device. That involved copying your APK to a dedicated Dropbox folder that can then be accessed from your Android device to install it.
Instead of copying manually, on Unix based systems (Linux, OSX,..) you can also make use of symbolic links.ln -s </path-to-your-apk/ApkName.apk> <ApkName.apk>
ln -s /Users/Juri/Projects/MyProjName/bin/MyProjName.apk MyProjName.apkEvery time I build my project inside Eclipse, a new APK will be created which will then automatically be uploaded to Dropbox.