Branch.io (deep link activity) 没有在 iOS12 swift 上工作?
Branch.io (deep link activity) not working on iOS12 swift?
我们已经在我们的应用程序中实现了深度 link activity。它在 iOS 11 时有效。当我们通过门户网站发送 SMS 时。它在 iPhone 中收到。 更新到 iOS12 后,我的 iPhone 设备未收到 link 消息。下面是我的代码:
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
let branch: Branch = Branch.getInstance()
branch.initSession(launchOptions: launchOptions, automaticallyDisplayDeepLinkController: true, deepLinkHandler: { params, error in
if error == nil {}}
// Respond to URI scheme links
func application(_ application: UIApplication, open url: URL, sourceApplication: String?, annotation: Any) -> Bool {
Branch.getInstance().handleDeepLink(url);
return true
}
we have added branch_app_domain, branch_key and URL Type in plist also.
我们需要在我的代码中添加任何东西吗??
将设备更新到 iOS 11.2+ 后,应用的 AASA 文件在安装应用后不再可靠地下载到用户的设备上。因此,单击通用链接将不再始终如一地打开应用程序。您可以设置 forced uri redirect mode on your Branch links to open the app with URI schemes. View details of the issue on the Apple Bug report.
如有任何其他问题,请写信至 integrations@branch.io。
我们已经在我们的应用程序中实现了深度 link activity。它在 iOS 11 时有效。当我们通过门户网站发送 SMS 时。它在 iPhone 中收到。 更新到 iOS12 后,我的 iPhone 设备未收到 link 消息。下面是我的代码:
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
let branch: Branch = Branch.getInstance()
branch.initSession(launchOptions: launchOptions, automaticallyDisplayDeepLinkController: true, deepLinkHandler: { params, error in
if error == nil {}}
// Respond to URI scheme links
func application(_ application: UIApplication, open url: URL, sourceApplication: String?, annotation: Any) -> Bool {
Branch.getInstance().handleDeepLink(url);
return true
}
we have added branch_app_domain, branch_key and URL Type in plist also.
我们需要在我的代码中添加任何东西吗??
将设备更新到 iOS 11.2+ 后,应用的 AASA 文件在安装应用后不再可靠地下载到用户的设备上。因此,单击通用链接将不再始终如一地打开应用程序。您可以设置 forced uri redirect mode on your Branch links to open the app with URI schemes. View details of the issue on the Apple Bug report.
如有任何其他问题,请写信至 integrations@branch.io。