Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add extension to libgdx project (gradle)

I created a libgdx project with Gradle. Now I want to add an extension (bullet) to it. The project was created with gdx-setup.jar. How can I add bullet without creating a new project?

like image 610
emyaz Avatar asked Apr 23 '14 13:04

emyaz


1 Answers

You should edit your build.gradle file in the directory where the project was created, and add the bullet dependecy.

You can follow the libGDX wiki:

https://github.com/libgdx/libgdx/wiki/Dependency-management-with-Gradle#bullet-gradle

like image 179
sergiomse Avatar answered Nov 15 '22 00:11

sergiomse