diff --git a/.idea/gradle.xml b/.idea/gradle.xml
index 7ac24c777f..255a33e953 100644
--- a/.idea/gradle.xml
+++ b/.idea/gradle.xml
@@ -9,6 +9,7 @@
+
diff --git a/settings.gradle b/settings.gradle
index e7b4def49c..753d1d9277 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1 +1 @@
-include ':app'
+include ':app', ':tangemcard'
diff --git a/tangemcard/.gitignore b/tangemcard/.gitignore
new file mode 100644
index 0000000000..796b96d1c4
--- /dev/null
+++ b/tangemcard/.gitignore
@@ -0,0 +1 @@
+/build
diff --git a/tangemcard/build.gradle b/tangemcard/build.gradle
new file mode 100644
index 0000000000..989ef96abc
--- /dev/null
+++ b/tangemcard/build.gradle
@@ -0,0 +1,34 @@
+apply plugin: 'com.android.library'
+
+android {
+ compileSdkVersion 28
+
+
+
+ defaultConfig {
+ minSdkVersion 16
+ targetSdkVersion 28
+ versionCode 1
+ versionName "1.0"
+
+ testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
+
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+
+}
+
+dependencies {
+ implementation fileTree(dir: 'libs', include: ['*.jar'])
+
+ implementation 'com.android.support:appcompat-v7:28.0.0'
+ testImplementation 'junit:junit:4.12'
+ androidTestImplementation 'com.android.support.test:runner:1.0.2'
+ androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
+}
diff --git a/tangemcard/proguard-rules.pro b/tangemcard/proguard-rules.pro
new file mode 100644
index 0000000000..f1b424510d
--- /dev/null
+++ b/tangemcard/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
diff --git a/tangemcard/src/androidTest/java/com/tangem/tangemcard/ExampleInstrumentedTest.java b/tangemcard/src/androidTest/java/com/tangem/tangemcard/ExampleInstrumentedTest.java
new file mode 100644
index 0000000000..6349f4aa67
--- /dev/null
+++ b/tangemcard/src/androidTest/java/com/tangem/tangemcard/ExampleInstrumentedTest.java
@@ -0,0 +1,26 @@
+package com.tangem.tangemcard;
+
+import android.content.Context;
+import android.support.test.InstrumentationRegistry;
+import android.support.test.runner.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.getTargetContext();
+
+ assertEquals("com.tangem.tangemcard.test", appContext.getPackageName());
+ }
+}
diff --git a/tangemcard/src/main/AndroidManifest.xml b/tangemcard/src/main/AndroidManifest.xml
new file mode 100644
index 0000000000..d71fe3bba6
--- /dev/null
+++ b/tangemcard/src/main/AndroidManifest.xml
@@ -0,0 +1,2 @@
+
diff --git a/tangemcard/src/main/java/com/tangem/tangemcard/Test.java b/tangemcard/src/main/java/com/tangem/tangemcard/Test.java
new file mode 100644
index 0000000000..3d2329b2c4
--- /dev/null
+++ b/tangemcard/src/main/java/com/tangem/tangemcard/Test.java
@@ -0,0 +1,4 @@
+package com.tangem.tangemcard;
+
+public class Test {
+}
diff --git a/tangemcard/src/main/res/values/strings.xml b/tangemcard/src/main/res/values/strings.xml
new file mode 100644
index 0000000000..2f96d49efc
--- /dev/null
+++ b/tangemcard/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ tangemcard
+
diff --git a/tangemcard/src/test/java/com/tangem/tangemcard/ExampleUnitTest.java b/tangemcard/src/test/java/com/tangem/tangemcard/ExampleUnitTest.java
new file mode 100644
index 0000000000..053a2eef4f
--- /dev/null
+++ b/tangemcard/src/test/java/com/tangem/tangemcard/ExampleUnitTest.java
@@ -0,0 +1,17 @@
+package com.tangem.tangemcard;
+
+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