I have developed xamarin hybrid app (html5 , css & js) for android. Now I am working on testing my android app on xamarin test cloud using xamarin ui testing. I have implemented file upload control (html5) in my app and I want to test file upload feature on xamarin cloud for all devices. Is this possible to test file upload feature using xamarin ui testing.
Thanks in advance.
What you are trying to do doesn't make sense because with Xamarin UI test the only think you can do is moving by coordinates on a webview (the only "native component" inside your Activity).
If you developed your app with an html hybrid tool try to test your UI with Protractor or similar tools.
I wrote a little post on my blog, it's in Italian but I guess that you can get what I mean looking at the pictures:
http://mpic.it/xamarin-uitest-il-nome-inganna-ci-si-puo-testare-quasi-tutto/
Related
I need to transform a Flutter app into a PWA and I'm trying to understand if this is possible without rewriting the code in AngularDart.
I did some research and I found out that first I need my Flutter App to become a Flutter Web App but nothing more.
There is also a StackOverflow question that speaks about this but answers are not complete
How to transform Flutter web app into a PWA?
I found some PWA examples with AngularDart, JS, etc... but nothing about a Flutter PWA.
*On the Flutter for Web homepage they mention PWAs but I didn't understand if it is already a feature or not.
Something to start you off.
Can we use Flutter for PWA (Progressive Web App) ?
https://github.com/flutter/flutter/issues/14868
Google I/O 2019 announced https://flutter.dev/web
Flutter on Web is still in preview, but here's a get started page:
https://flutter.dev/docs/get-started/web
since early 2020, Flutter Web support service worker.
here's the feature on GitHub for your reference.
https://github.com/flutter/flutter/pull/48344
I am developing a hybrid mobile app. I want to display notification in my application top right corner. I am using html + angularjs - front end and for backend I am using spring rest web service.
I am using cordova to just convert my frontend to native code.
Suggest me how to implement notification functionality in my frontend & backend
Note: I cannot use cordova for development. Because I cannot install it in all developers system. Only one dedicated system available with cordova installed. I can only use it for converting my html page to native
can you try this for notification alert link
I wonna start to develop an hybrid app for an application which has a instant messages as core, besides some other realtime feature.
I was having a look to Cordova and ionic. Are these technology the right election?
Is there any module or instant messages project which I can use instead to write a new one?
have a look at
``Firebase from google
They even have a fully working chat application with source code
working demo demo
Con:- Your app is tied to google firebase infrastructure
Windows Phone API has the namespace DataTransferManager to share files from internal storage.
I'm trying to use this feature on my Xamarin App.
I got a WP8 XAML page displayed via Xamarin's PageRenderer. Inside this page I call DataTransferManager.GetForCurrentView() like described in many tutorials. But at runtime the App crashes with NotSupportedException.
Please help me on how I can share files (no pictures) from my App.
Thanks
I found a solution: Upgrading the WinPhone Project to WP8.1.
So far there are no errors with PCL and 8.1.
I am working on VOIP app. I am using VOIP API. The issue which i am facing is whenever app goes in background all my sockets like SIPSocket and RTPSocket is getting closed. It seems some how i can keep those sockets open while my app goes to background.Let me know if anyone have done to solve this.
I guess you're using the VoIP app from a InProc WinRT component? You need to use it OutProc, or it won't run in the background.
See VoIP apps for Windows Phone 8 and our ChatterBox VoIP sample
The ChatterBox sample also have the necessary tooling for registering OutProc interfaces with your managed app.