I have a problem of how to implement a way of sharing a news link that when the receiver of the link click on it, the link should take them to the news details activity in my app if the user does not have my app installed on their phones the link should take them to google play page.
Note:
I don't want my users to be routed to any website and
my app has a list of news activity and activity for displaying single news details.
Related
I am trying to make a website where a user can click a button or click a link and it opens the phone's native Contacts app and fills in provided information from the website. I spent my day doing research and couldn't find useful information. I found out the below line about Deep Links, where I can put
Link
and this opens the Instagram app on my phone. I am assuming I need something like this to open the Contacts app.
Unfortunately, we don't have any available deep link to open Contacts app. Apple provide the CNSaveRequest APIs to update/add/delete contact without using interface but I don't know anyway to access this API from website
I have an app for daily news, knowledge sharing, etc. In this, by clicking the share button we can share a particular news item with others in WhatsApp/Facebook/Twitter etc. If the other person clicks this URL, different web browsers are displayed to open the post. But I want my app to be listed in this list if the user has installed my app otherwise open in a web browser. How to do this in android?
Using Intents/Activities, how can I programatically deeplink / launch the Amazon Shopping app to the landing page of a particular product in Android?
Can you provide more information on what you're trying to accomplish?
Executing deep links will lead the user to the specific App and content which the deep link corresponds to. You can see more information in Google documentation - https://developers.google.com/app-indexing/android/app
I am developing an Android application with Facebook login and sharing, and also deep linking.
When the user have the APP installed, everything goes well:
Facebook login/logout
Share a link with Share Dialog (Feed Dialog when FB app is not installed)
Launch the APP with AppLinkData when clicking the news feed shared from this APP
However when the APP is not installed, the news feed just open the shared link with browser.
But I want is the news feed shared from the APP can send people to the APP's Google Play page.
Can anyone give me some hints? Thanks in advance!!
Here is want I have done for the application:
I created a New App in Facebook developer page. I enabled Single Sign On & Deep Linking in Setting page
http://i.stack.imgur.com/KM9tn.png
I added custom URL scheme in AndroidManifest.xml
I've read the Linking to your app from news feed section from Facebook below:
https://developers.facebook.com/docs/android/share#applinks
Saying when a person clicks on a story generating by the APP, Facebook will check App installed? and Mobile Only?.
How can I set Mobile Only for my Android application?
I would greatly appreciate it if you kindly give me some feedback.
Thank you very much!
Deeplinks do not come with an automatic fallback. If a user clicks one and does not have the app installed, then they will either see a blank page or an error message.
If you want your deep links to redirect to the Google Play Store, you can set up fallbacks using Facebookâs App Links protocol on your website. In this case the fallback would be the Google Play store. According to App Links, Facebook should respect that protocol and fall back to the Google Play Store.
https://developers.facebook.com/docs/android/share#linking
I am creating native android application with image gallery.
I want to create a Google plus button for each of my images. When user press +1 I want to publish a post on his wall:
user_name like's image_name on my_app
And I wish that when clicking on this post it will do the follow:
clicking on user_name will bring you to the users page.
clicking on image_name will bring you to my application and show you this image.
clicking on my_app will bring you to my application, main page.
*If you don't have the app installed it will send you to Google play store, to download it.
How do I do this?
Is it possible?
With the new Google+ Sign-In, you can now create an Interactive Post for your users. This behaves much the same as a normal Share, however, you can add a call to action button (allowing users to "listen" or "RSVP") and a deep link, which will bring a user from their Google+ Stream and into your app. Also, these posts can be customized with pre-filled text and up to 10 pre-filled recipients.
Learn more at: https://developers.google.com/+/features/interactive-posts.