├── .editorconfig ├── .gitignore ├── README.md ├── package.json ├── plugin.xml ├── src ├── browser │ └── MNowPlaying.js └── ios │ ├── MNowPlaying.h │ └── MNowPlaying.m └── www └── NowPlaying.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/cordova-plugin-nowplaying/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/cordova-plugin-nowplaying/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/cordova-plugin-nowplaying/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/cordova-plugin-nowplaying/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/browser/MNowPlaying.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/cordova-plugin-nowplaying/HEAD/src/browser/MNowPlaying.js -------------------------------------------------------------------------------- /src/ios/MNowPlaying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/cordova-plugin-nowplaying/HEAD/src/ios/MNowPlaying.h -------------------------------------------------------------------------------- /src/ios/MNowPlaying.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/cordova-plugin-nowplaying/HEAD/src/ios/MNowPlaying.m -------------------------------------------------------------------------------- /www/NowPlaying.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leon/cordova-plugin-nowplaying/HEAD/www/NowPlaying.js --------------------------------------------------------------------------------