Socket
Socket
Sign inDemoInstall

cordova-plugin-hotspot

Package Overview
Dependencies
Maintainers
1
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-hotspot - npm Package Compare versions

Comparing version 1.2.9 to 1.2.10-develop-14

example/hotspot-app/.snyk

17

CHANGELOG.md

@@ -0,1 +1,12 @@

<a name="1.2.10"></a>
## [1.2.10](https://github.com/hypery2k/cordova-hotspot-plugin/compare/v1.2.9...v1.2.10) (2018-01-31)
### Bug Fixes
* example/hotspot-app/package.json & example/hotspot-app/.snyk to reduce vulnerabilities ([1acf4e6](https://github.com/hypery2k/cordova-hotspot-plugin/commit/1acf4e6))
* **connection-error:** Minor fixes for connection errors ([891e546](https://github.com/hypery2k/cordova-hotspot-plugin/commit/891e546)), closes [#57](https://github.com/hypery2k/cordova-hotspot-plugin/issues/57) [#81](https://github.com/hypery2k/cordova-hotspot-plugin/issues/81)
<a name="1.2.9"></a>

@@ -7,4 +18,4 @@ ## [1.2.9](https://github.com/hypery2k/cordova-hotspot-plugin/compare/v1.2.7...v1.2.9) (2017-08-11)

* **API-23:** Corrected permission usage ([f4383ca](https://github.com/hypery2k/cordova-hotspot-plugin/commit/f4383ca))
* **API-23:** Corrected permission usage ([d69a4b5](https://github.com/hypery2k/cordova-hotspot-plugin/commit/d69a4b5))
* **API-23:** Corrected permission usage ([f4383ca](https://github.com/hypery2k/cordova-hotspot-plugin/commit/f4383ca)), closes [#55](https://github.com/hypery2k/cordova-hotspot-plugin/issues/55) [#56](https://github.com/hypery2k/cordova-hotspot-plugin/issues/56) [#62](https://github.com/hypery2k/cordova-hotspot-plugin/issues/62)
* **API-23:** Corrected permission usage ([d69a4b5](https://github.com/hypery2k/cordova-hotspot-plugin/commit/d69a4b5)), closes [#55](https://github.com/hypery2k/cordova-hotspot-plugin/issues/55) [#56](https://github.com/hypery2k/cordova-hotspot-plugin/issues/56)

@@ -14,3 +25,3 @@

* **typescript:** Adding typescript support ([6a6b168](https://github.com/hypery2k/cordova-hotspot-plugin/commit/6a6b168))
* **typescript:** Adding typescript support ([6a6b168](https://github.com/hypery2k/cordova-hotspot-plugin/commit/6a6b168)), closes [#40](https://github.com/hypery2k/cordova-hotspot-plugin/issues/40)

@@ -17,0 +28,0 @@

12

example/hotspot-app/package.json

@@ -6,7 +6,8 @@ {

"dependencies": {
"gulp": "^3.5.6",
"gulp": "^4.0.0",
"gulp-sass": "^2.0.4",
"gulp-concat": "^2.2.0",
"gulp-minify-css": "^0.3.0",
"gulp-rename": "^1.2.0"
"gulp-rename": "^1.2.0",
"snyk": "^1.65.1"
},

@@ -29,3 +30,8 @@ "devDependencies": {

"android"
]
],
"scripts": {
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"snyk": true
}
{
"name": "cordova-plugin-hotspot",
"version": "1.2.9",
"version": "1.2.10-develop-14",
"description": "Cordova WiFi Hotspot Plugin",

@@ -22,5 +22,6 @@ "cordova": {

"scripts": {
"clean": "echo ''",
"build": "echo ''",
"prepare:sdk": "mkdir -p tmp && cd tmp && git clone https://github.com/simpligility/maven-android-sdk-deployer.git && cd maven-android-sdk-deployer/ && mvn install -P 6.0 && ls ~/.m2/repository/android/android/",
"prepare:test-app": "rm -rf tmp && mkdir -p tmp && cd tmp && git clone https://github.com/apache/cordova-app-hello-world.git && cd cordova-app-hello-world && mv template_src/* . && cordova platform add android && cordova plugin add cordova-plugin-compat && cordova build",
"prepare:test-app": "rm -rf tmp && mkdir -p tmp && cd tmp && git clone https://github.com/apache/cordova-app-hello-world.git && cd cordova-app-hello-world && mv template_src/* . && cordova platform add android@5 && cordova plugin add cordova-plugin-compat && cordova build",
"pretest": "npm run prepare:test-app",

@@ -31,10 +32,13 @@ "test": "npm run test:unit && npm run test:plugin",

"posttest": "jsdoc -c jsdoc.json && jsdoc2md www/HotSpotPlugin.js | sed s/hotSpotPlugin/cordova.plugins.hotspot/g | sed s/HotSpotPlugin/cordova.plugins.hotspot/g > PLUGIN_USAGE.MD",
"jsdoc": "jsdoc -c ./jsdoc.json -t ./node_modules/ink-docstrap/template -R README.md ./src && jsdoc2md www/HotSpotPlugin.js > ./dist/PLUGIN_USAGE.MD && cat ./dist/PLUGIN_USAGE.MD | sed s/hotSpotPlugin/cordova.plugins.hotspot/g | sed s/HotSpotPlugin/cordova.plugins.hotspot/g > PLUGIN_USAGE.MD",
"jsdoc": "jsdoc -c ./jsdoc.json -t ./node_modules/ink-docstrap/template -R README.md ./src && jsdoc2md www/HotSpotPlugin.js | sed s/hotSpotPlugin/cordova.plugins.hotspot/g | sed s/HotSpotPlugin/cordova.plugins.hotspot/g > PLUGIN_USAGE.MD",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:add": "git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"release:pre": "npm run build && npm run test",
"release:post": "node etc/release.js && git add plugin.xml && git commit -m 'Update plugin' && npm run changelog && npm run changelog:add",
"release:major": "npm version major && npm run release:pre && git push origin && git push origin --tags && npm run release:post && npm publish",
"release:minor": "npm version minor && npm run release:pre && git push origin && git push origin --tags && npm run release:post && npm publish",
"release:patch": "npm version patch && npm run release:pre && git push origin && git push origin --tags && npm run release:post && npm publish"
"changelog:add": "git add plugin.xml && git add CHANGELOG.md && git commit -m 'chore(changelog): Updated CHANGELOG.md'",
"version": "cordova-plugin-xml setVersion",
"release:pre": "npm run clean && npm run build && npm run test",
"release:post": "npm run version && npm run changelog && npm run changelog:add",
"release:major": "npm run release:pre && npm version major && npm run release:post && git push origin && git push origin --tags && npm run version-and-push",
"release:minor": "npm run release:pre && npm version minor && npm run release:post && git push origin && git push origin --tags && npm run version-and-push",
"release:patch": "npm run release:pre && npm version patch && npm run release:post && git push origin && git push origin --tags && npm run version-and-push",
"version-and-push": "git push origin && git push origin --tags && npm run publish-and-merge",
"publish-and-merge": "git checkout master && git merge develop && npm publish && git push && git checkout develop"
},

@@ -44,8 +48,9 @@ "author": "Martin Reinhardt",

"devDependencies": {
"conventional-changelog-cli": "1.3.0",
"ink-docstrap": "1.3.0",
"jsdoc": "3.5.0",
"jsdoc-to-markdown": "3.0.0",
"xml2js": "0.4.17"
"conventional-changelog-cli": "1.3.5",
"cordova-plugin-xml": "0.1.2",
"ink-docstrap": "1.3.2",
"jsdoc": "3.5.5",
"jsdoc-to-markdown": "3.0.3",
"xml2js": "0.4.19"
}
}

@@ -145,7 +145,7 @@ ## Objects

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| callback | <code>[isAvailableCallback](#isAvailableCallback)</code> | A callback function which is invoked on success. |
| callback | [<code>isAvailableCallback</code>](#isAvailableCallback) | A callback function which is invoked on success. |

@@ -157,8 +157,8 @@ <a name="cordova.plugins.hotspot+getWriteSettings"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type |
| --- | --- |
| successCB | <code>[getWriteSettingsCallback](#getWriteSettingsCallback)</code> |
| errorCB | <code>[errorCallback](#errorCallback)</code> |
| successCB | [<code>getWriteSettingsCallback</code>](#getWriteSettingsCallback) |
| errorCB | [<code>errorCallback</code>](#errorCallback) |

@@ -170,3 +170,3 @@ <a name="cordova.plugins.hotspot+requestWriteSettings"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)

@@ -183,8 +183,8 @@ | Param | Type | Description |

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| callback | <code>[toggleWifiCallback](#toggleWifiCallback)</code> | A callback function which is invoked on success. |
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when errors occurr |
| callback | [<code>toggleWifiCallback</code>](#toggleWifiCallback) | A callback function which is invoked on success. |
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when errors occurr |

@@ -196,3 +196,3 @@ <a name="cordova.plugins.hotspot+createHotspot"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)

@@ -204,4 +204,4 @@ | Param | Type | Description |

| password | <code>string</code> | password to use |
| successCB | <code>[createHotspotCallback](#createHotspotCallback)</code> | A callback function to be called when start was successful |
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when connection was not successful |
| successCB | [<code>createHotspotCallback</code>](#createHotspotCallback) | A callback function to be called when start was successful |
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when connection was not successful |

@@ -213,8 +213,8 @@ <a name="cordova.plugins.hotspot+startHotspot"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| successCB | <code>[startHotspotCallback](#startHotspotCallback)</code> | A callback function to be called when start was successful |
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when start was not successful |
| successCB | [<code>startHotspotCallback</code>](#startHotspotCallback) | A callback function to be called when start was successful |
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when start was not successful |

@@ -226,8 +226,8 @@ <a name="cordova.plugins.hotspot+stopHotspot"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| successCB | <code>[stopHotspotCallback](#stopHotspotCallback)</code> | A callback function to be called when stop was successful |
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when stop was not successful |
| successCB | [<code>stopHotspotCallback</code>](#stopHotspotCallback) | A callback function to be called when stop was successful |
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when stop was not successful |

@@ -239,8 +239,8 @@ <a name="cordova.plugins.hotspot+isHotspotEnabled"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| successCB | <code>[isHotspotEnabledCallback](#isHotspotEnabledCallback)</code> | A callback function with the result |
| errorCB | <code>[errorCallback](#errorCallback)</code> | A error callback function |
| successCB | [<code>isHotspotEnabledCallback</code>](#isHotspotEnabledCallback) | A callback function with the result |
| errorCB | [<code>errorCallback</code>](#errorCallback) | A error callback function |

@@ -252,8 +252,8 @@ <a name="cordova.plugins.hotspot+getAllHotspotDevices"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| A | <code>[getAllHotspotDevicesCallback](#getAllHotspotDevicesCallback)</code> | callback function when hotspot connection is active and info was rad. |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| A | [<code>getAllHotspotDevicesCallback</code>](#getAllHotspotDevicesCallback) | callback function when hotspot connection is active and info was rad. |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -265,3 +265,3 @@ <a name="cordova.plugins.hotspot+connectToWifi"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)

@@ -272,4 +272,4 @@ | Param | Type | Description |

| password | <code>string</code> | password to use |
| successCB | <code>[connectToWifiCallback](#connectToWifiCallback)</code> | A callback function to be called when connected successful |
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when connection was not successful |
| successCB | [<code>connectToWifiCallback</code>](#connectToWifiCallback) | A callback function to be called when connected successful |
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when connection was not successful |

@@ -281,3 +281,3 @@ <a name="cordova.plugins.hotspot+connectToWifiAuthEncrypt"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)

@@ -290,4 +290,4 @@ | Param | Type | Description |

| encryption | <code>Array.&lt;string&gt;</code> | mode use (CCMP, TKIP, WEP104, WEP40) |
| successCB | <code>[connectToWifiAuthEncryptCallback](#connectToWifiAuthEncryptCallback)</code> | A callback function to be called when connected successful |
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when connection was not successful |
| successCB | [<code>connectToWifiAuthEncryptCallback</code>](#connectToWifiAuthEncryptCallback) | A callback function to be called when connected successful |
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when connection was not successful |

@@ -299,3 +299,3 @@ <a name="cordova.plugins.hotspot+configureHotspot"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)

@@ -307,4 +307,4 @@ | Param | Type | Description |

| password | <code>string</code> | password to use |
| successCB | <code>[configureHotspotCallback](#configureHotspotCallback)</code> | A callback function to be called when connected successful |
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when configuration was not successful |
| successCB | [<code>configureHotspotCallback</code>](#configureHotspotCallback) | A callback function to be called when connected successful |
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when configuration was not successful |

@@ -316,3 +316,3 @@ <a name="cordova.plugins.hotspot+addWifiNetwork"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)

@@ -325,3 +325,3 @@ | Param | Type | Description |

| successCB | <code>function</code> | A callback function to be called when adding successful |
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when adding was not successful |
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when adding was not successful |

@@ -333,3 +333,3 @@ <a name="cordova.plugins.hotspot+removeWifiNetwork"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)

@@ -340,3 +340,3 @@ | Param | Type | Description |

| successCB | <code>function</code> | A callback function function to be called when removal was successful |
| errorCB | <code>[errorCallback](#errorCallback)</code> | A callback function to be called when removal was not successful |
| errorCB | [<code>errorCallback</code>](#errorCallback) | A callback function to be called when removal was not successful |

@@ -348,8 +348,8 @@ <a name="cordova.plugins.hotspot+isConnectedToInternet"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| successCB | <code>[isConnectedToInternetCallback](#isConnectedToInternetCallback)</code> | A callback function to be called with the result |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| successCB | [<code>isConnectedToInternetCallback</code>](#isConnectedToInternetCallback) | A callback function to be called with the result |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -361,8 +361,8 @@ <a name="cordova.plugins.hotspot+isConnectedToInternetViaWifi"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| successCB | <code>[isConnectedToInternetViaWifiCallback](#isConnectedToInternetViaWifiCallback)</code> | A callback function to be called with the result |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| successCB | [<code>isConnectedToInternetViaWifiCallback</code>](#isConnectedToInternetViaWifiCallback) | A callback function to be called with the result |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -374,8 +374,8 @@ <a name="cordova.plugins.hotspot+isWifiOn"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| successCB | <code>[isWifiOnCallback](#isWifiOnCallback)</code> | A callback function with the result |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| successCB | [<code>isWifiOnCallback</code>](#isWifiOnCallback) | A callback function with the result |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -387,8 +387,8 @@ <a name="cordova.plugins.hotspot+isWifiSupported"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| successCB | <code>[isWifiSupportedCallback](#isWifiSupportedCallback)</code> | A callback function with the result |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| successCB | [<code>isWifiSupportedCallback</code>](#isWifiSupportedCallback) | A callback function with the result |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -400,8 +400,8 @@ <a name="cordova.plugins.hotspot+isWifiDirectSupported"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| successCB | <code>[isWifiDirectSupportedCallback](#isWifiDirectSupportedCallback)</code> | A callback function with the result |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| successCB | [<code>isWifiDirectSupportedCallback</code>](#isWifiDirectSupportedCallback) | A callback function with the result |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -413,8 +413,8 @@ <a name="cordova.plugins.hotspot+scanWifi"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| successCB | <code>[scanWifiCallback](#scanWifiCallback)</code> | A callback function to be called when scan is started |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| successCB | [<code>scanWifiCallback</code>](#scanWifiCallback) | A callback function to be called when scan is started |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -426,3 +426,3 @@ <a name="cordova.plugins.hotspot+scanWifiByLevel"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)

@@ -432,3 +432,3 @@ | Param | Type | Description |

| successCB | <code>scanWifiByLevelCallback</code> | A callback function to be called when scan is started |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -440,3 +440,3 @@ <a name="cordova.plugins.hotspot+startWifiPeriodicallyScan"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)

@@ -447,4 +447,4 @@ | Param | Type | Description |

| duration | <code>long</code> | duration to use |
| successCB | <code>[startWifiPeriodicallyScanCallback](#startWifiPeriodicallyScanCallback)</code> | A callback function to be called when scan is started |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| successCB | [<code>startWifiPeriodicallyScanCallback</code>](#startWifiPeriodicallyScanCallback) | A callback function to be called when scan is started |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -456,8 +456,8 @@ <a name="cordova.plugins.hotspot+stopWifiPeriodicallyScan"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| successCB | <code>[stopWifiPeriodicallyScanCallback](#stopWifiPeriodicallyScanCallback)</code> | A callback function to be called when scan is stopped |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| successCB | [<code>stopWifiPeriodicallyScanCallback</code>](#stopWifiPeriodicallyScanCallback) | A callback function to be called when scan is stopped |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -469,8 +469,8 @@ <a name="cordova.plugins.hotspot+getNetConfig"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| successCB | <code>[getNetConfigCallback](#getNetConfigCallback)</code> | A callback function to be called with all information |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| successCB | [<code>getNetConfigCallback</code>](#getNetConfigCallback) | A callback function to be called with all information |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -482,8 +482,8 @@ <a name="cordova.plugins.hotspot+getConnectionInfo"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| successCB | <code>[getConnectionInfoCallback](#getConnectionInfoCallback)</code> | A callback function with the connection details. |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| successCB | [<code>getConnectionInfoCallback</code>](#getConnectionInfoCallback) | A callback function with the connection details. |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -495,3 +495,3 @@ <a name="cordova.plugins.hotspot+pingHost"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)

@@ -501,4 +501,4 @@ | Param | Type | Description |

| ip | <code>string</code> | host IP |
| successCB | <code>[pingHostCallback](#pingHostCallback)</code> | A callback function to be called with all information |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| successCB | [<code>pingHostCallback</code>](#pingHostCallback) | A callback function to be called with all information |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -510,3 +510,3 @@ <a name="cordova.plugins.hotspot+getMacAddressOfHost"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)

@@ -517,3 +517,3 @@ | Param | Type | Description |

| successCB | <code>getMacAddressOfHost</code> | A callback function to be called with all information |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -525,3 +525,3 @@ <a name="cordova.plugins.hotspot+isDnsLive"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)

@@ -532,3 +532,3 @@ | Param | Type | Description |

| successCB | <code>function</code> | A callback function to be called with the result |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -540,3 +540,3 @@ <a name="cordova.plugins.hotspot+isPortLive"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)

@@ -546,4 +546,4 @@ | Param | Type | Description |

| ip | <code>string</code> | host IP |
| successCB | <code>[isPortLiveCallback](#isPortLiveCallback)</code> | A callback function to be called with all information |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| successCB | [<code>isPortLiveCallback</code>](#isPortLiveCallback) | A callback function to be called with all information |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -555,8 +555,8 @@ <a name="cordova.plugins.hotspot+isRooted"></a>

**Kind**: instance method of <code>[cordova.plugins.hotspot](#cordova.plugins.hotspot)</code>
**Kind**: instance method of [<code>cordova.plugins.hotspot</code>](#cordova.plugins.hotspot)
| Param | Type | Description |
| --- | --- | --- |
| successCB | <code>[isRootedCallback](#isRootedCallback)</code> | A callback function to be called with all information |
| errorCB | <code>[errorCallback](#errorCallback)</code> | An error callback |
| successCB | [<code>isRootedCallback</code>](#isRootedCallback) | A callback function to be called with all information |
| errorCB | [<code>errorCallback</code>](#errorCallback) | An error callback |

@@ -563,0 +563,0 @@ <a name="errorCallback"></a>

@@ -1,3 +0,5 @@

# Cordova HotSpot Plugin
# Cordova HotSpot Plugin ![android](https://cdn4.iconfinder.com/data/icons/logos-3/228/android-32.png)
[![Greenkeeper badge](https://badges.greenkeeper.io/hypery2k/cordova-hotspot-plugin.svg)](https://greenkeeper.io/)
**DISCONTINUED**

@@ -14,14 +16,16 @@

<a name="donation"></a>
> Feel free to **donate**
>
> <a href='https://pledgie.com/campaigns/25442'><img alt='Click here to lend your support to: MobileApps with Cordova and make a donation at pledgie.com !' src='https://pledgie.com/campaigns/25442.png?skin_name=chrome' border='0' ></a>
>
> <a href='http://www.pledgie.com/campaigns/33053'><img alt='Click here to lend your support and make a donation at www.pledgie.com !' src='http://www.pledgie.com/campaigns/33053.png?skin_name=chrome' border='0' /></a>
> <a target="_blank" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AGPGLZYNV6Y5S">
> <img alt="" border="0" src="https://www.paypalobjects.com/de_DE/DE/i/btn/btn_donateCC_LG.gif"/>
> </img></a>
> Or donate [Bitcoins](bitcoin:3NKtxw1SRYgess5ev4Ri54GekoAgkR213D):
> Or donate Bitcoins: bitcoin:3NKtxw1SRYgess5ev4Ri54GekoAgkR213D
>
> [![Bitcoin](https://martinreinhardt-online.de/bitcoin.png)](bitcoin:3NKtxw1SRYgess5ev4Ri54GekoAgkR213D)
>
>
> Also via [greenaddress](https://greenaddress.it/pay/GA3ZPfh7As3Gc2oP6pQ1njxMij88u/)
## Installation

@@ -28,0 +32,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc