Advertisement
Guest User

Android APK RPG MV Builder

a guest
Jan 10th, 2016
845
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.82 KB | None | 0 0
  1. @ECHO Off
  2. COLOR 0A
  3. :start
  4. ECHO Welcome to the Android APK Builder.
  5. ECHO It is assumed you have already installed the pre-requiste files.
  6. ECHO To begin please enter the full file path of your 'www' folder.
  7. :home
  8. SET /p uin="Input Directory Path: "
  9. SET udir=!dir%uin%!
  10. ECHO Directory has been selected.
  11. ECHO The Directory you selected is: %uin%
  12. CHOICE /M "Do you want to continue"
  13. if errorlevel 2 goto home
  14. if errorlevel 1 goto proceed
  15. GOTO end
  16. :proceed
  17. CLS
  18. SET /p pin="Input Game Name Without Spaces: "
  19. ECHO Executing Python Build Command
  20. ECHO.
  21. cd /d %uin%
  22. python C:\crosswalk-10.39.235.16\make_apk.py --package=com.example.%pin% --manifest=manifest.json
  23. ECHO.
  24. ECHO The build results are shown above.
  25. ECHO Thank you for using this simple batch script by HalestormXV.
  26. PAUSE>nul|set/p =Press any key to exit ...
  27. :end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement