feat: priv stub app #82

Closed
septs wants to merge 2 commits from septs:priv-stub-app into master
6 changed files with 47 additions and 0 deletions

View file

@ -8,6 +8,9 @@
<SelectionState runConfigName="app">
<option name="selectionMode" value="DROPDOWN" />
</SelectionState>
<SelectionState runConfigName="app-stub">
<option name="selectionMode" value="DROPDOWN" />
</SelectionState>
</selectionStates>
</component>
</project>

1
app-stub/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/build

29
app-stub/build.gradle.kts Normal file
View file

@ -0,0 +1,29 @@
import im.angry.openeuicc.build.*
plugins {
id("com.android.application")
}
apply {
plugin<MySigningPlugin>()
}
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
}
}
}

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application
android:hasCode="false"
android:label="@string/app_name"
tools:ignore="MissingApplicationIcon" />
</manifest>

View file

@ -0,0 +1,3 @@
<resources>
<string name="app_name">OpenEUICC</string>
</resources>

View file

@ -31,3 +31,4 @@ include(":libs:lpac-jni")
include(":app-common")
include(":app-unpriv")
include(":app-deps")
include(":app-stub")