java - Setup for MacOS applications -


i developed app (for mac) create user-friendly instalation package. file structure of application follows:

───myapp.app     └───contents         │   info.plist         │   pkginfo         │         ├───java         │       myapp.jar         │         ├───macos         │       javaapplauncher         │         ├───plugins         └───resources             │   genericapp.icns             │             └───en.lproj                     localizable.strings 

currently users have install myapp executing terminal command (if copy application in applications folder , not work):

sudo mv myapp.app /applications/myapp.app 

is there program (not necessary free) creates installation process package (next, next, ... finish). on 1 of steps process should check version of java on user computer. can point me in right direction?

i packages app lookin for.


Comments

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -