diff options
-rw-r--r-- | build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle index e3ebb52..525e7e0 100644 --- a/build.gradle +++ b/build.gradle @@ -38,7 +38,7 @@ project(":desktop") { compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion" compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop" compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop" - /* compile fileTree(dir: 'libs', include: '*.jar') */ + compile fileTree(dir: 'libs', include: '*.jar') } } @@ -57,7 +57,7 @@ project(":android") { natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi" natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi-v7a" natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86" - /* compile fileTree(dir: 'libs', include: '*.jar') */ + compile fileTree(dir: 'libs', include: '*.jar') } } @@ -73,7 +73,7 @@ project(":core") { compile "com.badlogicgames.gdx:gdx:$gdxVersion" compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion" testCompile "junit:junit:+" - /* compile fileTree(dir: 'libs', include: '*.jar') */ + compile fileTree(dir: 'libs', include: '*.jar') } } |