暫無描述

Peter Cai 64c1fa93d3 DirectProfileDownloadActivity: Handle more potential cases 2 年之前
.idea 277d3bdc76 chore: Cleanup 2 年之前
app a55fbd2767 ui: Fi styling for all DialogFragments 2 年之前
app-common 64c1fa93d3 DirectProfileDownloadActivity: Handle more potential cases 2 年之前
app-deps 06fe15bb11 app-deps: Exclude jetbrains kotlin stdlib 2 年之前
app-unpriv 7a0a593035 CompatibilityCheck: use different failure description if no SIM readers are found 2 年之前
buildSrc 50c7b4a3be refactor: Migrate to build.gradle.kts 2 年之前
gradle c6d7db3c59 chore: Upgrade gradle plugin 2 年之前
libs 5eda8c63bb lpac-jni: Use APP_LDFLAGS instead of cFlags in build.gradle 2 年之前
.gitignore 396647919f .gitignore: Add .idea/deploymentTargetDropDown.xml 2 年之前
.gitmodules 85af3bcfc0 refactor: [1/n] Introduce the lpac project and lpac_jni 2 年之前
Android.bp a53ff97ecc Android.bp: Fix building on AOSP 14 (finally) 2 年之前
Android.mk 7c21cda40c Implement Android.bp building with AOSP for lpac_jni 2 年之前
LICENSE a4b1ebdc08 relicense under GPLv2 *only* 3 年之前
README.md 1e2e3f044c Move COPYING to README.md and change owners to "OpenEUICC contributors" 2 年之前
build.gradle.kts 50c7b4a3be refactor: Migrate to build.gradle.kts 2 年之前
gradle.properties c6d7db3c59 chore: Upgrade gradle plugin 2 年之前
gradlew 3c6cffae84 initial commit 3 年之前
gradlew.bat 3c6cffae84 initial commit 3 年之前
privapp_whitelist_im.angry.openeuicc.xml cacab05892 Add privapp permission whitelist for production builds 3 年之前
settings.gradle.kts b580193624 Generate Android.bp and dependencies with LineageOS's GenerateBp plugin 2 年之前

README.md

{Open,Easy}EUICC

A fully free and open-source Local Profile Assistant implementation for Android devices.

There are two variants of this project:

  • OpenEUICC: The full-fledged privileged variant. Intended to be run as a privileged system app (inside /system/priv-app) and serve as the system LPA. This can be used to manage all kinds of eSIM chips, embedded or removable.
    • The privileged variant can be imported to build along with AOSP by simply placing this repository and its dependencies inside the AOSP tree.
    • Notes:
    • This repository contains submodules. If inclusion in manifest.xml is required, remember to set the sync-s option.
    • Only the latest AOSP release is supported for building. Older versions of AOSP are still compatible with the app itself, but it may not compile within the old AOSP trees. For older versions, consider building the app with gradle or a newer AOSP source tree and simply import as a prebuilt apk.
  • EasyEUICC: Unprivileged version that can run as a user app. An eSIM chip must include the certificate of EasyEUICC in its ARA-M field in order to grant access without system privileges. This is intended for removable eSIM chips such as those provided by eSTK.
    • Prebuilt EasyEUICC apks can be downloaded here
    • For removable eSIM chip vendors: to have your chip supported by official builds of EasyEUICC, include the ARA-M hash 2A2FA878BC7C3354C2CF82935A5945A3EDAE4AFA

Building

Make sure you have all submodules cloned and updated by running

git submodule update --init

A file keystore.properties is required in the root directory. Template:

storePassword=my-store-password
keyPassword=my-password
keyAlias=my-key
unprivKeyPassword=my-unpriv-password
unprivKeyAlias=my-unpriv-key
storeFile=/path/to/android/keystore

Note that you must have a Java-compatible keystore generated first.

To build the privileged OpenEUICC:

./gradlew :app:assembleRelease

For EasyEUICC:

./gradlew :app-unpriv:assembleRelease

FAQs

  • Q: Do you provide prebuilt binaries for OpenEUICC?
  • A: No. If you are a custom ROM developer, either include the entire OpenEUICC repository in your AOSP source tree, or generate an APK using gradle and import that as a prebuilt system app. Note that you might want privapp_whitelist_im.angry.openeuicc.xml as well.

  • Q: AOSP's Settings app seems to be confused by OpenEUICC (for example, disabling / enabling profiles from the Networks page do not work properly)

  • A: When your device has internal eSIM chip(s) and you have inserted a removable eSIM chip, the Settings app can misbehave since it was never designed for this scenario. Please prefer using OpenEUICC's own management interface whenever possible. In the future, there might be an option to exclude removable SIMs from being reported to the Android system.

  • Q: Can EasyEUICC manage my phone's internal eSIM?

  • A: No. For EasyEUICC to work, the eSIM chip MUST proactively grant access via its ARA-M field.

  • Q: Removable eSIMs? Are they a joke?

  • A: No, even though the name "removable embedded SIM" can sound like an oxymoron. In fact, there can be many advantages to these chips compared to fully embedded ones. For example, the ability to transfer eSIM profiles without carrier support or approval, or the ability to use eSIM on devices that do not and may never get the support, such as Wi-Fi hotspots.

Copyright

Copyright 2022-2024 OpenEUICC contributors

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.