Simple eUICC info for Android. Contains only one function that returns the OS version of the eUICC chip. When eUICC is unavailable, the method returns null.
This pacakge is Android only and does not support iOS, web or Windows
npm install react-native-euicc-info
import { getEuiccVersion } from 'react-native-euicc-info';
// ...
const result = await getEuiccVersion(); // Android only
if(!result) {
// eUICC chip is not available
}
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT