Which systems can be connected to the app?
Anything that exposes a REST or GraphQL API: CRM, ERP, inventory systems, your own databases, courier services, booking platforms. The connector is configured rather than programmed, and authentication can be by key, token or OAuth.
How quickly does data changed in my system show up in the app?
With a webhook, within seconds: your system notifies the platform on every change. Without one, on the scheduled interval or when the screen opens. The choice depends on how critical freshness is and how many calls your API can take.
Do I have to use Apple and Google payments?
It depends what you sell. Content or features consumed inside the app — yes, through the store system, with commission. Physical goods or services delivered outside the app — no, you can use your own card processor, Apple Pay or Google Pay. We settle the classification before building the payment screen.
What happens if my API goes down?
The app shows the last data cached locally, and write actions go into a queue with automatic retry. When the service returns, the queue drains in order. Every failed call stays in the log with its reason and timestamp so it can be investigated.
Where are the access keys stored?
On the server, never inside the build installed on the phone. The app talks to the platform and the platform talks to your API using securely stored secrets. That way a key cannot be extracted from the app package, which is what happens when it is embedded in the code.
Can I use the phone camera for scanning?
Yes. Barcode and QR scanning is a ready-made component: the user scans and the result can immediately trigger a call to your API — looking up an item in stock, validating a ticket, confirming a delivery.