Compare commits

..

3 commits

Author SHA1 Message Date
d8ef0415b2
chore: add preference item 2025-08-04 17:18:24 +08:00
42e7cb8019
feat: global es10x mss settings 2025-08-04 11:51:08 +08:00
bc4b641116
feat: es10x mss as preference 2025-08-02 13:46:29 +08:00
7 changed files with 5 additions and 18 deletions

View file

@ -52,12 +52,9 @@ internal object PreferenceConstants {
# eUICC standard
$EUICC_DEFAULT_ISDR_AID
# ESTKme AUX (deprecated, use SE0 instead)
# eSTK.me
A06573746B6D65FFFFFFFF4953442D52
# ESTKme SE0
A06573746B6D65FFFF4953442D522030
# eSIM.me
A0000005591010000000008900000300

View file

@ -104,14 +104,12 @@
<Preference
app:iconSpaceReserved="false"
app:title="@string/pref_info_app_version"
app:enableCopying="true"
app:key="pref_info_app_version" />
<Preference
app:iconSpaceReserved="false"
app:title="@string/pref_info_source_code"
app:summary="@string/pref_info_source_code_url"
app:enableCopying="true"
app:key="pref_info_source_code">
<intent
android:action="android.intent.action.VIEW"

View file

@ -27,9 +27,6 @@ android {
}
buildTypes {
defaultConfig {
versionNameSuffix = "-unpriv"
}
release {
isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")

View file

@ -23,9 +23,6 @@ android {
}
buildTypes {
defaultConfig {
versionNameSuffix = "-priv"
}
release {
isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")

View file

@ -16,7 +16,7 @@ val Project.gitVersionCode: Int
standardOutput = stdout
}
stdout.toString("utf-8").trim('\n').toInt()
} catch (_: Exception) {
} catch (e: Exception) {
0
}
@ -29,7 +29,7 @@ val Project.gitVersionName: String
standardOutput = stdout
}
stdout.toString("utf-8").trim('\n')
} catch (_: Exception) {
} catch (e: Exception) {
"Unknown"
}
@ -38,7 +38,7 @@ class MyVersioningPlugin: Plugin<Project> {
target.configure<BaseAppModuleExtension> {
defaultConfig {
versionCode = target.gitVersionCode
versionName = target.gitVersionName.removePrefix("unpriv-")
versionName = target.gitVersionName
}
applicationVariants.all {

View file

@ -1,5 +1,4 @@
APP_ABI := all
APP_SHORT_COMMANDS := true
APP_CFLAGS := -Wno-compound-token-split-by-macro
APP_LDFLAGS := -Wl,--build-id=none -z muldefs
APP_SUPPORT_FLEXIBLE_PAGE_SIZES := true
APP_LDFLAGS := -Wl,--build-id=none -z muldefs

View file

@ -1,5 +1,4 @@
LOCAL_PATH := $(call my-dir)
LOCAL_LDFLAGS += "-Wl,-z,max-page-size=16384"
# function to find all *.c files under a directory
define all-c-files-under