applinks

Is there a way to hide “Back to Safari” from status bar in iOS9?

梦想的初衷 提交于 2019-12-28 14:09:09
问题 How to hide this < Back to Safari from status bar programmatically? I'm getting it in my app – as I'm going out from my app if a user wants to login with their Facebook account. Here's the scenario for which I don't like (want) "Back to Safari" in my app. At first launch of the app (and user not logged in). User choose Login with Facebook option. Facebook iOS SDK comes into the picture, it takes me to the Safari. I logged in and back to the app But, there's "Back to Safari"... It shouldn't be

iOS 9 custom URL scheme not working

一世执手 提交于 2019-12-25 09:57:54
问题 My web application is making use of iFrame to launch a App using custom URL scheme. With the latest release iOS 9 this has stopped working. On going through articles online, I have some understanding now that Universal Links are way to go about it or else we can use below hack/code to still launch the app(this results in a alert message asking user to Open/Cancel the call, which doesn't look nice). window.location = app:// Wanted to check with experienced people here, if there is any other

Facebook Sharing with image and Applinks

萝らか妹 提交于 2019-12-25 06:34:25
问题 I stuck on the Facebook sharing.. All I want is to post an image from my iOS app, with text and applink, that can redirect users to installed app or App Store. App link works fine, I described some metatags like this: <meta property="al:ios:url" content="cubeDev://" /> <meta property="al:ios:app_store_id" content="1054030..." /> <meta property="al:ios:app_name" content="My app name" /> <meta property="al:web:should_fallback" content="false" /> <meta property="og:image:width" content="50" />

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=

Can iOS universal app link support multiple apps using the same domain?

倖福魔咒の 提交于 2019-12-24 00:26:20
问题 Background: Building a vanilla app for multiple clients. Same code base with different bundle ids, i.e.: com.company.client1 com.company.client2 Want to support all client builds with the same universal app link, i.e.: company.com/app/path Tried to add this to the 'apple-app-site-association' file 'apple-app-site-association' file: {"applinks": {"apps": [],"details": [ {"paths": ["/app/*"],"appID": "XXXXXXXXXX.com.company.client1"}, {"paths": ["/app/*"],"appID": "XXXXXXXXXX.com.company

Multiple subdomain support with App Links

浪尽此生 提交于 2019-12-23 08:33:45
问题 I've been reading the docs for supporting app links for android and the website my app supports works with subdomains but there's too many subdomains and they are built dynamically. I was wondering if there is a way to support many subdomains without having to specifiy them all in the intent-filter tag. Here is the link to the example from google: http://developer.android.com/training/app-links/index.html#request-verify The example is in the Supporting app linking for multiple subdomains

How do you use app links with facebook share button in ios to deep link?

末鹿安然 提交于 2019-12-20 06:31:48
问题 I am trying to create posts to facebook from my app using the fb share button. I want this post to link back to the app using applinks. I don't understand how to add data to the facebook url so it knows where to direct the app to when the link is clicked. FBSDKShareLinkContent * content = [[FBSDKShareLinkContent alloc] init]; content.contentURL = [NSURL URLWithString:@"https://fb.me/123456789"]; FBSDKShareButton * button = [[FBSDKShareButton alloc] init]; button.shareContent = content; [self

Branch Deep link not opening application

末鹿安然 提交于 2019-12-18 11:44:40
问题 I have been trying (unsuccessfully) to use Branch to implement deep linking into our iOS application. The Branch URL redirects directly to App Store and never attempts to open the application. I must be missing something. What I've done: Included Branch SDK (CocoaPods) Added branch_key to application plist Added URL Scheme to URL Types in application plist Enabled Associated Domains in both the project and the App ID in the developer console. Ensured that the entitlements file is included in

App links intent filters in assetlinks.json not working on Android

谁都会走 提交于 2019-12-17 22:23:30
问题 My app defines the intent filters to handle URL's from my site defined by <intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.BROWSABLE"/> <data android:host="www.host.com" android:scheme="http"/> </intent-filter> <intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent

Unable to get Applinks (with Rivets component) working on Android

喜欢而已 提交于 2019-12-13 05:59:12
问题 I am currently tring to setup deep linking in Android apps. First, I would like to as if the app be run from any website (meaning host - "example1.com" or "example2.com") if they have the meta tags set correctly? This is how my test web page looks like: <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Jakubs Applinks Test</title> <meta name="description" content="Jakubs Applinks Test"> <meta name="author" content="Jakub Holovsky"> <meta property="al:android:url" content=