🔧Installation
Installation Instructions
Getting Started
This package is designed to work inside Expo projects as it leverages the use of Expo Native Modules. Installation instructions have been provided for when it is used either in Expo CNG or if you have detached your project and are managing the native folders separately.
Installation in expo CNG is as easy as just directly installing the package through expo and regenerating your Android native directory. The following command installs this package.
npx expo install android-credential-manager
Once the installation has been completed, check out the following section on what digital asset linking is and how to configure it in your application.
Add the Plugin to your app.json.
Make sure you pass in your domain URL as instructed in the DigitalAsset Linking Section.
{
"expo": {
"plugins": [
[
"android-credential-manager",
{
"domainUrl": "https://guhansensam.com"
}
]
]
}
}
Now you can run your app
To run your app locally use the following commands:
npm run android
This will regenerate your native android folder and build your application
Last updated