CreatingAndroidLiveWallpapers
CreatingAndroidLiveWallpapers copied to clipboard
Request: update dependencies
Thank you for making this, but can you please update all dependencies?
LibGdx isn't on 1.10.0. Latest version is 1.11.0.
I tried to update it myself, but it fails to find the dependencies, no matter what I tried...
repositories {
mavenCentral()
google()
jcenter()
mavenLocal()
gradlePluginPortal()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10"
}
def gdxVersion = "1.11.0"
api "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
api "com.badlogicgames.gdx:gdx:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-bullet:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-controllers:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-ai:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-tiled:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-lwjgl3:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-lwjgl:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-sources:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-tests:$gdxVersion"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64"