feat: priv stub app #82
6 changed files with 47 additions and 0 deletions
3
.idea/deploymentTargetSelector.xml
generated
3
.idea/deploymentTargetSelector.xml
generated
|
@ -8,6 +8,9 @@
|
||||||
<SelectionState runConfigName="app">
|
<SelectionState runConfigName="app">
|
||||||
<option name="selectionMode" value="DROPDOWN" />
|
<option name="selectionMode" value="DROPDOWN" />
|
||||||
</SelectionState>
|
</SelectionState>
|
||||||
|
<SelectionState runConfigName="app-stub">
|
||||||
|
<option name="selectionMode" value="DROPDOWN" />
|
||||||
|
</SelectionState>
|
||||||
</selectionStates>
|
</selectionStates>
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
1
app-stub/.gitignore
vendored
Normal file
1
app-stub/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/build
|
29
app-stub/build.gradle.kts
Normal file
29
app-stub/build.gradle.kts
Normal 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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
10
app-stub/src/main/AndroidManifest.xml
Normal file
10
app-stub/src/main/AndroidManifest.xml
Normal 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>
|
3
app-stub/src/main/res/values/strings.xml
Normal file
3
app-stub/src/main/res/values/strings.xml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<resources>
|
||||||
|
<string name="app_name">OpenEUICC</string>
|
||||||
|
</resources>
|
|
@ -31,3 +31,4 @@ include(":libs:lpac-jni")
|
||||||
include(":app-common")
|
include(":app-common")
|
||||||
include(":app-unpriv")
|
include(":app-unpriv")
|
||||||
include(":app-deps")
|
include(":app-deps")
|
||||||
|
include(":app-stub")
|
||||||
|
|
Loading…
Add table
Reference in a new issue