This guide will walk you through integrating Chipi Pay into your Expo application with biometric authentication and secure storage. We’ll cover everything from installation to implementing secure payment flows.
To get started with Chipi Pay in your Expo application, you’ll need to have a basic Expo project set up. If you don’t have one yet, you can create it using:
Update your app.json to include the required permissions:
Copy
Ask AI
{ "expo": { "plugins": [ [ "expo-secure-store", { "faceIDPermission": "Allow $(PRODUCT_NAME) to access your Face ID biometric data." } ] ], "ios": { "infoPlist": { "NSFaceIDUsageDescription": "Allow $(PRODUCT_NAME) to access your Face ID biometric data." } } }}