Search code examples
javaandroidinstallationadbfastboot

Android Tool Installer


I just finished writing a Java program that has some tools for debugging and working with Android phones. The program itself executes ADB and FASTBOOT commands from the Android SDK.

Is there an easy way to create some kind of installer that will install my Java program as well as check/install ADB and FASTBOOT?

(I know creating an installer defeats the purpose of Java, but I know this software will only be run on Windows machines)


Solution

  • I think the freeware version of Advanced Installer should have everything you need.

    http://www.advancedinstaller.com/feats-list.html

    You can make an executable version of your Java program using RCP.

    Since ADB and Fastboot are just small executables you could include them with your project rather than depending on a separate install.