FPII-2070: FP Updater: rewrite XML parser

Isolate and rewrite the XML parser.

Change-Id: I76bbcad8187cf0dc49e13c08487122896f51a63c
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 0000000..d114a6a
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,33 @@
+// Module level gradle declarations
+
+apply plugin: 'com.android.application'
+
+apply plugin: 'crashlytics'
+
+repositories {
+    maven { url 'http://download.crashlytics.com/maven' }
+}
+
+android {
+    compileSdkVersion 21
+    buildToolsVersion "21.1.2"
+    defaultConfig {
+        applicationId "com.fairphone.updater"
+        minSdkVersion 17
+        targetSdkVersion 21
+    }
+    buildTypes {
+        release {
+            minifyEnabled true
+            shrinkResources true
+            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
+        }
+    }
+}
+
+dependencies {
+    compile 'com.android.support:support-v4:21.0.+'
+    compile 'com.crashlytics.android:crashlytics:1.+'
+    compile files('libs/RootTools-3.3.jar')
+    testCompile "org.robolectric:robolectric:3.0"
+}
\ No newline at end of file