Using a dotnet maui project im trying to scan barcodes with a zebra MC33 is there any tips or Sdk's that I can use ? ( without focusing an input please )
I did try a DW Xamarin zebra scan prject and it was pretty what i wanted but when i tried importing the file to my maui project i failed so here we are
I made a small app with Intends based on the Demo Maui app and a zebra sample app. It works with the TC21 and is written in .Net6 Maui.
https://github.com/abeginnDev/ZebraDatawegeSampleMaui
The small Project is based on:
https://pietromaggi.com/2018/07/07/xamarin.forms--freshmvvm--datawedge/
There is a sample project from Venkata Vimjam on GitHub. I tried it on a Zebra tc21 and it works. Never got it to run like it is described on the zebra documentation for Xamarin.
That's the Link:
https://github.com/vvimjam/MAUIZebraDataWedge
I've created barcodescan application by using DataWedge on .net MAUI. You can build it without EMDK.
Related
I have been searching all over and I have not found any good documentation in how can I create a custom ionic capacitor plug-in with an external SDK (Brother printer SDK). This SDK is located locally in my computer.
The Error I keep getting is the following.
No such module 'BRLMPrinterKit'
I'm building the plug in with
npm init #capacitor/plugin#latest
I follow the steps found in
How to embed third party framework on ionic capacitor custom plugin?
I was expecting to use the Brother printer SDK in the custom capacitor plug in. Any tip in how can I implement a custom plug in with any framework?
I don't know very well about ios plugins for ionic, but I recommend you to use this post to create the plugin step by step (I used it for android plugins):
https://devdactic.com/build-capacitor-plugin
I think you can use this other post to solve that specific issue: How to import framework into XCode project?
I know it's not the best answer, but I hope it helps.
We have planned to start our new mobile app using the cordova+ ionic2 framework. its saying that the angular2 in now in bet release and it will be released to production after 2 month. But the team itself saying that even though the reease is i beta we can start the project. But i don't see much tutorial how can integrate the ionic frameork should integrate in my linux machine. Also please guide me the appropriate editor in linux to work in ionic2 with angular2.
Follow the steps in the Ionic2 tutorial http://ionicframework.com/docs/v2/getting-started/installation/. I just upgraded my project to work with the latest version of Ionic2. They are using the Release Candidate 1 of Angular2 (as of this writing), and they are continuously upgrading. It is fairly easy to get a project up and running following the instructions on their site.
I am using WebStorm on my computer (they also have a version for Linux).
We are building an hybrid app in Ionic2/Angular2 and typescript and we are trying to write functional test automation of the same using Appium + Specflow(as test language) in C#.
Is it possible to automate Ionic app using Appium(without protractor) only??
I am planning to keep functional test project independent of development environment. Hence not planning to use Protractor + Appium
I was trying to automate ionic hybrid app using Appium only but facing issues(issue1 and issue2).
Help would be appreciated. Thanks in advance.
Perhaps reason why your elements picked are not recognized is that you have not enabled autowebview. By default autowebview is set to false. I recommend to add in your capabilities appium file a 'autowebview = true'
I am using Ionic framework for my project. As per ionic build I have used the build command for windows:
ionic build windows
After the build I get the file structure as below:
The issue is I'm not able to figure out were do I get the .XAP file inside the platform/windows folder and I'm completely new on Windows build.
I'm just posting this as an answer, to which we came in the comments under the OP's question:
Add the windows phone platform: ionic platform add wp8.
Build for wp8: ionic build wp8.
The file CordovaAppProj_Debug_AnyCPU.xap is the one you're looking for.
However, I would like to turn your attention to these few posts:
http://blog.vjrantal.net/2015/01/08/experiences-with-ionic-on-windows-phone-8-1/
http://blogs.msdn.com/b/msdn_answers/archive/2015/02/10/running-cordova-apps-on-windows-and-windows-phone-8-1-using-ionic-angularjs-and-other-frameworks.aspx
http://appfoundry.be/blog/2014/10/16/ionic-windows-phone
which basically confirm what the official Ionic team says that the platforms wp8 and windows in general are not yet fully supported; but they hope they soon will be.
I've a problem to deploy Codenameone application in some some devices like Samsung.
I tried to create application in manual mode without have an "theme.res" file. I added a form manually and ran it in Samsung device that hasn't OS (just support MIDP 2.0) and it ran successfully.
I tried to add some forms to "theme.res" file and work with it (you know, it's so simple to work with it). So after that I ran it in Samsung device and I got error.
What's the different between them?
Why can't it run with "theme.res" file? What's the problem?
Try to do Display.init(this) before getting resource.
Try loading with the correct path from the src file of your project "/resource.es"
Some devices can't run the application in which designed by codenameone or lwuit. You should hard coding all of your design either with codenameone or lwuit theme.
Or you can choose manual template on codenameone wizard to develop your application.