Coder Social home page Coder Social logo

Comments (25)

arcoirislabs avatar arcoirislabs commented on August 22, 2024 5

Hi Pedro,
Thank you for your appreciation. We are currently working on the plugin. Our team is currently working on other project which is not giving us any time. But we are hoping to release it as soon as possible.

Amey K.

On 11-Apr-2016, at 11:12 PM, PedroMD [email protected] wrote:

Hey Amey!

Thanks for bringing MQTT to hybrid mobile apps :) Any update on iOS support status?

Cheers,
Pedro


You are receiving this because you commented.
Reply to this email directly or view it on GitHub

from cordova-plugin-mqtt.

fridgerator avatar fridgerator commented on August 22, 2024 3

Would it be possible to get access to the development release with partial iOS support?

from cordova-plugin-mqtt.

arcoirislabs avatar arcoirislabs commented on August 22, 2024

We are still working on the iOS version so it will take some time. Meanwhile you can use cordova websocket plugin along with mqtt.js to uniformly support the MQTT protocol.

Regards,
Amey Kshirsagar
Managing Director & Co-Founder

-----Original Message-----
From: "wangrui" [email protected]
Sent: ‎23-‎01-‎2016 09:06 AM
To: "arcoirislabs/cordova-plugin-mqtt" [email protected]
Subject: [cordova-plugin-mqtt] how support iOS (#4)

apply support iOS

Reply to this email directly or view it on GitHub.

from cordova-plugin-mqtt.

PedroMD avatar PedroMD commented on August 22, 2024

Hey Amey!

Thanks for bringing MQTT to hybrid mobile apps :) Any update on iOS support status?

Cheers,
Pedro

from cordova-plugin-mqtt.

Hephze avatar Hephze commented on August 22, 2024

when will we get the mqtt plugin for ios?

from cordova-plugin-mqtt.

arcoirislabs avatar arcoirislabs commented on August 22, 2024

@Hephze
We are currently too busy right now in other work & we have just created a scaffolding for the MQTT library in Swift. We need to work on background processing & notification part and once that's ready we will publish the iOS support. If you wish to contribute to this feature, we will welcome your pull request.
Approx timeline is shady right now

from cordova-plugin-mqtt.

zjhiphop avatar zjhiphop commented on August 22, 2024

Waiting for the iOS version.

from cordova-plugin-mqtt.

arcoirislabs avatar arcoirislabs commented on August 22, 2024

from cordova-plugin-mqtt.

wuyandenuoyan avatar wuyandenuoyan commented on August 22, 2024

connect---error:cannot find variable:userDefaultRouter

from cordova-plugin-mqtt.

arcoirislabs avatar arcoirislabs commented on August 22, 2024

@wuyandenuoyan do not use the routerConfig object if you are not using custom topic router.
like this

cordova.plugins.CordovaMqTTPlugin.connect({
    url:"tcp://test.mosquitto.org", //a public broker used for testing purposes only. Try using a self hosted broker for production.
    port:1883,
    clientId:"YOUR_USER_ID_LESS_THAN_24_CHARS",
    connectionTimeout:3000,
    willTopicConfig:{
        qos:0, //default is 0
        retain:true, //default is true
        topic:"<will topic>",
        payload:"<will topic message>"
    },
    username:"uname",
    password:'pass',
    keepAlive:60,
    success:function(s){
        console.log("connect success");
    },
    error:function(e){
        console.log("connect error");
    },
    onConnectionLost:function (){
        console.log("disconnect");
    }
})

We found a typo error. Apologies

from cordova-plugin-mqtt.

wuyandenuoyan avatar wuyandenuoyan commented on August 22, 2024

@arcoirislabs remove topic router, but connected failure.

from cordova-plugin-mqtt.

arcoirislabs avatar arcoirislabs commented on August 22, 2024

from cordova-plugin-mqtt.

Charles808 avatar Charles808 commented on August 22, 2024

Hi !

I heard that you already add temporary support for iOS.
So, do I just need to use it the same way you already explained in the main page ?

I used this plugin and work well in Android device, but no luck with iOS.
Is there any tweaks needed ?

Thank you !

from cordova-plugin-mqtt.

arcoirislabs avatar arcoirislabs commented on August 22, 2024

from cordova-plugin-mqtt.

Charles808 avatar Charles808 commented on August 22, 2024

You said you have no problem with MqTT in iOS. Are you saying the current plugin right now is already working in iOS ?

My code is hanging everytime it reached this part

cordova.plugins.CordovaMqTTPlugin.connect({...})

Any idea about this ?

from cordova-plugin-mqtt.

arcoirislabs avatar arcoirislabs commented on August 22, 2024

from cordova-plugin-mqtt.

Charles808 avatar Charles808 commented on August 22, 2024

Thank you for your advice.

I did exactly refer to the example code and It's working.
But, only working in Android Device not iOS (I'm using iPhone SE - iOS 10.3).

I think I will try the websockets + mqtt.js or try to debug the source myself then.

Thank you once again.

from cordova-plugin-mqtt.

arcoirislabs avatar arcoirislabs commented on August 22, 2024

from cordova-plugin-mqtt.

Charles808 avatar Charles808 commented on August 22, 2024

Hi, meanwhile waiting for you to look for the issue,

Do you have any references for examples how to implement MqTT Websocket in Cordova ?

UPDATED:
Found it.
From RabbitMQ website.

Thank you !

from cordova-plugin-mqtt.

mpfurnari avatar mpfurnari commented on August 22, 2024

Any updates on how I can get this to work on ios?

from cordova-plugin-mqtt.

gonzalovinas avatar gonzalovinas commented on August 22, 2024

Check on https://github.com/gonzalovinas/ios-plugin-mqtt

from cordova-plugin-mqtt.

spierala avatar spierala commented on August 22, 2024

Any news on the iOS support?
Last commit on master is from July 2017... Do you still continue development?
Thanks in advance

from cordova-plugin-mqtt.

linhtranvu avatar linhtranvu commented on August 22, 2024

Any update? Readme say about update on 20 Feb 2019 but no new update

from cordova-plugin-mqtt.

linhtranvu avatar linhtranvu commented on August 22, 2024

I decide to revive an old working MQTT plugin for Android and IOS, now working smoothly

https://github.com/linhtranvu/cordova-plugin-fastrde-mqtt

from cordova-plugin-mqtt.

cimoskill avatar cimoskill commented on August 22, 2024

doesn't work and you removed the IOS src libs. WTF there is no working solution in 20 May 2022

from cordova-plugin-mqtt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.