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.
Related
I'd like to develop a simple mobile application for both Android and IOS, the core part of the app being push notifications.
I started using React Native, with Expo, to easily support both Android & IOS. But while approaching to push notifications I ran in multiple problems, lots of out dated contents and documentations.
I tried using Firebase Messaging but in the documentation the are some confiugurations regarding platform specific files, which i don't have in the project. I tried putting some stuff (such as package name) manually in the app.json but it didn't work in the end.
I tried Expo's push notification service but for some reason i can't even get the token (testing on a physical device) from the example code in the documentation
Reading some pages of the Firebase docs seems that using react-native-firebase should easily work for both plaforms, but in other pages it seems to be platform dependant.
If you happened to use push notifications for both android & ios, is it possible to do it in only one project using React Native and Expo? If so do you have some documentation that happened to work for you?
Thanks.
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.
Hello please I need help, I am developing a HTML5 and jquery mobile app and compiling using build phonegap.
I intend to host the app on my server, now my problem is how do I notify users of a new version of the app and at the same time allow them to update to the new version (as it is done in app store).
I have googled this for two days now and can't seem to be making any head way. Are there plugins I can use?
Suggestions will be greatly appreciated.
Thanks
I've been working with apple developers guides to develop my web app and maybe this can help you if you are working with apples "rules"/ developing for apple users:
https://developer.apple.com/notifications/
There is a guido on how you can make local notifications or push notifications. Also includes all the code you will need.
Hope it helps!
Edit: sorry just noticed that you are working for Android users. Maybe if you look on Android API or their developer program you will find something. :')
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)
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.