cobaltians / Cobalt

Cobalt is a web and native framework to create mobile applications that can mix web technologies and native technologies.
http://cobaltians.org
MIT License
71 stars 14 forks source link

Move native pubsub plugin to cobalt core #159

Open ggendre opened 5 years ago

ggendre commented 5 years ago

CobaltActivity.java

CobaltFragment.java

CobaltWebLayerFragment.java

ggendre commented 5 years ago

Avant :

{ type : "plugin", name : this.name, action : "subscribe", channel : "hop", callback : "callback_id" }
{ type : "plugin", name : this.name, action : "unsubscribe", channel : "hop"  }
{ type : "plugin", name : this.name, action : "publish", channel : "hop", message : {...}}

Après :

{ type : "pubsub", action : "subscribe", channel : "hop", callback : "callback_id" }
{ type : "pubsub", action : "unsubscribe", channel : "hop"  }
{ type : "pubsub", action : "publish", channel : "hop", message : {...}}
Doc1faux commented 5 years ago

Done for iOS & Android, updated Catalogs accordingly. Also moved OnAppStarted/Foreground/Background on native side