I implemented Universal Link using Firebase Dynamic Links in my iOS app. Everything is working fine until app opens from background state i.e., continue userActivity method triggered and I handled navigations. But the problem here is, if I click any Deep Link while app is in terminated state, it is opening the app without navigating to particular screen, because the continue userActivity method not called so the navigation code not executing. Can you please help to figure out solution.
application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([Any]?) -> Void) -> Bool { } not called
1.5k views Asked by Harsha At
1
There are 1 answers
Related Questions in IOS
- URLSession requesting JSON array from server not working
- Incorrect display of LinearGradientBrush in IOS
- Module not found when building flutter app for IOS
- How to share metadata of an audio url file to a WhatsApp conversation with friends
- Occasional crash at NSURLSessionDataTask dataTaskWithRequest:completionHandler:
- Expo Deep linking on iOS is not working (because of Google sign-in?)
- On iOS, the keyboard does not offer a 6-character SMS code
- Hi, there is an error happened when I build my flutter app, after I'm installing firebase packages occurs that error
- The copy/paste functionalities don't work only on iOS in the Flutter app
- Hide LiveActivityIntent Button from Shortcuts App
- While Running Github Actions Pipeline: No Signing Certificate "iOS Development" found: No "iOS Development" signing certificate matching team ID
- Actionable notification api call not working in background
- Accessibility : Full keyboard access with scroll view in swiftui
- There is a problem with the request entity - You are not allowed to create 'iOS' profile with App ID 'XXXX'
- I am getting "binding has not yet been initialized" error when trying to connect firebase with flutter
Related Questions in APPDELEGATE
- Anyone have success configuring react-native-home-indicator?
- Open View When Notification Tapped
- 'RNAppAuthAuthorizationFlowManager.h' file not found
- The code of the AppDelegate class in Xcode suddenly became colorless
- How to block screenshot in flutter ios application?
- Swift webview device token
- Swiftui redirect to another view from SceneDelegate
- How to write the new RCT AppDelegate interface with User Notifications in ios on react-native
- how to pin ssl in react native project (ios)
- Flutter to iOS - Use FlutterMethodChannel to iOS files in Objective C
- Random Issues with AppDelegate File related to move from Intel to M1 Chip
- Universal links not working after upgrading React Native to 0.0.72
- Pass custom URL scheme data from AppDelegate to ViewController in Xcode 14
- Adding a global shadow in Navigation Bar
- Carplay scenedelegate never called in SwiftUI
Related Questions in FIREBASE-DYNAMIC-LINKS
- Firebase dynamic link fallback url doesn't work with custom play store listing
- Playstore Firebase Dynamic Link
- Firebase Email signup without Firebase dynamic links
- Firebase Dynamic Link: query parameter is not being retrieved correctly
- Firebase Dynamic Links is deprecated and should not be used in new projects. Flutter alternative
- Firebase Dynamic Linking On Custom Email Domains
- Dynamic Links are not redirecting the user on appstore for downloading application on iOS Flutter
- using localhost domain in firebase emails
- Execution failed for task ':app: compileDebugKotlin'. In flutter after using firebase_dynamic_links:
- Firebase Dynamic Link does not display correctly when sent via email on iOS
- Firebase Dynamic Links Analytics API got 403 error
- KMP - How to get XCode preview working in KMP with FirebaseFirestore using CocoaPods?
- Will Firebase Dynamic Link work on app store unlisted app?
- Flutter Dynamic Links Not Functioning Correctly on iOS (Works on Android)
- Firebase Dynamic Links opens DL hierarchy and does not launch the flutter app
Related Questions in DEEPLINK
- Linking URL for whatsapp business when both whatsapp and whatsapp business applications are installed
- Ionic 4 IOS deeplinks redirect to broswer instead of the actual app
- Android-10 DeepLink is not working..., but works below android 10 versions
- How can I use deep link with animation in Android Navigation Component
- Deeplink to Spotify on a computer from Google Sheets on the web
- Android-10 DeepLink is not working, but works below android 10 versions
- application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([Any]?) -> Void) -> Bool { } not called
- How to use deeplink to relaunch app (show login page)? - iOS
- How to open twitter using url to post an image on iOS?
- Can a deeplink placed in a website, after completion of action in invoked native app, return a value to a website opened in a browser?
- iOS BranchIO DeepLink returns nil value in launchOptions in AppDelete class
- Universal Link works only on simulator
- Why are Deeplinks from browser not working?
- Send FCM message to open deeplink in my android application by Laravel
- is deeplinking into the google assistant app possible?
Related Questions in USER-ACTIVITY
- Django: Track and save to db user login/logout activities
- How can I watch for user activity from a service (session 0) in Windows 11?
- GA4 User Activity Doesn't Show Event Parameters
- What are the best practices/ways to understand user behavior for a mobile application?
- Track user activity while taking into account when the user opens in a new tab
- Tracking user activity on a webpage (ASP.Net) in an efficient way
- Need to track number of user logins in last 5 mins & last 60 mins using redis
- What is the difference between the Recording and Simple controllers in JMeter?
- Flutter Desktop User activity outside application
- Getting fenceKey null in Awareness Api
- How can I get what a user is playing on discord?
- Query grows slower as user activity increases
- User Activity - SQL Query
- Laravel Best Practice for save user activity log in database ( with considering database Performance)
- Find user's active time in a redirected app
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
The problem is that you are returning
falsefromdidFinishLaunching. That preventscontinuefrom being called.