And I am getting this error when I do a build; "Error parsing manifest file", which occurs in this code block below, only thing I can think of is I'm missing a path link in my PATH environment variable.. thanks for any help
B4X:
Dim manifest As String = File.ReadString(workingFolder, "META-INF/MANIFEST.MF")
Dim m As Matcher = Regex.Matcher2("JavaFX-Application-Class:\s*(.*)$", Regex.MULTILINE, manifest)
Dim appClass As String
If m.Find Then
appClass = m.Group(1)
Else
cutils.ShowNotification2("", "Error parsing manifest file.", _
cutils.ICON_ERROR, MainForm)
Return
End If