_XCAppClipURL not detected

Hi,

Until Xcode 12 beta 4, everything was fine but since beta 5 I don't see _XCAppClipURL having any effect. The userActivity delegate isn't called. Is anyone facing this?
Answered by beeke98 in 630233022
I found the error for me. I just used:
Code Block
- (void)scene:(UIScene *)scene continueUserActivity:(NSUserActivity *)userActivity

But I have to use:
Code Block
- (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions

for the first launch.

Maybe that helps you too :)
I am having the same issue.
Did you check the box next to _XCAppClipURL? :)
Accepted Answer
I found the error for me. I just used:
Code Block
- (void)scene:(UIScene *)scene continueUserActivity:(NSUserActivity *)userActivity

But I have to use:
Code Block
- (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions

for the first launch.

Maybe that helps you too :)
I have the same issue. Didn't notice when it started, but I tried checking/unchecking the box and even removing the entry and adding it again. It simple doesn't invoke the continuity delegate. In order to test now I have to setup the local experience and invoke with NFC tag.
Has anyone made any progress? I am facing the same issue since upgrading from Beta 4
_XCAppClipURL not detected
 
 
Q