开发者_开发知识库
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this questionI 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)
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.
精彩评论