You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm interested in being able to set the values of robovm.properties dynamically. Specifically, I want app.build to be set from gradle config. However, I can't make it work.
So far I have tried:
in build.gradle: project.ext."app.build" = 333
in command line: ./gradlew createIPA -Papp.build=444
I have skimmed through the sources of the plugin and it looks like robovm.properties is not handled by the plugin, but by robovm itself.
I'm doing all this in a libGDX project.
Is there a way to set values of robovm.properties dynamically? I can of course generate the whole file on the fly, but I'm not sure if this is an overkill since I only need to set app.build.
The text was updated successfully, but these errors were encountered:
This is a very old task, will there be someone working on this or should I also go with generating the file on the fly?
It would be nice if properties set by the JVM would override the one from the file. Then we could just define it using gradle
I'm interested in being able to set the values of
robovm.properties
dynamically. Specifically, I wantapp.build
to be set from gradle config. However, I can't make it work.So far I have tried:
build.gradle
:project.ext."app.build" = 333
./gradlew createIPA -Papp.build=444
I have skimmed through the sources of the plugin and it looks like
robovm.properties
is not handled by the plugin, but by robovm itself.I'm doing all this in a libGDX project.
Is there a way to set values of
robovm.properties
dynamically? I can of course generate the whole file on the fly, but I'm not sure if this is an overkill since I only need to setapp.build
.The text was updated successfully, but these errors were encountered: