mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-22 04:28:27 +07:00
Updated Gradle to 4.5
This commit is contained in:
parent
83ce2329f4
commit
beded95ffa
@ -8,8 +8,8 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile 'com.android.support:support-v4:22.1.1'
|
||||
compile 'org.sufficientlysecure:donations:2.5'
|
||||
implementation 'com.android.support:support-v4:22.1.1'
|
||||
implementation 'org.sufficientlysecure:donations:2.5'
|
||||
}
|
||||
|
||||
android {
|
||||
|
10
build.gradle
10
build.gradle
@ -73,16 +73,16 @@ project(":android") {
|
||||
configurations { natives }
|
||||
|
||||
dependencies {
|
||||
compile project(":core")
|
||||
compile project(":kryonet")
|
||||
compile "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
|
||||
implementation project(":core")
|
||||
implementation project(":kryonet")
|
||||
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-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"
|
||||
compile "com.badlogicgames.gdx:gdx-ai:$aiVersion"
|
||||
compile "com.badlogicgames.gdx:gdx-controllers-android:$gdxVersion"
|
||||
implementation "com.badlogicgames.gdx:gdx-ai:$aiVersion"
|
||||
implementation "com.badlogicgames.gdx:gdx-controllers-android:$gdxVersion"
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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.*/
|
||||
public interface OptimizedGraph<N> extends IndexedGraph<N> {
|
||||
/**This is used in the same way as getConnections(), but does not use Connection objects.*/
|
||||
public N[] connectionsOf(N node);
|
||||
N[] connectionsOf(N node);
|
||||
}
|
||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user