firebase-dynamic-links

ShortDynamicLink is not generating short link for dynamic links

女生的网名这么多〃 提交于 2019-12-10 13:18:26
问题 creating a dynamic link DynamicLink dynamicLink = FirebaseDynamicLinks.getInstance().createDynamicLink() .setLink(Uri.parse("http://shaharapp.in/")) .setDynamicLinkDomain("https://cuh8g.app.goo.gl/") // Open links with this app on Android .setAndroidParameters(new DynamicLink.AndroidParameters.Builder().build()) // Open links with com.example.ios on iOS .buildDynamicLink(); dynamicLinkUri = dynamicLink.getUri(); after this, i get a long dynamic link. passing this dynamicLinkUri to

Firebase dynamic deep link arrives nil after install

人走茶凉 提交于 2019-12-10 06:21:29
问题 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 the 12min 40s mark. The steps are as follows: First I delete the app from my device. Then I press the link to open the app store. Then I run my app from xcode. Expected: The dynamicLink.url property will be equal to "https: //www.example.com/data/helloworld" in application:openURL Reality: The

Not getting Firebase Dynamic Link of users that download app from Playstore

我是研究僧i 提交于 2019-12-08 15:04:22
问题 There are 2 cases in Playstore App Normal Installation (Playstore shows OPEN Button) Installation from Dynamic Link (Playstore shows CONTINUE Button) Test Case: Download app from Firebase dynamic link, After installation Playstore will show CONTINUE button: There are 2 options from where user can open app after successful installation . Open app by clicking on CONTINUE Button -> App will get the link, everything works as expected Open app from LAUNCHER ICON , and not from playstore -> App

After opening iOS app “continue userActivity:” method isn't called - Firebase dynamic link

≡放荡痞女 提交于 2019-12-08 12:39:47
问题 I have successfully integrated Firebase dynamic links and when I click on dynamic link then my app is opening. The issues I'm facing is after opening app from dynamic links, continue userActivity: method should be called, but nothing happens. I've checked the all the possible thing but didn't recognised the issue. I've searched the SO for this but none of the answer helped me. My Code: func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions:

Issue with Firebase dynamic links

人走茶凉 提交于 2019-12-07 19:53:16
问题 We are trying to use dynamic links for deep linking. The link is behaving normally. However, on click, it is not hitting the userActivity restorationHandler method in the app. We have followed all the steps mentioned in the document, and the output of diagnostics is below ---- Firebase Dynamic Links diagnostic output start version 12.1.1, model iPhone Current date 2018-12-13 05:08:44 +0000 Device locale en-IN (raw en_IN), timezone Asia/Kolkata Specified custom URL scheme is dev.XXX.xxx and

Firebase Dynamic Link not working if app is CLOSED

馋奶兔 提交于 2019-12-07 19:27:02
问题 Firebase dynamic links are working well both after installation and whenever the app is in the background. However, if it's coming from the inactive state (app is closed), it doesn't work. Both applicationOpenURL and applicationUserActivity is not being called. Anybody experienced this before? I've been trying to solve this for days now, back and forth with Firebase's tutorial. I'm sure I'm just missing something here. 回答1: Put this in didFinishLaunchingWithOptions //Handle dynamic links when

com.google.android.gms.common.api.ApiException while making shorturl

ⅰ亾dé卋堺 提交于 2019-12-07 13:43:02
问题 I'm using firebase dynamic links, when I'm trying to getShortLink its crashing with FATAL EXCEPTION called com.google.android.gms.common.api.ApiException please help me Here is my code private void buildReferralLink() { //https://j8b99.app.goo.gl/ String domain = "j8b99" + ".app.goo.gl"; DynamicLink.Builder builder = FirebaseDynamicLinks.getInstance() .createDynamicLink() .setDynamicLinkDomain(domain) .setAndroidParameters(new DynamicLink.AndroidParameters.Builder() .setMinimumVersion

Pass multiple params via Firebase Dynamic links Android

和自甴很熟 提交于 2019-12-07 05:54:13
问题 I've used Firebase Dynamics link and it can open my app, go to play store or go to an URL. But when I pass some parameters through link, I can only get first parameter. Here's my dynamic links: https://xx.app.goo.gl/?link=http://xx.com/?usn=abc&pass=def&apn=com.xx&afl=http://google.com And I used this code to get the link: // Build GoogleApiClient with AppInvite API for receiving deep links mGoogleApiClient = new GoogleApiClient.Builder(this) .enableAutoManage(this, this) .addApi(AppInvite

Issue with Firebase dynamic links

自古美人都是妖i 提交于 2019-12-06 14:26:15
We are trying to use dynamic links for deep linking. The link is behaving normally. However, on click, it is not hitting the userActivity restorationHandler method in the app. We have followed all the steps mentioned in the document, and the output of diagnostics is below ---- Firebase Dynamic Links diagnostic output start version 12.1.1, model iPhone Current date 2018-12-13 05:08:44 +0000 Device locale en-IN (raw en_IN), timezone Asia/Kolkata Specified custom URL scheme is dev.XXX.xxx and Info.plist contains such scheme in CFBundleURLTypes key. AppID Prefix: XXXX, Team ID: XXXX, AppId Prefix

Firebase Dynamic Link not working if app is CLOSED

依然范特西╮ 提交于 2019-12-06 11:22:30
Firebase dynamic links are working well both after installation and whenever the app is in the background. However, if it's coming from the inactive state (app is closed), it doesn't work. Both applicationOpenURL and applicationUserActivity is not being called. Anybody experienced this before? I've been trying to solve this for days now, back and forth with Firebase's tutorial. I'm sure I'm just missing something here. Put this in didFinishLaunchingWithOptions //Handle dynamic links when app is CLOSED let activityDic = launchOptions?[.userActivityDictionary] if let isActivityDic = activityDic