mirror of
https://github.com/yairm210/Unciv.git
synced 2024-12-22 20:44:25 +07:00
chore: Updated LibGDX to 1.12.1
This commit is contained in:
parent
e9b3ec5282
commit
927aa8a788
@ -19,7 +19,7 @@ Fastlane_short_description = Juego 4X de crear civilizaciones
|
||||
|
||||
# Documentation: https://f-droid.org/en/docs/Build_Metadata_Reference/#Description
|
||||
# English to translate: https://github.com/yairm210/Unciv/blob/master/fastlane/metadata/android/en-US/full_description.txt
|
||||
Fastlane_full_description = Una reimplementación del juego de construcción de civilizaciones más famoso de la historia - ¡Rápido, pequeño, sin anuncios, gratis por siempre!\n\n¡Construye tu civilización, investiga tecnologías, expande tus ciudades y derrota a tus enemigos!\n\n¿Peticiones?¿Errores? La lista de cosas por hacer de la aplicación es https://github.com/yairm210/Unciv/issues, ¡toda pequeña ayuda es bienvenida!\n\n¿Preguntas?¿Errores?¿Aburrido? Únetenos en https://discord.gg/bjrB4Xw.\n\n¿Quieres ayudar a traducir el juego a tu idioma? Envíame un email a yairm210@hotmail.com.\n\n¿Sabes escribir Java o Kotlin? Únetenos en https://github.com/yairm210/Unciv.¡El mundo espera!¿Convertirás tu civilización en un imperio que resistirá el paso del tiempo?\n\n Se requiere el permiso de "Tener acceso completo a la red" para descargas iniciadas por el usuario y el modo multijugador. Todos los demás permisos listados son incluidos automáticamente por el API usado para implementar las notificaciones de turnos en el modo multijugador. Los permisos de red son usados para contar mods, descargar mods, descargar música y para cargar/descargar partidas multijugador. Unciv no inicia ninguna otra comunicación por Internet.
|
||||
Fastlane_full_description = Una reimplementación del juego de construcción de civilizaciones más famoso de la historia - ¡Rápido, pequeño, sin anuncios, gratis por siempre!\n\n¡Construye tu civilización, investiga tecnologías, expande tus ciudades y derrota a tus enemigos!\n\n¿Peticiones?¿Errores? La lista de cosas por hacer de la aplicación es https://github.com/yairm210/Unciv/issues, ¡toda pequeña ayuda es bienvenida!\n\n¿Preguntas?¿Errores?¿Aburrido? Únetenos en https://discord.gg/bjrB4Xw.\n\n¿Quieres ayudar a traducir el juego a tu idioma? Envíame un email a yairm210@hotmail.com.\n\n¿Sabes escribir Java o Kotlin? Únetenos en https://github.com/yairm210/Unciv.\n\n¡El mundo espera!¿Convertirás tu civilización en un imperio que resistirá el paso del tiempo?\n\n Se requiere el permiso de "Tener acceso completo a la red" para descargas iniciadas por el usuario y el modo multijugador. Todos los demás permisos listados son incluidos automáticamente por el API usado para implementar las notificaciones de turnos en el modo multijugador. Los permisos de red son usados para contar mods, descargar mods, descargar música y para cargar/descargar partidas multijugador. Unciv no inicia ninguna otra comunicación por Internet.
|
||||
|
||||
|
||||
# Starting from here normal translations start, as described in
|
||||
|
@ -8,7 +8,7 @@ import com.unciv.build.BuildConfig.roboVMVersion
|
||||
|
||||
// You'll still get kotlin-reflect-1.3.70.jar in your classpath, but will no longer be used
|
||||
configurations.all { resolutionStrategy {
|
||||
force("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
|
||||
force("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion")
|
||||
} }
|
||||
|
||||
|
||||
@ -102,6 +102,8 @@ project(":android") {
|
||||
|
||||
dependencies {
|
||||
"implementation"(project(":core"))
|
||||
// Not sure why I had to add this in for the upgrade to 1.12.1 to work, we can probably remove this later since it's contained in core
|
||||
"implementation"("com.badlogicgames.gdx:gdx:$gdxVersion")
|
||||
"implementation"("com.badlogicgames.gdx:gdx-backend-android:$gdxVersion")
|
||||
"implementation"("org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion")
|
||||
natives("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a")
|
||||
@ -159,7 +161,7 @@ project(":core") {
|
||||
"implementation"("junit:junit:4.13.2")
|
||||
"implementation"("org.mockito:mockito-core:5.1.1")
|
||||
|
||||
"implementation"("com.badlogicgames.gdx:gdx-backend-lwjgl3:${gdxVersion}")
|
||||
"implementation"("com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion")
|
||||
"implementation"("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop")
|
||||
"implementation"("com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion")
|
||||
"implementation"("com.badlogicgames.gdx:gdx:$gdxVersion")
|
||||
|
@ -7,7 +7,7 @@ object BuildConfig {
|
||||
const val appCodeNumber = 926
|
||||
const val appVersion = "4.8.16"
|
||||
|
||||
const val gdxVersion = "1.11.0"
|
||||
const val gdxVersion = "1.12.1"
|
||||
const val ktorVersion = "2.2.3"
|
||||
const val coroutinesVersion = "1.7.2"
|
||||
const val roboVMVersion = "2.3.1"
|
||||
|
Loading…
Reference in New Issue
Block a user