2

I am developing a JavaFX application in a 64 bit windows machine. But after creating an MSI installer of my application it's only running on 64 bit machines and showing version file is not compatible with the version of windows you're running on 32 bit windows pc.

I want to know that is there any way to create a single installer which will work on both the 32 bit and 64 bit windows machine?

Dinesh Falwadiya
  • 769
  • 5
  • 20

1 Answers1

3

Thanks to @Sedrick comment.

I solved my problem by

1)installing 32 bit JDK

2)Sets the JAVA_HOME path to it's jdk

3)Changed netbeans JDK platform which i got from here

4)And finally build the project

And got my 32 bit JavaFX application EXE

Dinesh Falwadiya
  • 769
  • 5
  • 20