This is gonna be my first app in android. I have add some experience coding in java and C++. Now I need to create an app and i would like to add chat functionality similar to Whatsapp. Could this be done with Quickblox ( Also push notifications are needed for Google cloud Messaging)... ?
Yes, all features that you will need for your app such as chat, push notification, locations, create your own custom structure of data. All this modules will help You with your app. You can find all examples which demonstrate features of QuickBlox platform in this repository (https://github.com/QuickBlox/quickblox-android-sdk)
More recently, our mBaas system provide video chat that help you to add more cool things in your app (https://github.com/QuickBlox/Sample-VideoChat-android)
Related
I'm new to dart and flutter.
And I want to know how to create a website, iOS app and Android app with same backend/business logic using flutter.
Little guidance will be appreciable.
Thanks!
You can Create a Powerful Backend Using Firebase as a Backend service https://firebase.google.com/
As I'm Doing this for my Client it's very easy with Firebase.
In Firebase Settings Tab
Click on Add App
you Can connect all the Service and access Database from any platform you just need link Them in Firebase.
Firebase Provide Option to Add All Three Platforms
Connect Android App
Connect IOS App
Connect Web Version
When i Starting it was mystery for Me... :D
Hope This would help you.
Helpful resource for learning
https://www.youtube.com/channel/UC2d0BYlqQCdF9lJfydl_02Q
https://www.youtube.com/channel/UCsBjURrPoezykLs9EqgamOA
As a learning path to building cross-platform apps, I would start with the Flutter codelabs, in this order:
Write your first Flutter app, part 1
Write Your First Flutter App, part 2
Write your first Flutter app on the web
Then I would look at Firebase for the backend: Add Firebase to your Flutter app and Firebase for Flutter.
For a nice introductory code example of a multi-platform app (Android, iOS, web, but without backend added) see the
Provider Shopper sample.
Lastly, I find the Flutter Widget of the Week series very useful for learning about the purpose and capabilities of each widget.
You have to take care of few things:
Your UI must be responsive in nature, for that use MediaQuery
Render your UI based on the Platform.
Always check the packages you are using must support flutter web too, because there are a lot of plugins that don't supports flutter web yet.
I'm new to Xamarin Forms, local notifications and push notification can be implemented in the cross platform or is it a device specific feature in Xamarin forms .and how?
Lots of down votes for the question though I shall give some leads on basis of how did I done this.
I used Plugin.PushNotification which can get from NuGet Gallery. It can be used for Xamarin.Forms also but only support Android & iOs now.
For Android you will needed to configure Firebase Cloud Messaging and for iOs you need to done with APNs. You can refer below links for configuring Android & iOs with FCM & APNs respectively.
Refer this youtube video for Android FCM configuration
Refer this youtube video for iOS APNs configuration
After that you will need to do some works on you project.
Every steps are detailed on this link.
Don't forget to put some efforts on your queries before asking any question on SO.
Hope this will helps you. Happy Coding.
I want to use telegram APIs in order to develop chatting feature in My Existing Android App.
I am not getting how to implement.
I think, it is a good idea to take a look at the Telegram Database Library (Beta) from here TDLib (Russian, but translate with Google) and the Java doc (English) from here.
The information is a little poor yet, but I think you can understand it.
Use this API.
Refer to the Getting Started section to integrate Telegram in your app.
I am newer to Android but am trying to add a chat feature within my application. In terms of areas I have tried they include pre-built systems such as Quickblox and Scringo, but each are highly inflexible and also require employing their user authentication sources as well, which are not needed.
Is there a general location for resources to build a chat feature that will also persist past messages for viewing as well? Or suggested services that could help handle sending messages?
(Any guidance is greatly appreciated)
I am trying to develop an Android app for social media sharing. I know how PubNub uses cloud servers to share data with lightening fast speed and a security. I want to use it in my app.
If there is an API, let me know how it works.
Here is the PubNub Android SDK on github
And the official PubNub Android docs
Most of the details for how to use it properly are right there on the README. There's even sample apps for you to browse through if you need further details.