diff --git a/settings.gradle b/settings.gradle
index 231bc04..771f5d9 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,2 +1,3 @@
rootProject.name='ntfy'
include ':app'
+include ':ui'
diff --git a/ui/.gitignore b/ui/.gitignore
new file mode 100644
index 0000000..42afabf
--- /dev/null
+++ b/ui/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/ui/build.gradle b/ui/build.gradle
new file mode 100644
index 0000000..8fd6dd6
--- /dev/null
+++ b/ui/build.gradle
@@ -0,0 +1,43 @@
+plugins {
+ id 'com.android.application'
+ id 'org.jetbrains.kotlin.android'
+}
+
+android {
+ namespace 'foundation.e.ntefy.ui'
+ compileSdk 34
+
+ defaultConfig {
+ applicationId "foundation.e.ntefy.ui"
+ minSdk 29
+ targetSdk 34
+ versionCode 1
+ versionName "1.0"
+
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+ kotlinOptions {
+ jvmTarget = '1.8'
+ }
+}
+
+dependencies {
+
+ implementation 'androidx.core:core-ktx:1.13.1'
+ implementation 'androidx.appcompat:appcompat:1.7.0'
+ implementation 'com.google.android.material:material:1.12.0'
+ testImplementation 'junit:junit:4.13.2'
+ androidTestImplementation 'androidx.test.ext:junit:1.2.1'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
+}
\ No newline at end of file
diff --git a/ui/proguard-rules.pro b/ui/proguard-rules.pro
new file mode 100644
index 0000000..481bb43
--- /dev/null
+++ b/ui/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/ui/src/androidTest/java/foundation/e/ntefy/ui/ExampleInstrumentedTest.kt b/ui/src/androidTest/java/foundation/e/ntefy/ui/ExampleInstrumentedTest.kt
new file mode 100644
index 0000000..2f05595
--- /dev/null
+++ b/ui/src/androidTest/java/foundation/e/ntefy/ui/ExampleInstrumentedTest.kt
@@ -0,0 +1,24 @@
+package foundation.e.ntefy.ui
+
+import androidx.test.platform.app.InstrumentationRegistry
+import androidx.test.ext.junit.runners.AndroidJUnit4
+
+import org.junit.Test
+import org.junit.runner.RunWith
+
+import org.junit.Assert.*
+
+/**
+ * Instrumented test, which will execute on an Android device.
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+@RunWith(AndroidJUnit4::class)
+class ExampleInstrumentedTest {
+ @Test
+ fun useAppContext() {
+ // Context of the app under test.
+ val appContext = InstrumentationRegistry.getInstrumentation().targetContext
+ assertEquals("foundation.e.ntefy.ui", appContext.packageName)
+ }
+}
\ No newline at end of file
diff --git a/ui/src/main/AndroidManifest.xml b/ui/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..0a7e3fe
--- /dev/null
+++ b/ui/src/main/AndroidManifest.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ui/src/main/res/drawable/ic_launcher_background.xml b/ui/src/main/res/drawable/ic_launcher_background.xml
new file mode 100644
index 0000000..07d5da9
--- /dev/null
+++ b/ui/src/main/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ui/src/main/res/drawable/ic_launcher_foreground.xml b/ui/src/main/res/drawable/ic_launcher_foreground.xml
new file mode 100644
index 0000000..2b068d1
--- /dev/null
+++ b/ui/src/main/res/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ui/src/main/res/mipmap-anydpi/ic_launcher.xml b/ui/src/main/res/mipmap-anydpi/ic_launcher.xml
new file mode 100644
index 0000000..6f3b755
--- /dev/null
+++ b/ui/src/main/res/mipmap-anydpi/ic_launcher.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ui/src/main/res/mipmap-anydpi/ic_launcher_round.xml b/ui/src/main/res/mipmap-anydpi/ic_launcher_round.xml
new file mode 100644
index 0000000..6f3b755
--- /dev/null
+++ b/ui/src/main/res/mipmap-anydpi/ic_launcher_round.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ui/src/main/res/mipmap-hdpi/ic_launcher.webp b/ui/src/main/res/mipmap-hdpi/ic_launcher.webp
new file mode 100644
index 0000000..c209e78
Binary files /dev/null and b/ui/src/main/res/mipmap-hdpi/ic_launcher.webp differ
diff --git a/ui/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/ui/src/main/res/mipmap-hdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..b2dfe3d
Binary files /dev/null and b/ui/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ
diff --git a/ui/src/main/res/mipmap-mdpi/ic_launcher.webp b/ui/src/main/res/mipmap-mdpi/ic_launcher.webp
new file mode 100644
index 0000000..4f0f1d6
Binary files /dev/null and b/ui/src/main/res/mipmap-mdpi/ic_launcher.webp differ
diff --git a/ui/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/ui/src/main/res/mipmap-mdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..62b611d
Binary files /dev/null and b/ui/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ
diff --git a/ui/src/main/res/mipmap-xhdpi/ic_launcher.webp b/ui/src/main/res/mipmap-xhdpi/ic_launcher.webp
new file mode 100644
index 0000000..948a307
Binary files /dev/null and b/ui/src/main/res/mipmap-xhdpi/ic_launcher.webp differ
diff --git a/ui/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/ui/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..1b9a695
Binary files /dev/null and b/ui/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ
diff --git a/ui/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/ui/src/main/res/mipmap-xxhdpi/ic_launcher.webp
new file mode 100644
index 0000000..28d4b77
Binary files /dev/null and b/ui/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ
diff --git a/ui/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/ui/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..9287f50
Binary files /dev/null and b/ui/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ
diff --git a/ui/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/ui/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
new file mode 100644
index 0000000..aa7d642
Binary files /dev/null and b/ui/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ
diff --git a/ui/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/ui/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..9126ae3
Binary files /dev/null and b/ui/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ
diff --git a/ui/src/main/res/values-night/themes.xml b/ui/src/main/res/values-night/themes.xml
new file mode 100644
index 0000000..a517cd9
--- /dev/null
+++ b/ui/src/main/res/values-night/themes.xml
@@ -0,0 +1,16 @@
+
+
+
+
\ No newline at end of file
diff --git a/ui/src/main/res/values/colors.xml b/ui/src/main/res/values/colors.xml
new file mode 100644
index 0000000..f8c6127
--- /dev/null
+++ b/ui/src/main/res/values/colors.xml
@@ -0,0 +1,10 @@
+
+
+ #FFBB86FC
+ #FF6200EE
+ #FF3700B3
+ #FF03DAC5
+ #FF018786
+ #FF000000
+ #FFFFFFFF
+
\ No newline at end of file
diff --git a/ui/src/main/res/values/strings.xml b/ui/src/main/res/values/strings.xml
new file mode 100644
index 0000000..197626a
--- /dev/null
+++ b/ui/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ UI
+
\ No newline at end of file
diff --git a/ui/src/main/res/values/themes.xml b/ui/src/main/res/values/themes.xml
new file mode 100644
index 0000000..62d7488
--- /dev/null
+++ b/ui/src/main/res/values/themes.xml
@@ -0,0 +1,16 @@
+
+
+
+
\ No newline at end of file
diff --git a/ui/src/test/java/foundation/e/ntefy/ui/ExampleUnitTest.kt b/ui/src/test/java/foundation/e/ntefy/ui/ExampleUnitTest.kt
new file mode 100644
index 0000000..17ef2b4
--- /dev/null
+++ b/ui/src/test/java/foundation/e/ntefy/ui/ExampleUnitTest.kt
@@ -0,0 +1,17 @@
+package foundation.e.ntefy.ui
+
+import org.junit.Test
+
+import org.junit.Assert.*
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+class ExampleUnitTest {
+ @Test
+ fun addition_isCorrect() {
+ assertEquals(4, 2 + 2)
+ }
+}
\ No newline at end of file