From bf8276a69accf101c0827bbbc18dd81fe8410dba Mon Sep 17 00:00:00 2001 From: magnsskj <magnsskj@stud.ntnu.no> Date: Wed, 22 Mar 2023 12:03:27 +0100 Subject: [PATCH] (#18): add freetype library to gradle.build --- frontend/build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/build.gradle b/frontend/build.gradle index dcbdcb8..24a7d89 100644 --- a/frontend/build.gradle +++ b/frontend/build.gradle @@ -51,7 +51,6 @@ project(":desktop") { implementation "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop" api "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion" api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop" - } } @@ -73,7 +72,6 @@ project(":android") { natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-arm64-v8a" natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86" natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86_64" - } } @@ -100,5 +98,8 @@ project(":core") { dependencies { api "com.badlogicgames.gdx:gdx:$gdxVersion" implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion" + + implementation 'com.github.raeleus.stripe:freetype:1.4.5' + } } -- GitLab