How to update GameLib in your project
project-ellen
uses Gradle to manage its dependencies. The process of updating the GameLib library to a version x.x.x
(replace x.x.x
with the required version) is as follows:
- Open file
build.gradle.kts
from the root directory of your project. - Change value of the
gamelibVersion
variable to the required version:
val gamelibVersion = "x.x.x"
- After the change the IDE will show a notification about required import of Gradle project changes. Click on Import Changes.