I know how to create website and android applications (little more than basics).
I want to create a website from where user write its email or id which he already set it in android app when he send the message from website it will be received on android application(also mine) where that email or id is already set.
Is there any tutorial on how to do this?
To be more specific I just want to communicate from website to some specific android application(mine) by using its id.
Just refer me to tutorials where I can learn this.
One way to communicate is via notifications(though not a standard way). For example, see Firebase
You could make use of app linking. You can add extras to the intent you fire from the website, which you can get when the app is opened.
Tutorial:
https://developer.android.com/studio/write/app-link-indexing.html
Related
We have a requirement for login with WhatsApp in one of my Android and iOS app, the way we do it with Google and Facebook login. We also need to get the profile data and contact list pertaining to the respective WhatsApp login so can anybody help me on this?
Kind of the point of WhatsApp is that it's intentionally secure. It's not going to allow you to get contact lists. You can use click to chat via their Whatsapp by calling https://api.whatsapp.com/send?phone=15551234567 as per https://faq.whatsapp.com/en/26000030/?category=5245251. Just look up API on https://faq.whatsapp.com for the full list of integrations with Android and iOS.
Used OTPless in one of my previous company. They provide seamless Login via Whatsapp Solution (SSO). It's free and easy to integrate with any platform.
I want to make a link to send it in a email so when the receptor clicks it send him directlly to the app (ios or android) if he has it installed or to the browser if he has not the app
Linkendin mails (for example) do that, but i don't know how.
Thanks a lot.
Edit: My app is an hibryd app developed with Cordova
Firebase Dynamic Links are links that work the way you want, on
multiple platforms, and whether or not your app is already installed.
Check this https://firebase.google.com/docs/dynamic-links/
I'm new to programming I don't know which programming language I should
use to make this database
I want to make an android app that allows users to register with an account and make a profile which contains data (points,meetings,etc) the admin account control it for each user the users I need about 100 users
I searched for that and found (rails,firebase,www.parse.com)
can I use any thing of them ?
thanx in advance
You need java for implementing android application(also there are many options like you can make app using html, JavaScript, c#). If you want to store user information of-course need web app where you save user data that admin can access. For making web app you can use Ruby on Rails also has other so many technologies. For sending messages to user ( that will send admin) you need push notification and parse.com help you to do this.
Our organization has Lync as primary channel for IM. Now that everyone is about to get a mobile phone we need a way to have the custom mobile apps display presence and initiate chat sessions. It is almost the way Facebook client does it with Facebook Messenger.
I cannot find anything anywhere that shows how to any of those. I can deal w/o presence but it is a must to start the chat.
Note I don't want to go against UCWA and write another chat client. Lync for Android is good enough. I just need to figure out what the proper Intent and parameters are.
You could always open your Lync client by opening a URL that starts with the letters "lync://".
This URL scheme works just as well on iPhones.
Sorry for my poor English. I have a problem & search for this several days :(.
I have to port an app in Android to iOS. It has a function about sharing to other user : users can send a text message to their to present current app, like : "Good app, visit ... to download".
In Android, this function allow user choose one app from all apps in device can send text message (Message, Viber, Skype, ....). It shows a popup with list of apps.
It's like this image :
It seem to be default behavior in Android, these lines of code is very simple. But in my iOS, i can't find the same way to make it ? I need your help ?
How can i get these app in my app, i have read about "url scheme" - it can help me go to other app from my app. But most important is i don't know what apps can't send text message in device.
A quite similar option on iOS that compared to intent is to use
UIDocumentInteractionController
See the documentation here:
https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIDocumentInteractionController_class/Reference/Reference.html#//apple_ref/doc/uid/TP40009304
For social sharing only (Facebook + Twitter) you can use the SocialFramework on iOS6 or above:
https://developer.apple.com/library/ios/documentation/Social/Reference/Social_Framework/_index.html
The functionality that you're describing in Android is the ACTION_SEND Intent. You can read more about using this Intent to send text content to other apps in the Android Developer Training guide entitled Sending Simple Data to Other Apps.
As you seem to want this functionality for users to share the app with other users, iOS has the Social Framework for Social Sharing, or you could use a custom UIActionSheet to present the user with your own list of options.