ios - How to Debug Universal Link from App installed from Xcode -




i'm trying test universal links opens app doesn't link right screen. app installed xcode doesn't work @ all, 1 installed store makes impossible debug break points. how can make universal link work app installed xcode on device can debug it?

here how did it. debugging procedure found out if app installed xcode , testflight 1 able test universal links, couldn't when installed app device xcode. archived app , exported testflight after had added alert show @ points in code. installing app testflight able test why universal link opened app didn't go specific screen. don't know if there easier way this. , might useful to, here found: code written in objective-c , discovered this

if ([useractivity.activitytype isequaltostring:nsuseractivitytypebrowsingweb]) {     // stuffs } 

is somehow not same

if (useractivity.activitytype == nsuseractivitytypebrowsingweb) {     // stuffs } 

in objective-c.





wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -