Cableguy Expert Licensed User Longtime User Jul 7, 2017 #1 Hi @Erel What are the limitations or naming conventions used by the B4J compiler? In my project, if I name the b4j file myProject-X or myProject.X the compiled filename defaults to "result.jar" instead of the expected "myProject-X.jar" or myProject.X.jar" Last edited: Jul 9, 2017
Hi @Erel What are the limitations or naming conventions used by the B4J compiler? In my project, if I name the b4j file myProject-X or myProject.X the compiled filename defaults to "result.jar" instead of the expected "myProject-X.jar" or myProject.X.jar"
Erel B4X founder Staff member Licensed User Longtime User Jul 9, 2017 #2 It will convert it to result.jar if there is a character that is not: English letter, underscore or digit. Remember that the jar name is not really important. Upvote 0
It will convert it to result.jar if there is a character that is not: English letter, underscore or digit. Remember that the jar name is not really important.
Alessandro71 Well-Known Member Licensed User Longtime User Jan 14, 2018 #4 it seems also a space in the name will cause it Upvote 0
DonManfred Expert Licensed User Longtime User Jan 14, 2018 #5 Alessandro71 said: it seems also a space in the name will cause it Click to expand... sure Erel said: It will convert it to result.jar if there is a character that is not: English letter, underscore or digit. Click to expand... A space does not match this rules. Upvote 0
Alessandro71 said: it seems also a space in the name will cause it Click to expand... sure Erel said: It will convert it to result.jar if there is a character that is not: English letter, underscore or digit. Click to expand... A space does not match this rules.
Alessandro71 Well-Known Member Licensed User Longtime User Jan 14, 2018 #6 i mistakenly thought space was also considered and english letters, since it's in the base ASCII set... Upvote 0
i mistakenly thought space was also considered and english letters, since it's in the base ASCII set...
DonManfred Expert Licensed User Longtime User Jan 14, 2018 #7 Alessandro71 said: i mistakenly thought space was also considered and english letters, since it's in the base ASCII set... Click to expand... It is part of ASCII. BUT it is NOT a English LETTER. Only A-Z,a-Z, _ and 0-9 are allowed. Upvote 0
Alessandro71 said: i mistakenly thought space was also considered and english letters, since it's in the base ASCII set... Click to expand... It is part of ASCII. BUT it is NOT a English LETTER. Only A-Z,a-Z, _ and 0-9 are allowed.