Updated Gradle to 4.5

This commit is contained in:
Anuken 2018-02-01 19:31:13 -05:00
parent 83ce2329f4
commit beded95ffa
4 changed files with 9 additions and 9 deletions

View File

@ -8,8 +8,8 @@ repositories {
} }
dependencies { dependencies {
compile 'com.android.support:support-v4:22.1.1' implementation 'com.android.support:support-v4:22.1.1'
compile 'org.sufficientlysecure:donations:2.5' implementation 'org.sufficientlysecure:donations:2.5'
} }
android { android {

View File

@ -73,16 +73,16 @@ project(":android") {
configurations { natives } configurations { natives }
dependencies { dependencies {
compile project(":core") implementation project(":core")
compile project(":kryonet") implementation project(":kryonet")
compile "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion" implementation "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a" 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-arm64-v8a"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64"
compile "com.badlogicgames.gdx:gdx-ai:$aiVersion" implementation "com.badlogicgames.gdx:gdx-ai:$aiVersion"
compile "com.badlogicgames.gdx:gdx-controllers-android:$gdxVersion" implementation "com.badlogicgames.gdx:gdx-controllers-android:$gdxVersion"
} }
} }

View File

@ -5,5 +5,5 @@ import com.badlogic.gdx.ai.pfa.indexed.IndexedGraph;
/**An interface for an indexed graph that doesn't use allocations for connections.*/ /**An interface for an indexed graph that doesn't use allocations for connections.*/
public interface OptimizedGraph<N> extends IndexedGraph<N> { public interface OptimizedGraph<N> extends IndexedGraph<N> {
/**This is used in the same way as getConnections(), but does not use Connection objects.*/ /**This is used in the same way as getConnections(), but does not use Connection objects.*/
public N[] connectionsOf(N node); N[] connectionsOf(N node);
} }

View File

@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-4.5-all.zip