Add "Touchscreen" app to properly setup touchscreen calibration
diff --git a/Touchscreen/AndroidManifest.xml b/Touchscreen/AndroidManifest.xml
new file mode 100644
index 0000000..50e3b92
--- /dev/null
+++ b/Touchscreen/AndroidManifest.xml
@@ -0,0 +1,16 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+	package="me.phh.treble.touchscreen"
+	android:sharedUserId="android.uid.system">
+
+	<uses-permission android:name="android.permission.SET_INPUT_CALIBRATION" />
+    <application
+	    android:label="@string/app_label">
+
+	    <receiver android:name=".Starter">
+		    <intent-filter>
+			    <action android:name="android.intent.action.BOOT_COMPLETED"/>
+		    </intent-filter>
+	    </receiver>
+    </application>
+
+</manifest>