Setup Tobias for Android, iOS, and OpenHarmony
mainBefore using Tobias, you must configure platform-specific settings:
Android & iOS
Configure a url_scheme in your pubspec.yaml. This is a unique string used to relaunch your app. Note: The underscore _ character is invalid in the scheme.
iOS Specifics
- You must configure and pass a Universal Link. Refer to the Alipay documentation for details.
- If you encounter
utdidissues on iOS, enableno_utdid: truein yourpubspec.yaml.
OpenHarmony
In your module.json5 file, add alipays to the module.querySchemes array:
{
"module": {
"querySchemes": [
"alipays"
],
}
}