From b39f25ed519b831546da4203f1d4b443780c4e63 Mon Sep 17 00:00:00 2001
From: Anuken <arnukren@gmail.com>
Date: Mon, 29 Oct 2018 16:02:09 -0400
Subject: [PATCH] Fixed build error

---
 android/build.gradle                                | 13 +++++++++++++
 build.gradle                                        |  1 -
 .../anuke/mindustry/world/modules/BlockModule.java  |  1 -
 3 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/android/build.gradle b/android/build.gradle
index 2129412ee2..b369a555b5 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -1,3 +1,16 @@
+buildscript {
+    repositories {
+        mavenLocal()
+        mavenCentral()
+        google()
+        maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
+        jcenter()
+    }
+    
+    dependencies {
+        classpath 'com.android.tools.build:gradle:3.2.1'
+    }
+}
 
 apply plugin: "com.android.application"
 
diff --git a/build.gradle b/build.gradle
index 013326d1fb..67b55f03c5 100644
--- a/build.gradle
+++ b/build.gradle
@@ -9,7 +9,6 @@ buildscript {
     dependencies {
         classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.0'
         classpath 'de.richsource.gradle.plugins:gwt-gradle-plugin:0.6'
-        classpath 'com.android.tools.build:gradle:3.2.1'
         classpath "com.badlogicgames.gdx:gdx-tools:1.9.8"
     }
 }
diff --git a/core/src/io/anuke/mindustry/world/modules/BlockModule.java b/core/src/io/anuke/mindustry/world/modules/BlockModule.java
index af9be7b4b8..3d3e003b4e 100644
--- a/core/src/io/anuke/mindustry/world/modules/BlockModule.java
+++ b/core/src/io/anuke/mindustry/world/modules/BlockModule.java
@@ -7,6 +7,5 @@ import java.io.IOException;
 /**A class that represents compartmentalized tile entity state.*/
 public abstract class BlockModule{
     public abstract void write(DataOutput stream) throws IOException;
-
     public abstract void read(DataInput stream) throws IOException;
 }