2024-04-03 00:04:38 +05:30
2024-04-03 00:04:38 +05:30
2024-03-29 20:25:26 +05:30
2024-03-06 18:43:55 +05:30

Blockchain Powered Local Profile Assistant App

This project is the codebase for a LPA app developed to create eSIM based wallets which allow users to interact with blockchain. Right now this app only works on android. iOS support is planned in the future.

Project setup

This app is a react-native based app with java bridges to interface between android core API's and the react-native component. Basic setup instructions for react-native projects along with dependencies can be found here Please follow this guide exactly.

Please run the following command if you run into missing package dependencies during intial build.

npm install

The deployed code is tested on macOS 14.1.1 for Android OS. Refer to package.json for more details on versions of tools used for development and testing.

Minimum API Level required is 29

Permissions required for Android

List of core android services used in the project:

Add these permissions in your Android Manifest:

    <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
    <uses-permission android:name="android.permission.READ_PHONE_NUMBERS"/>
    <uses-permission android:name="android.permission.READ_PRECISE_PHONE_STATE"/>
    <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"/>
    <uses-permission android:name="android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"/> 

eSIM services provided by the EuiccManager API needs either carrier privileges for regular apps or READ_PRIVILEGED_PHONE_STATE for system apps on android. For more details about these permissions reference

Description
No description provided
Readme MIT 24 MiB
Languages
Java 55.1%
TypeScript 25.1%
JavaScript 10.4%
Kotlin 3.3%
Objective-C 2.4%
Other 3.7%