deep-linking

How to create two entry points to application using deeplink?

我的梦境 提交于 2019-12-24 09:49:42
问题 I want to create an application which will have two entry points. The first will be a regular entry when the user clicks the app icon. The second one will be through a deeplink which will be sent through push notifications. I used this tutorial to build the deeplink. I tried to use the deeplink to open the second entry point using adb, however I keep getting Activity not started, unable to resolve Intent. Here is my manifest file: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android

Deep link is causing multiple instances of the app to open

折月煮酒 提交于 2019-12-24 09:08:00
问题 This issue has been addressed in similar posts, however, my situation is a little different. I have only ONE activity, and multiple fragments. I am not deeplinking into specific fragments, I am launching my one activity and then redirecting to the different fragments. The issue I am running into is that multiple instances of the app is opening when clicking on the deep link and when preventing multiple instances of the app from opening I lose the data in my intent for deep linking. I have

force open android app through schema

☆樱花仙子☆ 提交于 2019-12-24 07:09:39
问题 Here is my story. I have an android app that shares my website link. on Android devices I want to check if the user has my android app open android application and show corresponding content to that link, but if do not have my app open up that link in the browser. I use DeepLinkDispatch for this, but I have a problem, when user click on shared link, android ask client to choose which app open this link (include my app), but i want to force open my app. (if installed on device) 回答1: That is

Why android does not handle a deeplink url which has # in the path

冷暖自知 提交于 2019-12-24 06:49:40
问题 The url http://javaexample.com/#/topics is a valid url? I am try to deeplink the above url in the app using: <intent-filter android:label="@string/app_name"> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="http" android:host="javaexample.com" android:pathPrefix="/#/topics" /> </intent-filter> but the terminal throwing message - Activity not

how to avoid handling a deep link twice on android?

戏子无情 提交于 2019-12-24 06:46:04
问题 I have an android test app that handles a custom URL deep link (e.g. myapp://xxx/yyy) inside onResume as follows: if (intent.getAction() != Intent.ACTION_VIEW) return; String data = intent.getDataString(); if (data == null) return; // do stuff with 'data' which is the custom URL The problem is that this code processes the URL again and again every time the app resumes, even if it wasn't reopened using a deep link! So let's say I: run the app once using a custom url the URL gets processed

App deep linking not supported on Latest Firefox for Android 36.0

馋奶兔 提交于 2019-12-24 04:32:12
问题 I have a android app in which I have defined my intent filter to handle any http request to my website to open in the app I have built. On Chrome, I get the prompt to open in app but not on Firefox. Is this not implemented on Firefox yet? <intent-filter android:label="@string/app_name"> <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.BROWSABLE"/> <data android:scheme="http" android

Android M App Link Verification fails

橙三吉。 提交于 2019-12-24 04:07:12
问题 I define my app links as follows in AndroidManifest.xml : <intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.BROWSABLE"/> <category android:name="android.intent.category.DEFAULT"/> <data android:host="mysite.com" android:scheme="http"/> <data android:host="mysite.com" android:scheme="https"/> <data android:host="www.mysite.com" android:scheme="http"/> <data android:host="www.mysite.com" android:scheme=

WhatsApp showing alert “This item cannot be shared. Please select a different item.” for iOS app.

天涯浪子 提交于 2019-12-24 01:44:37
问题 I am developing an iOS app. In that app I have on social sharing feature and that Social sharing feature uses deep linking for sharing the url. That url sharing is working fine fine for all the apps except WhatsApp . It shows an alert popup "This item cannot be shared. Please select a different item". Below is the my code please suggest the changes I can make to it can be send on WhatsApp too. func actioncontroller(){ let actionSheetController: UIAlertController = UIAlertController(title: nil

NativeScript vue, vuex and urlhandler

自古美人都是妖i 提交于 2019-12-23 23:43:24
问题 Edit I'm using https://github.com/hypery2k/nativescript-urlhandler to open a deep link within my app - using NativeScript vue, and vuex. It seems that in order to get at the methods needed to do routing [ $navigateTo etc] this plugin needs to be set up slightly differently from the examples given in docs. import Vue from "nativescript-vue"; import Vuex from "vuex"; Vue.use(Vuex); import { handleOpenURL } from 'nativescript-urlhandler'; new Vue({ mounted() { handleOpenURL( (appURL) => {