mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-22 04:27:56 +00:00
8650ea9255
- Add expo-camera package for QR scanning - Create QRScannerModal component with camera permission handling - Integrate scanner into WalletScreen scan button - Support substrate: and pezkuwi: URI formats with amount parameter - Add address validation before opening send modal - Configure camera permissions for iOS and Android in app.json
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"expo": {
|
|
"name": "Pezkuwi",
|
|
"slug": "pezkuwi",
|
|
"version": "1.0.0",
|
|
"orientation": "portrait",
|
|
"icon": "./assets/icon.png",
|
|
"userInterfaceStyle": "light",
|
|
"newArchEnabled": true,
|
|
"splash": {
|
|
"image": "./assets/splash-icon.png",
|
|
"resizeMode": "contain",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"ios": {
|
|
"supportsTablet": true,
|
|
"infoPlist": {
|
|
"NSCameraUsageDescription": "Pezkuwi needs camera access to scan QR codes for wallet addresses and payments."
|
|
}
|
|
},
|
|
"android": {
|
|
"package": "io.pezkuwichain.wallet",
|
|
"adaptiveIcon": {
|
|
"foregroundImage": "./assets/adaptive-icon.png",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"edgeToEdgeEnabled": true,
|
|
"predictiveBackGestureEnabled": false,
|
|
"permissions": ["android.permission.CAMERA"]
|
|
},
|
|
"plugins": [
|
|
[
|
|
"expo-camera",
|
|
{
|
|
"cameraPermission": "Pezkuwi needs camera access to scan QR codes for wallet addresses and payments."
|
|
}
|
|
]
|
|
],
|
|
"web": {
|
|
"favicon": "./assets/favicon.png"
|
|
}
|
|
}
|
|
}
|