forked from PeterCxy/OpenEUICC
Ideally, LPA software like easyEUICC should not make contain a list of hard-coded TLS server certificates, but accept any certificates signed by the SubjectKeyIds reported by the eUICC in GetEuiccInfo1/2. I described this in more detail at PeterCxy/OpenEUICC#11 As a work-around, this commit adds the GSMA SGP.26 test root certificate, so at least test certificates are accepted. This workaround will permit the use of test-SM-DP+ like smdpp.test.rsp.sysmocom.de with test-eUICCs like the sysmoEUICC1-C2T.
45 lines
No EOL
936 B
Kotlin
45 lines
No EOL
936 B
Kotlin
import im.angry.openeuicc.build.*
|
|
|
|
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.android")
|
|
}
|
|
|
|
signingKeystoreProperties {
|
|
keyAliasField = "unprivKeyAlias"
|
|
keyPasswordField = "unprivKeyPassword"
|
|
}
|
|
|
|
apply {
|
|
plugin<MyVersioningPlugin>()
|
|
plugin<MySigningPlugin>()
|
|
}
|
|
|
|
android {
|
|
namespace = "im.angry.easyeuicc"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
applicationId = "im.angry.easyeuicc_sgp26"
|
|
minSdk = 28
|
|
targetSdk = 34
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":app-common"))
|
|
} |