am almost done with my project in android, now I want to make the executable version of the application.
I need to demonstrate it in .exe form as soft app as on emulator, not by built and debug process from eclipse.
|
|
what the op is asking for is simple - he wants to create a MS Windows program file that runs just like the APK he's made. Unfortunately this cannot be done. The only way to 'show off' your program is as people have stated:
|
||||
|
|
|
You can't convert an APK file into a .exe file. APK files hold Android apps as self-installable files already - opening an APK file on a phone or the emulator will start the installation process. It sounds like you just want to sign the app with a 'proper' key rather than using a debug key. To do that, read the official page on signing apps. |
|||
|
|
You don't need to create a .EXE file for doing what you want. You can just create a bat file that executes OK... in order to install an Android application using
Then, you can start the application by using Another thing you have to take in account is that you will have to run the AVD before installing and executing your application: http://developer.android.com/guide/developing/tools/avd.html All those commands you have to execute (may be using a .bat file as I mentioned before) are executables that you can find in the android-sdk\tools directory. |
||||
|
Once you create a project/application in Now send the |
||||
|
|
|
When i have a client that want's to show of the app i made for him at some kind of conference for example, I always use bluestacks it's not perfect but it allows you to run android apps on your computer without doing all the technical stuff. To install an app on your you computer using the bluestacks device/emulator you simply click on the apk you want. Rolf |
|||
|
|