Fixed android module being necessary to compile

This commit is contained in:
Anuken
2018-08-17 18:05:28 -04:00
parent 25051980ce
commit f8d6797fc2
2 changed files with 4 additions and 2 deletions

View File

@@ -194,7 +194,9 @@ project(":server") {
apply plugin: "java"
configurations {
compile.exclude module: android
if(findProject(":android") != null){
compile.exclude module: android
}
}
dependencies {