Skip to content

Features List

o5faruk edited this page May 2, 2021 · 16 revisions

⚠️⚠️⚠️

This sdk documentation is deprecated and will not be updated. Check out our new docs at https://sdk.buildfire.com/docs/features-list/

⚠️⚠️⚠️

Features

There are some features should be added to your plugin.json features list to allow your plugin to do certain things and communicate with the device.


Bluetooth

This feature will allow your plugin to communicate with the device Bluetooth functionality "features" : [{"name" : "Bluetooth"}]

iBeacon

This feature will allow your app to listen in to iBeacon ranges and wake up "features" : [{"name" : "iBeacon"}]

BackgroundAudio

This feature will allow Background Audio. "features" : [{"name" : "BackgroundAudio"}]

Geo

This feature will allow for Geo functionality. "features" : [{"name" : "Geo"}]

BackgroundMode

This feature will allow the app to function while the background or if the phone is locked. "features" : [{"name" : "BackgroundMode"}]

Calendar

This feature will allow Calendar functionality. "features" : [{"name" : "Calendar"}]

Local Notification

This feature will allow the app to send local notifications. "features" : [{"name": "localNotification"}]

Sharing

This feature will allow your plugin to use sharing functionality. "features" : [{"name" : "sharing"}]


Here is an example of plugin.json with more than one feature needed

{
  "author":"Harry Poter"
  ,"pluginName":"Event Calendar "
  ,"pluginDescription":"This is a simple Event Calendar"
  ,"supportEmail":"support@buildfire.com"
  ,"control":{
    "content":{
      "enabled":true
    }
    , "design":{
      "enabled":true
    }
    , "settings":{
      "enabled":false
    }
  },
  "features" : [{"name" : "GPS"} ,{"name" : "Bluetooth"}],
  "languages" : ["en" , "fr"]
}

Clone this wiki locally