├── .gitignore ├── LICENSE ├── README.md ├── plugin.xml ├── src └── ios │ ├── CDVWatch-Swift.h │ ├── CDVWatch.h │ ├── CDVWatch.m │ └── Vendor │ └── MMWormhole │ ├── LICENSE │ ├── MMWormhole.h │ └── MMWormhole.m └── www └── watch.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20steps/cordova-plugin-watch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20steps/cordova-plugin-watch/HEAD/README.md -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20steps/cordova-plugin-watch/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/ios/CDVWatch-Swift.h: -------------------------------------------------------------------------------- 1 | #import -------------------------------------------------------------------------------- /src/ios/CDVWatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20steps/cordova-plugin-watch/HEAD/src/ios/CDVWatch.h -------------------------------------------------------------------------------- /src/ios/CDVWatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20steps/cordova-plugin-watch/HEAD/src/ios/CDVWatch.m -------------------------------------------------------------------------------- /src/ios/Vendor/MMWormhole/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20steps/cordova-plugin-watch/HEAD/src/ios/Vendor/MMWormhole/LICENSE -------------------------------------------------------------------------------- /src/ios/Vendor/MMWormhole/MMWormhole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20steps/cordova-plugin-watch/HEAD/src/ios/Vendor/MMWormhole/MMWormhole.h -------------------------------------------------------------------------------- /src/ios/Vendor/MMWormhole/MMWormhole.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20steps/cordova-plugin-watch/HEAD/src/ios/Vendor/MMWormhole/MMWormhole.m -------------------------------------------------------------------------------- /www/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20steps/cordova-plugin-watch/HEAD/www/watch.js --------------------------------------------------------------------------------