forked from trent_larson/crowd-funder-for-time-pwa
- Remove legacy QR code processing with web workers - Simplify camera permission handling and initialization - Improve error handling and state management - Update to use MLKit Barcode Scanner API consistently - Fix type safety issues with error handling - Remove unused camera and worker-related code - Consolidate scanning logic into cleaner methods The changes focus on using the native MLKit scanner capabilities instead of the previous web worker implementation, resulting in more reliable QR code scanning and better error handling.
32 lines
780 B
TypeScript
32 lines
780 B
TypeScript
import { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'app.timesafari',
|
|
appName: 'TimeSafari',
|
|
webDir: 'dist',
|
|
bundledWebRuntime: false,
|
|
server: {
|
|
cleartext: true,
|
|
},
|
|
plugins: {
|
|
App: {
|
|
appUrlOpen: {
|
|
handlers: [
|
|
{
|
|
url: "timesafari://*",
|
|
autoVerify: true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
MLKitBarcodeScanner: {
|
|
formats: ['QR_CODE'], // Only enable QR code scanning to improve performance
|
|
detectorSize: 1.0, // Use full camera view for detection
|
|
lensFacing: 'back', // Default to back camera
|
|
googleBarcodeScannerModuleInstallState: true // Enable Google Play Services barcode module installation if needed
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|