deep-linking

How to make multiple Deep Linking in two different activity without duplicate the app android

瘦欲@ 提交于 2020-07-23 06:21:00
问题 I am using deep linking to share my active link to different applications like WhatsApp. The problem is I want to share 2 different activities. Now I am able to share them but if we assume I will share activity A. After clicking on the link, I will see my application option well that's fine and it will take me to activity A. But now if I do share to activity B.When I try to click on the link, my application will appear twice at one time, and if I choose what was previously chosen by activity

Firebase Dynamic-Links is not working for different target in same project in iOS

ⅰ亾dé卋堺 提交于 2020-06-22 19:01:47
问题 Is the behaviour of Firebase Dynamic-Links is different for Android and iOS? How can I implement Firebase Dynamic-Links for the same project for a different target in iOS? In Android, Firebase Dynamic-Links is working properly for different flavours, but in iOS Firebase Dynamic-Links is not working for different targets. For iOS, what do I have to implement for Firebase Dynamic-Links with Firebase for the same project with different targets? What is the actual reason for the difference in

Firebase Dynamic-Links is not working for different target in same project in iOS

自闭症网瘾萝莉.ら 提交于 2020-06-22 19:00:47
问题 Is the behaviour of Firebase Dynamic-Links is different for Android and iOS? How can I implement Firebase Dynamic-Links for the same project for a different target in iOS? In Android, Firebase Dynamic-Links is working properly for different flavours, but in iOS Firebase Dynamic-Links is not working for different targets. For iOS, what do I have to implement for Firebase Dynamic-Links with Firebase for the same project with different targets? What is the actual reason for the difference in

iOS deep linking is stripped out in Gmail

亡梦爱人 提交于 2020-06-10 02:25:49
问题 I'm trying to send an email with deep linking to my iOS app, using myapp:// format to open it up from email. It works (i.e. tapping on it opens the app) in any iOS mail client (Mail, Mailbox, etc.) but not in Gmail app (or even web), that strips it out leaving text only. Does anyone has a solution/alternative beside creating a web link that redirects then from browser to app? 回答1: Nope, unfortunately Gmail detects non-http/https protocols in links and strips the anchor () tag (so using data:

Deep Linking with react-navigation does not work

六眼飞鱼酱① 提交于 2020-05-29 08:38:52
问题 Actually, I'm developing an app on react-native 0.58 with react-navigation 3.1.5, and I can't make my app run properly. This is my code: app-navigation.js const MainStack = createBottomTabNavigator({ Home: { screen: Home }, Pets: { screen: Pets, path: 'spidersecurity://terque/pets' }, Notifications: { screen: UserNotifications }, UpdateUser: { screen: UpdateUser }, }); const AppStack = createStackNavigator({ MainStack: { screen: MainStack, path: '' }, PetStack: { screen: PetStack } }); const

Difference between Deep Links, Android App Links, Firebase Dynamic Links and App Indexing [closed]

天大地大妈咪最大 提交于 2020-05-23 04:41:27
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago . Here is an explanation of using deep links in navigation component: https://developer.android.com/guide/navigation/navigation-deep-link It says: An explicit deep link is a single instance of a deep link that uses a PendingIntent to take users to a specific location within your app

How do I open https URL from One Signal push-notification WITHIN my WebView react-native app?

北城以北 提交于 2020-05-17 07:27:04
问题 I've created a React-native app (tested in android) using WebView with the initial URL of my company's website. I want the user to be able to get redirected to a spesific website's product page (for example https://www.test.com/product/hoodie-with-zipper/) WHEN they clicked the OneSignal push notification with the intended launch URL included in the sent notification. The problem is, I want the user to open the URL with my WebView App, not the browsers. The features I've implemented and

Best practise for testing Android Deep Links navigation into activities

有些话、适合烂在心里 提交于 2020-05-17 07:02:47
问题 I have an activity for holding a fragment. I created this for being able to run Deep Link to the profile. Also I pass PROFILE_ID as a query parameter. So the whole deep link looks this: " tigranes://home/profile?profileId=3545664 ". class ProfileActivity : BaseActivity() { companion object { @JvmStatic fun newInstance(context: Context, profileId: String): Intent { val intent = Intent(context, ProfileActivity::class.java) intent.putExtra(ProfileFragment.PROFILE_ID, profileId) return intent } }

Firebase Deep Link Opens the Play Store instead of App

梦想的初衷 提交于 2020-05-13 14:36:09
问题 Hello there I am new to Firebase Dynamic Links and learning it to my own, I have been following this tutorial to get through it. My Code Creation method is: private void createLink() { String link = "https://play.google.com/store/apps/details?id=com.test.app&referrer="+"test1234" ; FirebaseDynamicLinks.getInstance().createDynamicLink() .setLink(Uri.parse(link)) .setDynamicLinkDomain("testxyz.page.link") .setAndroidParameters( new DynamicLink.AndroidParameters.Builder("com.test.app")

Deep Link does not work on Android

谁都会走 提交于 2020-05-12 20:36:34
问题 I'm following Create Deep Links to App Content in Android developer documentation to create a Deep Link to an Activity in an Android app. New app project, I've specified the activity exactly like in that tutorial: <activity android:name="com.example.android.GizmosActivity" android:label="@string/title_gizmos" > <intent-filter android:label="@string/filter_view_http_gizmos"> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" />