Build Android XMPP instant messenger and server Example [closed] - 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/

Related

Binding Qt with MAPI [closed]

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

How to implement chatbot in my mobile application [closed]

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.

Need to implement an instant messaging for iOS and Android? [closed]

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/

GCM push notification with android [closed]

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
Recently, I've tried to learn GCM and make a test application that will get the push notification for android through androids official site. However, I find the tutorial difficult for me. Are there any simple and easy tutorial for a novice like me to learn GCM push notification without the use of a server for android ?
there are lots of tutorial for GCM, here are some one :
https://developer.android.com/google/gcm/index.html
https://developer.android.com/google/gcm/client.html
http://developer.android.com/google/gcm/gs.html
http://javapapers.com/android/google-cloud-messaging-gcm-for-android-and-push-notifications/
http://www.androidhive.info/2012/10/android-push-notifications-using-google-cloud-messaging-gcm-php-and-mysql/
I hope above point will help you.
https://console.developers.google.com/
Click the above link to registered the application and On "Google Cloud Messaging for Android" API.
Copy the Browser Key and Sender/Project Key.
Follow a follwing link.
http://www.androidhive.info/2012/10/android-push-notifications-using-google-cloud-messaging-gcm-php-and-mysql/
https://developer.android.com/google/gcm/server.html

Where is the C2DM Source Code? [closed]

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
Anyone know if the C2DM source code is open? If so, where is it located?
Just to be clear, I'm not interested in any client code to connect to C2DM, and I'm not interested in any server code to push notifications to C2DM. I'm actually interested in the source of the C2DM service itself (the service that's running in the cloud, which handles coordination / registration between clients and application servers).
C2DM is closed source, However if you want to build a push service consider using XMPP. Use OpenFire XMPP Server and aSmack for implementing Push Notification.
It is not open source AFAIK, just as most Google services are not open source AFAIK.

Categories

Resources