Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cordova-plugin-playlist

Package Overview
Dependencies
Maintainers
3
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-playlist - npm Package Compare versions

Comparing version 0.9.2 to 0.10.0

3

package.json
{
"name": "cordova-plugin-playlist",
"description": "A Cordova plugin for Android and iOS with native support for audio playlists, background support, and lock screen controls",
"version": "0.9.2",
"version": "0.10.0",
"homepage": "https://github.com/Rolamix/cordova-plugin-playlist#readme",

@@ -63,2 +63,3 @@ "author": "Patrick <patrick@rolamix.com>",

"fs-extra": "^5.0.0",
"q": "^1.5.1",
"semver": "^5.5.0",

@@ -65,0 +66,0 @@ "xml2js": "^0.4.19"

@@ -72,2 +72,9 @@ # cordova-plugin-playlist

### Android notification icon
To show a better notification icon in Android Lollipop (API 21) and above, create a transparent (silhouette) icon and name the file as "ic_notification.png". Then in your config.xml, inside `<platform name="android">`:
```
<resource-file src="src/assets/img/ic_notification.png" target="/app/src/main/res/drawable/ic_notification.png" />
```
## 3. Usage

@@ -74,0 +81,0 @@

const path = require('path');
const fs = require('fs-extra');
const q = require('q');
const {

@@ -20,3 +21,3 @@ getAndroidJavaSrcPath, getPackageName, getProjectName, updateAndroidManifestApplication, doCodeGen,

module.exports = function androidAfterPluginInstall(context) {
const deferral = context.requireCordovaModule('q').defer();
const deferral = q.defer();

@@ -23,0 +24,0 @@ try {

const path = require('path');
const fs = require('fs-extra');
const q = require('q');
const {

@@ -13,3 +14,3 @@ getAndroidJavaSrcPath, getPackageName, getProjectName, updateAndroidManifestApplication,

module.exports = function androidAfterPluginRemove(context) {
const deferral = context.requireCordovaModule('q').defer();
const deferral = q.defer();

@@ -16,0 +17,0 @@ try {

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