mui.getConnectionType()

Retorna el tipo de conexión a la red.

  • Connection.UNKNOWN
  • Connection.ETHERNET
  • Connection.WIFI
  • Connection.CELL_2G
  • Connection.CELL_3G
  • Connection.CELL_4G
  • Connection.CELL
  • Connection.NONE

Ejemplo rápido

if (mui.getConnectionType()==Connection.WIFI) {
    sincronizar();  //solo sincroniza con wifi
}

Dependencias

Requiere el plugin: cordova-plugin-network-information

En PhoneGap build:

<gap:plugin name="cordova-plugin-network-information" source='npm' />