Create activity for online and offline camera swap information

CameraSwapInfoActivity is shown from CameraSwapNotification if
ModuleDetect detects that a camera module has been replaced.

By default a WebView of the support article at fairphone.com/camera-swap
is shown. In case of error, some basic offline information is displayed.

FPIIM-1467

Change-Id: I012fefedfdaad5a1a0d0f9894c42fea686c24acb
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..1aebbf1
--- /dev/null
+++ b/app/src/main/AndroidManifest.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="com.fairphone.cameraswapinfo"
+    android:versionCode="1"
+    android:versionName="1.0.0">
+
+    <uses-permission android:name="android.permission.INTERNET" />
+
+    <application
+        android:allowBackup="true"
+        android:icon="@mipmap/ic_launcher_camera_swap"
+        android:label="@string/app_name"
+        android:supportsRtl="true"
+        android:theme="@style/AppTheme">
+
+        <activity android:name=".CameraSwapDetailsActivity"
+            android:enabled="true"
+            android:theme="@style/Theme.Setup">
+            <intent-filter android:priority="1">
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.intent.category.DEFAULT" />
+            </intent-filter>
+        </activity>
+    </application>
+
+</manifest>