на андроиде, но не на айосе? Ничего такого не добавлял, хотел просто протестить то, что дано в docs.flutter.dev/development/ui/navigation/deep-linking
Какой линк сделал?
<intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="https" android:host="rc.missed.com" /> </intent-filter> adb shell am start -a android.intent.action.VIEW \ -c android.intent.category.BROWSABLE \ -d "https://rc.missed.com" вот это работает <key>FlutterDeepLinkingEnabled</key> <true/> <key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleTypeRole</key> <string>Editor</string> <key>CFBundleURLName</key> <string>rc.missed.com</string> <key>CFBundleURLSchemes</key> <array> <string>https</string> </array> </dict> </array> xcrun simctl openurl booted https://rc.missed.com а это нет
Обсуждают сегодня