Deferred Deep Linking in iOS

We have also attempted to do this ourselves and I will try to break down the different steps here. Going back to your example, you are correct about “remembering” the device identification, and all relevant data “id=userA”. You are also correct about “sandboxed nature of iOS” which I presume it means a web page is … Read more

What are all the custom URL schemes supported by the Facebook iPhone app?

June 2014 EDIT: Here is the updated list from Facebook v12: fb://album?id=%@ fb://background_location fb://browse?semantic=%@&result_type=%d&source_type=%d&title=%@ fb://codegenerator fb://composer?%@ fb://composer?pagename=%@&pageid=%@ fb://composer?target=%@ fb://composer?view=location fb://contactimporter/?ci_flow=%d fb://discovery fb://entitycards/?ids=%@&source=%@ fb://event?id=%@ fb://event?id=%@&post_id=%@ fb://eventguestlist?event_id=%@ fb://events/list fb://eventslist?owner_fbid=%@ fb://f(.+)(\?|&)v=map(\&.*)? fb://f(.+)incorrect_map_pin(\&.*)? fb://friendsnearby fb://friendsnearby/?source=%@ fb://friendsnearby/?source=divebar fb://friendsnearby/ping?fbid=%@&source=%@ fb://friendsnearby/profile?fbid=%@&source=%@ fb://gift? fb://group?id=%@ fb://group?id=%@&object_id=%@&view=permalink fb://hashtag/ fb://hashtag/%@ fb://location_settings fb://messageComposer? fb://messaging/new fb://messaging/new?id=%@&name=%@&isPage=%d fb://messaging? fb://messaging?id=%@ fb://messaging?id=%@&%@ fb://messaging?tid=%@ fb://messaginglist fb://page?id=%@ fb://page?id=%@&source=%@&source_id=%@ fb://page_about?id=%@ fb://page_friend_likes_and_visits?id=%@ fb://page_reviews?id=%@ fb://photo?%@ fb://photo?id=%@ … Read more

Deep linking and multiple app instances

You need to do following things for your Activity in your Manifest. android:launchMode=”singleTask” This tells the system to always launch the existing instance of the Activity if it is already created. And you can handle the Intent then by overriding the method onNewIntent See http://developer.android.com/guide/topics/manifest/activity-element.html for more information.

Android Deep linking: Use the same link for the app and the play store

This workaround might work: At the server side, create a redirect rule to google play. For example, https://www.foo.com/bar/BlahBlah will redirect to https://play.google.com/store/apps/details?id=com.bar.foo&referrer=BlahBlah. At the app, register the server side link as a deep link: <data android:scheme=”https” android:host=”www.foo.com” android:pathPrefix=”/bar” /> Now, if the app is installed, the URL will be caught and the path can be … Read more

Deep-linking intent does not work

EDIT: Ok first make sure that your package is reachable by adb: adb shell am start -n com.example.simon.test/.activities.MainActivity Then to accept multiple data tags you need different intent filters (that’s the way it worked for me unlike all the other examples I’ve seen on the net). E.g.: <intent-filter> … <data android:scheme=”http” android:host=”example.com”/> </intent-filter> <intent-filter> … … Read more

Android deep link does not work if the app is opened by deep link already

In the manifest file of your project, you need to add the following to your main activity. android:launchMode=”singleTask” So, in the manifest, you would have something similar to the below: <activity android:name=”some.package.name.LaunchActivity” android:launchMode=”singleTask” android:screenOrientation=”portrait” android:theme=”@style/Theme.SomeTheme”> <intent-filter> <action android:name=”android.intent.action.MAIN” /> <category android:name=”android.intent.category.LAUNCHER” /> </intent-filter> <intent-filter> <action android:name=”android.intent.action.VIEW” /> <category android:name=”android.intent.category.DEFAULT” /> <category android:name=”android.intent.category.BROWSABLE” /> <data android:scheme=”dlscheme” … Read more

I am trying to test android deep link urls through adb to launch my app

You don’t need to specify full path to your activity, but if you want to test whether you react properly to URI in your app just specify app package: adb shell am start -a android.intent.action.VIEW -d “example://gizmos” com.myapp Also there is bug in command you provided – there should be example://gizmos not example:gizmos

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)