Простой сценарий. У меня есть приложение с настройкой схемы URL.
например,
infoplist содержит типы URL массива
Этот массив содержит словарь с 2 ключами: идентификатор URL (строка) и схемы URL (массив)
Идентификатор равен идентификатору пакета, установив его в $ (PRODUCT_BUNDLE_IDENTIFIER).
URL-схемы в этом случае содержат только 1 значение «deeplink-test». В моем AppDelegate у меня есть приложение: openURL: options: реализован метод, который возвращает true.
Теперь, когда я захожу в Safari (на симуляторе или устройстве) и набираю «deeplink-test: //», Safari спрашивает меня, хочу ли я открыть приложение. Я выбираю да, но диплинк не вызывается. didFinishLaunchingWithOptions также возвращает true. Любая идея, почему метод openURL делегата не вызывается? Раньше это работало некоторое время назад, но недавно я заметил, что наши глубокие ссылки больше не обрабатываются правильно. Так что приложение откроется, но метод делегата не вызывается.
Я создал новый проект с той же реализацией, где он работает. Может быть, я использую Pod, который вызывает проблемы?
Бобы:
pod 'Apollo'
pod 'ReactiveObjC'
pod 'Underscore.m'
pod 'Masonry'
pod 'Locksmith'
pod 'INTULocationManager'
pod 'GoogleAnalytics'
pod 'GoogleTagManager'
pod 'GoogleAppIndexing'
pod 'GoogleSignIn'
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Messaging'
pod 'HockeySDK'
pod 'Adjust'
pod 'UIDevice-Hardware'
pod 'Accengage-iOS-SDK'
pod 'MultiDelegate'
pod 'SwipeView'
pod 'DZNEmptyDataSet'
pod 'FBSDKLoginKit'
pod 'PINCache'
pod 'FCFileManager'
pod 'SnapKit'
pod 'GoogleMaps'
pod 'GooglePlaces'
pod 'RSKGrowingTextView'
pod 'FlexiblePageControl'
pod 'SwiftyBeaver'
pod 'Crashlytics'
pod 'Fabric'
pod 'React', :path => '../../node_modules/react-native', :subspecs => [
'Core',
'RCTText',
'RCTNetwork',
'RCTWebSocket',
'RCTLinkingIOS',
'RCTImage',
'RCTAnimation',
'RCTActionSheet'
]
pod 'Yoga', :path => '../../node_modules/react-native/ReactCommon/yoga'
pod 'CodePush', :path => '../../node_modules/react-native-code-push'
pod 'RNDeviceInfo', :path => '../../node_modules/react-native-device-info'
pod 'react-native-cookies', :path => '../../node_modules/react-native-cookies'
pod 'react-native-navigation', :path => '../../node_modules/react-native-navigation'
pod 'react-native-video', :path => '../../node_modules/react-native-video'
РЕДАКТИРОВАТЬ - добавлен исходный код plist:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>xx.xxx.xxx</string>
<key>CFBundleURLSchemes</key>
<array>
<string>deeplink-test-again</string>
</array>
</dict>
</array>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>${PRODUCT_NAME} ${BUNDLE_DISPLAY_NAME_SUFFIX}</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIcons</key>
<dict/>
<key>CFBundleIcons~ipad</key>
<dict/>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>11.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>105</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>
<string>xx.xxx.xxx</string>
<key>Kits</key>
<array>
<dict>
<key>KitInfo</key>
<dict/>
<key>KitName</key>
<string>Crashlytics</string>
</dict>
</array>
</dict>
<key>FacebookAppID</key>
<string>xx.xxx.xxx</string>
<key>FacebookDisplayName</key>
<string>xx.xxx.xxx</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>Icon files (iOS 6)</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>icon.png</string>
<string>icon@2x.png</string>
</array>
<key>UIPrerenderedIcon</key>
<true/>
</dict>
</dict>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>comgooglemaps</string>
<string>bma4sreceiver</string>
<string>xx.xxx.xxx</string>
<string>fbapi</string>
<string>fb-messenger-share-api</string>
<string>fbauth2</string>
<string>fbshareextension</string>
</array>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>xx.xxx.xxx</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
<false/>
</dict>
<key>facebook.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
<false/>
</dict>
<key>fbcdn.net</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
<false/>
</dict>
<key>localhost</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
<key>NSCalendarsUsageDescription</key>
<string>xx.xxx.xxx</string>
<key>NSCameraUsageDescription</key>
<string>xx.xxx.xxx</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>xx.xxx.xxx</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>xx.xxx.xxx</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>xx.xxx.xxx</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>xx.xxx.xxx</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>xx.xxx.xxx</string>
<key>UIBackgroundModes</key>
<array>
<string>remote-notification</string>
</array>
<key>UILaunchStoryboardName</key>
<string>xx.xxx.xxx</string>
<key>UIPrerenderedIcon</key>
<true/>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UIRequiresFullScreen</key>
<true/>
<key>UIStatusBarHidden</key>
<false/>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<true/>
</dict>
</plist>