I want to implement chat functionality in iPhone application. Please suggest me. Can we use xmppframework?
Thanks in advance.
Installation:
you can download the framework from here
http://code.google.com/p/xmppframework/source/checkout using a mercurial client for your OS.
or
download files individually from
http://code.google.com/p/xmppframework/source/browse/
After this use
http://code.google.com/p/xmppframework/wiki/iPhone
to install the sdk
For the mercurial client:
https://www.mercurial-scm.org/downloads
Usage:
http://code.google.com/p/xmppframework/wiki/IntroToFramework offers some good instructions on use
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.
I wanted to ask you about the desktop part of the technology.
If the documentation is about how ordinary developers can inject native code into a desktop application (WPF, Mac, Linux) like buinding or as a custom plugin or something similar
Best regards, Vadim
You have all the same options for platform code on desktop that you do on mobile:
Adding it directly to the native runner app that's created by flutter create
Writing a plugin
FFI
I'm a web developer, new to Ionic.But I can't find out how can I update my app on the server,like a website,and without having user redownload the app.Is there any solutions?
Thanks!
There's an available plugin you can use Cordova-hot-code-push
This plugin provides functionality to perform automatic updates of the web based content in your application.Basically, everything that is stored in www folder of your Cordova project can be updated using this plugin.
supported platforms: Android 4.0.0 or above.
iOS 7.0 or above. Xcode 7 is required.
It has a great wiki too.
Yes, as of recently there is a solution for this. Ionic calls it Ionic Deploy, and you can see the official documentation about it here.
However, one must note that this is still in Alpha version and they don't recommend it for production, but since they're very apt in shipping new features, I'm sure this will be even production ready very soon.
I have to communicate with iOS devices on windows. I'm looking to something similar to libimobiledevice which allows system services that iTunes is providing by default, such accessing to music, photos and etc. What's the best practice or library to do so? What about dependencies, such as iTunes and external libraries that have to be shipped along with the program?
Check out Bonjour:
https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/NetServices/Articles/about.html
The Unofficial port for libimobiledevice could be an answer but it is not updated regularly :
http://www.bingtech.net/wordpress/2011/03/189/
You can find a Windows build of imobiledevice here: http://quamotion.mobi/iMobileDevice/
Hope it helps,
Frederik.
i have googled alot on how to create a mobilesubstrate plugin for iPhone but couldnt get any basic tutorial for that. Anybody having any knowledge of how to do this? I am looking for a basic understanding of it.
Thanks :)
This script automatically setup iphone toolchain for you, runs on Mac OS X, thanks to #rpetrich. http://gist.github.com/403608
First, remember to
apt-get remove iphone-gcc on the iphone
before running this script on your mac, if you don't want to collect headers files from iphone sdk, follow the Darwin arm part of the script and I think you should be good.