diff --git a/.idea/deploymentTargetSelector.xml b/.idea/deploymentTargetSelector.xml
index 8096d6c..8717154 100644
--- a/.idea/deploymentTargetSelector.xml
+++ b/.idea/deploymentTargetSelector.xml
@@ -8,6 +8,9 @@
+
+
+
\ No newline at end of file
diff --git a/app-stub/.gitignore b/app-stub/.gitignore
new file mode 100644
index 0000000..42afabf
--- /dev/null
+++ b/app-stub/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/app-stub/build.gradle.kts b/app-stub/build.gradle.kts
new file mode 100644
index 0000000..d8dc8d9
--- /dev/null
+++ b/app-stub/build.gradle.kts
@@ -0,0 +1,29 @@
+import im.angry.openeuicc.build.*
+
+plugins {
+ id("com.android.application")
+}
+
+apply {
+ plugin()
+}
+
+android {
+ namespace = "im.angry.openeuicc"
+ compileSdk = 35
+
+ defaultConfig {
+ applicationId = "im.angry.openeuicc"
+ minSdk = 30
+ targetSdk = 35
+ versionCode = 1
+ }
+
+ buildTypes {
+ all {
+ isDebuggable = false
+ isMinifyEnabled = true
+ isShrinkResources = true
+ }
+ }
+}
diff --git a/app-stub/src/main/AndroidManifest.xml b/app-stub/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..c9c493d
--- /dev/null
+++ b/app-stub/src/main/AndroidManifest.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app-stub/src/main/res/values/strings.xml b/app-stub/src/main/res/values/strings.xml
new file mode 100644
index 0000000..60ef1da
--- /dev/null
+++ b/app-stub/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ OpenEUICC
+
\ No newline at end of file
diff --git a/settings.gradle.kts b/settings.gradle.kts
index 1aaf889..359548b 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -31,3 +31,4 @@ include(":libs:lpac-jni")
include(":app-common")
include(":app-unpriv")
include(":app-deps")
+include(":app-stub")