deep-linking Questions
3
I can't seem to get iOS universal links on my Flutter app working. Here are the steps I have taken to setup universal links:
Installed flutter uni_links package
Uploaded the following apple-app-s...
Hushaby asked 28/8, 2021 at 16:20
3
Solved
My app has 2 activities.
The root activity of the app is the MainActivity. If credentials are missing or invalid the user will be redirected to the LoginActivity while finishing the MainActivity.
...
Broughton asked 3/3, 2016 at 15:55
1
So I have a iOS/Android Ionic Cordova app that uses the ionic-plugin-deeplinks plugin. The plugin wasn't working when the AndroidManifest.xml had this in it:
<intent-filter android:autoVerify="...
Britton asked 12/1, 2018 at 19:22
3
So is it possible to deep link into a fragment? So my main activity launches different fragments depending on what the user clicks.
So i created a deep link for my main activity with the intent f...
Naucratis asked 30/3, 2016 at 16:40
4
Solved
I am trying to integrate deep linking with branch.io. But in order to do this. I need to extract the SHA256 Cert Fingerprints to put them in my branch.io dashboard. How Do I do this? what is my cer...
Sebrinasebum asked 14/11, 2016 at 8:38
5
Solved
I am attempting to use Firebase to pass deep links into my app that survive install.
To test this I am following the steps provided by the Firebase documentation and Firecast video here at about t...
Boxer asked 23/8, 2016 at 17:51
1
Solved
Given the following navigator hierarchy, what is the correct way to structure the linking config object? As currently constructed, when trying to open 'myapp://bizpage/1', I get this error:
The nav...
Sufficiency asked 22/7, 2021 at 2:34
1
I have an implementation of deeplink in my manifest which is working fine
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name=&qu...
Grenadine asked 31/3, 2021 at 9:27
1
I'm trying to implement an implicit deep link handling in my application, but the following code doesn't work out and onNewIntent in my single activity isn't calling, but always startDestination fr...
Youthen asked 1/5, 2020 at 15:37
3
Solved
I would like to write tests for Android app with deep link cases using UI testing framework (Espresso) - launch app using only ACTION_VIEW intent and check all views on opened screen.
But looks l...
Breadnut asked 22/3, 2017 at 12:8
2
I want to launch app using my own app but not by giving the package name, I want to open a custom URL.
I do this to start an application.
Intent intent = getPackageManager().getLaunchIntentForPac...
Ingressive asked 8/9, 2014 at 10:18
7
The situation:
You have an extensive mobile website, m.somewhere.com
On Google Play you have an Android App that duplicates the key features of m.somewhere.com, but not all of them.
Your Client/E...
Longley asked 22/1, 2015 at 18:50
5
i have tried link1, link2,link3, link4, link5, link6
Here's everything described about DeepLinking
What i want is the custom uri myapp://some_data, opens the native application installed in the d...
Towney asked 25/11, 2013 at 12:54
5
Solved
im implementing deep link is iOS. I have configured the URL Scheme in Project-Setting->Info->Url type
URL Schemes : carwash role:Viewer
when I type carwash://something the browser asks for op...
Dispersoid asked 2/10, 2019 at 11:1
2
I have my android app (react-native based) and the deep link first time when I run it while the app is not running in the background works great, but when the app runs in the background and i click...
Octuple asked 11/1, 2018 at 9:49
9
Solved
I have implemented deep linking in my app. I added this intent filter in my manifest file, and the deep linking is working.
<intent-filter>
<action android:name="android.intent.action.VI...
Socinian asked 17/9, 2014 at 7:42
2
I am trying to implement deep linking in my ios app. Whenever i post a link through FB app, the link will be the page i have create with all the meta tags set up properly. The only problem is when ...
Quipu asked 30/11, 2014 at 18:10
3
Solved
I'm using branch.io SDK in my Android app and want to make my app a default handler for branch links on Android 6 as described here(Android guide) and here(Branch.io guide)
This is my activity's d...
Mohamedmohammad asked 24/3, 2016 at 22:32
0
I am trying to implement a feature like in this question Android Deep linking: Use the same link for the app and the play store but for iOS app.
Currently, my app uses UniversalLink(example: https:...
Closegrained asked 9/3, 2021 at 17:3
2
Solved
I am Implementing Deeplink in ionic 4 application. Application in getting launched but deeplink plugin always returns false;
app.routing.ts:
{
path: 'viewdiary/:id/public',
loadChildren: () =>...
Restore asked 5/2, 2021 at 18:0
1
Solved
I'm using Capacitor (with VueJS), my deep link is working correctly, but it doesn't work if it's a redirect URL.
I want to use oauth2 to connect to Facebook. When I enter my Facebook login/password...
Poetess asked 7/3, 2021 at 8:43
5
Given the following URLS:
1. www.example.com
2. www.example.com/a
Via deeplinking, I want my app to only react on 1 and not 2.
<data
android:host="*.example.com"
android:pathPrefix="/"...
Phonogram asked 1/9, 2016 at 8:34
1
When the app is closed, I am able to get deep link url that is clicked by Linking.getInitialURL(). When the app is in the background state, then nothing is mounted. So, I am not able to get the url...
Married asked 26/4, 2019 at 9:39
1
I'm trying to add deep linking to my app, i'm using uni_links
I followed the instructions on the page, and on android emulator everything works fine- I open the app through the deep link, the snaps...
Deceleron asked 10/2, 2021 at 12:17
1
This is in a SwiftUI macOS app using the new App protocol and @main.
Usage flow:
User launches app and clicks a button which opens a particular webpage
Webpage eventually redirects to the app's UR...
Aerophyte asked 23/11, 2020 at 9:12
© 2022 - 2024 — McMap. All rights reserved.