diff --git a/data/source/database/.gitignore b/data/source/database/.gitignore
new file mode 100644
index 00000000..42afabfd
--- /dev/null
+++ b/data/source/database/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/data/source/database/build.gradle b/data/source/database/build.gradle
new file mode 100644
index 00000000..227ad17d
--- /dev/null
+++ b/data/source/database/build.gradle
@@ -0,0 +1,35 @@
+plugins {
+ alias(libs.plugins.com.android.library)
+}
+
+android {
+ namespace 'one.nem.lacerta.data.source.database'
+ compileSdk 33
+
+ defaultConfig {
+ minSdk 26
+
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ consumerProguardFiles "consumer-rules.pro"
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+}
+
+dependencies {
+
+ implementation libs.androidx.appcompat
+ implementation libs.com.google.android.material
+ testImplementation libs.junit
+ androidTestImplementation libs.androidx.test.ext.junit
+ androidTestImplementation libs.androidx.test.espresso.core
+}
\ No newline at end of file
diff --git a/data/source/database/consumer-rules.pro b/data/source/database/consumer-rules.pro
new file mode 100644
index 00000000..e69de29b
diff --git a/data/source/database/proguard-rules.pro b/data/source/database/proguard-rules.pro
new file mode 100644
index 00000000..481bb434
--- /dev/null
+++ b/data/source/database/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/data/source/database/src/androidTest/java/one/nem/lacerta/data/source/database/ExampleInstrumentedTest.java b/data/source/database/src/androidTest/java/one/nem/lacerta/data/source/database/ExampleInstrumentedTest.java
new file mode 100644
index 00000000..b1840d63
--- /dev/null
+++ b/data/source/database/src/androidTest/java/one/nem/lacerta/data/source/database/ExampleInstrumentedTest.java
@@ -0,0 +1,26 @@
+package one.nem.lacerta.data.source.database;
+
+import android.content.Context;
+
+import androidx.test.platform.app.InstrumentationRegistry;
+import androidx.test.ext.junit.runners.AndroidJUnit4;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+
+import static org.junit.Assert.*;
+
+/**
+ * Instrumented test, which will execute on an Android device.
+ *
+ * @see Testing documentation
+ */
+@RunWith(AndroidJUnit4.class)
+public class ExampleInstrumentedTest {
+ @Test
+ public void useAppContext() {
+ // Context of the app under test.
+ Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
+ assertEquals("one.nem.lacerta.data.source.database.test", appContext.getPackageName());
+ }
+}
\ No newline at end of file
diff --git a/data/source/database/src/main/AndroidManifest.xml b/data/source/database/src/main/AndroidManifest.xml
new file mode 100644
index 00000000..a5918e68
--- /dev/null
+++ b/data/source/database/src/main/AndroidManifest.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/data/source/database/src/test/java/one/nem/lacerta/data/source/database/ExampleUnitTest.java b/data/source/database/src/test/java/one/nem/lacerta/data/source/database/ExampleUnitTest.java
new file mode 100644
index 00000000..ea23bf10
--- /dev/null
+++ b/data/source/database/src/test/java/one/nem/lacerta/data/source/database/ExampleUnitTest.java
@@ -0,0 +1,17 @@
+package one.nem.lacerta.data.source.database;
+
+import org.junit.Test;
+
+import static org.junit.Assert.*;
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * @see Testing documentation
+ */
+public class ExampleUnitTest {
+ @Test
+ public void addition_isCorrect() {
+ assertEquals(4, 2 + 2);
+ }
+}
\ No newline at end of file
diff --git a/settings.gradle b/settings.gradle
index 821c1429..35d9969f 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -24,3 +24,4 @@ include ':component:scanner'
include ':component:viewer'
include ':component:common'
include ':data:repository'
+include ':data:source:database'