stanmiller Active Member Licensed User Longtime User Jul 17, 2017 #1 Is it possible to get the B4J version from code? For example, I've compiled an app with B4J 5.80 beta 3 and I'd like to be able to confirm that version from code.
Is it possible to get the B4J version from code? For example, I've compiled an app with B4J 5.80 beta 3 and I'd like to be able to confirm that version from code.
EnriqueGonzalez Expert Licensed User Longtime User Jul 17, 2017 #2 oh... that is a nice question. But no, afaik it is not possible and anyway that is the IDE version and not necesarily the b4x compiler version. Upvote 0
oh... that is a nice question. But no, afaik it is not possible and anyway that is the IDE version and not necesarily the b4x compiler version.
Erel B4X founder Staff member Licensed User Longtime User Jul 17, 2017 #3 The IDE version is not stored in the compiled app. If it is important for you then you can do something similar to this solution: https://www.b4x.com/android/forum/t...d-auto-increment-build-version.64183/#content You can extend the B4J tool to read the version from the project main .b4j file and store it. Upvote 0
The IDE version is not stored in the compiled app. If it is important for you then you can do something similar to this solution: https://www.b4x.com/android/forum/t...d-auto-increment-build-version.64183/#content You can extend the B4J tool to read the version from the project main .b4j file and store it.
stanmiller Active Member Licensed User Longtime User Jul 18, 2017 #4 Erel said: The IDE version is not stored in the compiled app. If it is important for you then you can do something similar to this solution: https://www.b4x.com/android/forum/t...d-auto-increment-build-version.64183/#content You can extend the B4J tool to read the version from the project main .b4j file and store it. Click to expand... Thanks! That should work. Upvote 0
Erel said: The IDE version is not stored in the compiled app. If it is important for you then you can do something similar to this solution: https://www.b4x.com/android/forum/t...d-auto-increment-build-version.64183/#content You can extend the B4J tool to read the version from the project main .b4j file and store it. Click to expand... Thanks! That should work.