diff --git a/.idea/gradle.xml b/.idea/gradle.xml
index ba22494..5dd2f3c 100644
--- a/.idea/gradle.xml
+++ b/.idea/gradle.xml
@@ -18,6 +18,7 @@
+
diff --git a/.idea/misc.xml b/.idea/misc.xml
index 7eb01f0..c35dfc5 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -25,6 +25,10 @@
+
+
+
+
@@ -45,6 +49,7 @@
+
diff --git a/features/farewell/.gitignore b/features/farewell/.gitignore
new file mode 100644
index 0000000..42afabf
--- /dev/null
+++ b/features/farewell/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/features/farewell/consumer-rules.pro b/features/farewell/consumer-rules.pro
new file mode 100644
index 0000000..e69de29
diff --git a/features/farewell/proguard-rules.pro b/features/farewell/proguard-rules.pro
new file mode 100644
index 0000000..481bb43
--- /dev/null
+++ b/features/farewell/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/features/farewell/src/androidTest/java/org/mascota/farewell/ExampleInstrumentedTest.kt b/features/farewell/src/androidTest/java/org/mascota/farewell/ExampleInstrumentedTest.kt
new file mode 100644
index 0000000..bb4c64c
--- /dev/null
+++ b/features/farewell/src/androidTest/java/org/mascota/farewell/ExampleInstrumentedTest.kt
@@ -0,0 +1,22 @@
+package org.mascota.farewell
+
+import androidx.test.ext.junit.runners.AndroidJUnit4
+import androidx.test.platform.app.InstrumentationRegistry
+import org.junit.Assert.assertEquals
+import org.junit.Test
+import org.junit.runner.RunWith
+
+/**
+ * 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("org.mascota.farewell.test", appContext.packageName)
+ }
+}
diff --git a/features/farewell/src/test/java/org/mascota/farewell/ExampleUnitTest.kt b/features/farewell/src/test/java/org/mascota/farewell/ExampleUnitTest.kt
new file mode 100644
index 0000000..15dbe4e
--- /dev/null
+++ b/features/farewell/src/test/java/org/mascota/farewell/ExampleUnitTest.kt
@@ -0,0 +1,16 @@
+package org.mascota.farewell
+
+import org.junit.Assert.assertEquals
+import org.junit.Test
+
+/**
+ * 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)
+ }
+}