diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 4a032d0..ec053c8 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -13,13 +13,18 @@
android:supportsRtl="true"
android:theme="@style/AppTheme">
+ android:name=".SplashActivity"
+ android:label="@string/app_name"
+ android:theme="@style/SplashTheme">
+
+
diff --git a/app/src/main/java/net/thauvin/erik/android/tesremoteprogrammer/SplashActivity.kt b/app/src/main/java/net/thauvin/erik/android/tesremoteprogrammer/SplashActivity.kt
new file mode 100644
index 0000000..a9f2a64
--- /dev/null
+++ b/app/src/main/java/net/thauvin/erik/android/tesremoteprogrammer/SplashActivity.kt
@@ -0,0 +1,33 @@
+/*
+ * SplashActivity.kt
+ *
+ * Copyright 2016 Erik C. Thauvin (erik@thauvin.net)
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package net.thauvin.erik.android.tesremoteprogrammer
+
+import android.content.Intent
+import android.os.Bundle
+import android.support.v7.app.AppCompatActivity
+
+class SplashActivity : AppCompatActivity() {
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+
+ val intent = Intent(this, MainActivity::class.java)
+ startActivity(intent)
+ finish()
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/res/drawable-hdpi/splash.png b/app/src/main/res/drawable-hdpi/splash.png
new file mode 100644
index 0000000..fe11d2b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/splash.png differ
diff --git a/app/src/main/res/drawable-mdpi/splash.png b/app/src/main/res/drawable-mdpi/splash.png
new file mode 100644
index 0000000..c812fc0
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/splash.png differ
diff --git a/app/src/main/res/drawable-xhdpi/splash.png b/app/src/main/res/drawable-xhdpi/splash.png
new file mode 100644
index 0000000..03c6e1d
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/splash.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/splash.png b/app/src/main/res/drawable-xxhdpi/splash.png
new file mode 100644
index 0000000..a1d3dd2
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/splash.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/splash.png b/app/src/main/res/drawable-xxxhdpi/splash.png
new file mode 100644
index 0000000..1c75641
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/splash.png differ
diff --git a/app/src/main/res/drawable/background_splash.xml b/app/src/main/res/drawable/background_splash.xml
new file mode 100644
index 0000000..4e27506
--- /dev/null
+++ b/app/src/main/res/drawable/background_splash.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+ -
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
index c4bdc3a..63c799e 100644
--- a/app/src/main/res/values/styles.xml
+++ b/app/src/main/res/values/styles.xml
@@ -6,6 +6,10 @@
- @color/colorAccent
+
+