Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm building an iOS app for my boss, and I have to implement a chat. the app will run on iOS for now but in the future it's gonna run on android too, so I need a cross-platform working solution. I will develop it in Swift, on Iphone only.
once you logged in by Facebook , Twitter or email you'll be able to send messages to other users logged in the app and online. you know, waze style.
I think I cannot use iMessage since the app could be developed for Android too.
I'm trying to understand Jabber but I am totally new at it, but is it possible to make such a service in PHP?
Boss told me to look for a third party chat service, pay it and stop but I cannot find the right one.
could someone help me?
There is a really good new tool named Layer which does exactly what you are looking for.
Layer
There are many chat services availabale for both android and ios
1:Scringo
2:Firebase
3:Quickblox
i have tried with quickblox and it is really fine, easy to implement and use http://quickblox.com/
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I am looking for an idiot's guide to writing apps for wear-os. Any pointers to online resources would be great.
I have a phone app and what I want to do is mirror the app on a watch. The phone app has a UI component and a service component in its own VM. Can I use this service, running on the phone, to deliver data to the watch?
I am thinking something similar to the way maps works, I can use my phone to set a destination and navigate, then the watch starts showing me the map and directions so my phone can go in the pocket. I am not looking for just sending notifications.
Thanks for any pointers.
You can start by familiarizing yourself with building simple Wear OS apps. There are quick start projects for basic sample apps. You can also take a guided lesson for creating a Wear OS app through Codelab.
After you have familiarized yourself with how Wear OS works, you can start integrating Maps API on Wear OS. You can create a map-based wearable app that runs directly on Wear OS by Google devices.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm making an Android app using Qt(So, that includes QML & C++, I guess I must say), that's supposed to both send and get email from different email services(Mostly, It will be corporative email, so i think it must go through Microsoft Exchange server, and also Microsoft Outlook preferable).
The thing is that i didn't found any specific material nor documentation on those topics. I found good SMTP client for Qt, but that does not fully serves my needs, due to the fact that It is also needed to get those emails. I was wondering how it is even possible to do?
Does it will take some Java native code to get those, or is there any opportunity to somehow bind those with Microsoft Graph/Microsoft Outlook API? Really struggling out here.
What you're looking for is an SMTP Client.
There are various clients already written in C++. You'll need to find one that works on Android. Here's one I found on google: https://github.com/cutelyst/simple-mail
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am trying to find any open source platform using which i can implement chat-bots in my application. I have done RND on this but no luck. If some one already done something like this and implemented chat-bot in his/her application. Then please help me out here. Please send me some links using which i can implement chat-bot in my application. Thanks in advance
Basically, Chat-bots has two parts. 1) natural language processing and ii) chat backend system(like push notifications, chat status, online/offline presence, typing indicator, forwarding etc).
For first part, you can use any of NLP APIS like one from google,Microsoft etc. It totally depends on your usage case and business which apis suits you best.
For second part, you can use any of the chat backend service like Applozic or build your own. For Client side implementation, you can explore our open source client repositories here.
PS: I am co-founder at applozic.
You can use Botlibre. They provide android api with documentation for implementing a chatbot. However first you have to create a chatbot there and use credential to connect from android.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Backgrounds
I want to learn about instant messenger, both android app and server.
In my first thought, I want to use GCM to communicate. But I found the article below. By this article, GCM is not good for sending messages, and It seems that I need to build dedicated messenger server.
Instant Messaging on Android with Google Cloud Messaging
So I googled how to build instant messenger server. As a result, I found that XMPP is popular technology. But I couldn't found examples.
Finally I found source below. This example seems that includes both android and server side source, but I'm not sure this example using XMPP.
https://code.google.com/p/simple-android-instant-messaging-application/
Q1: Is there a good example source of XMPP Server?
Q2: Does anybody have experience about https://code.google.com/p/simple-android-instant-messaging-application/ ? Is this a example is good for beginner?
Any help will be appreciated.
You can try the below results.
https://cloud.google.com/appengine/docs/java/xmpp/
http://quickblox.com/developers/Android_XMPP_Chat_Sample
http://javapapers.com/android/android-chat-with-google-gcm-xmpp/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
there are already some threads on the class Telegram API, but none was really helpful.
I'm currently trying to implement it in an Android app in order to send messages through Telegram. The documentation they provide is close to incomprehensible, so do you know any good resource or guide on the API?
It seems to be necessary to instanciate TelegramApi. But this class isn't even included in the telegram .jar archive.
Does anyone have a tip on how to get started with the implementation?
Thanks.
To get stared you need to first implement Telegram AuthKey.
The documentation you need is here:
https://core.telegram.org/mtproto/auth_key
and here
https://core.telegram.org/mtproto/samples-auth_key
What this gives you is a starting point into understanding the documentation writing style for Telegram API, as well as a grasp of the basic patterns for interacting with Telegram-API
I had put together a detailed write up on the process i took here: https://stackoverflow.com/a/32809138/44080
What you should aim at is first Successfully getting your Telegram AuthKey, understanding the data you are sending and the structure of what you are receiving back.
The procedures and patterns you build along the way will be usable for further exploration of the Telegram API