@mustafaj/capacitor-plugin-playlist 0.9.0 → 0.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,16 +1,17 @@
1
1
  {
2
2
  "name": "@mustafaj/capacitor-plugin-playlist",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "Capacitor audio playlist plugin with Android, iOS, and web support",
5
- "main": "dist/plugin.cjs.js",
6
5
  "module": "dist/esm/index.js",
7
6
  "types": "dist/esm/index.d.ts",
8
7
  "unpkg": "dist/plugin.js",
9
8
  "files": [
10
9
  "dist/",
10
+ "CHANGELOG.md",
11
+ "Package.swift",
11
12
  "ios/",
12
13
  "android/",
13
- "CapacitorPluginPlaylist.podspec"
14
+ "MustafajCapacitorPluginPlaylist.podspec"
14
15
  ],
15
16
  "scripts": {
16
17
  "verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
@@ -74,12 +75,12 @@
74
75
  },
75
76
  "repository": {
76
77
  "type": "git",
77
- "url": "git+https://github.com/mustafaj/capacitor-plugin-playlist.git"
78
+ "url": "git+https://github.com/mustafa0x/capacitor-plugin-playlist.git"
78
79
  },
79
80
  "bugs": {
80
- "url": "https://github.com/mustafaj/capacitor-plugin-playlist/issues"
81
+ "url": "https://github.com/mustafa0x/capacitor-plugin-playlist/issues"
81
82
  },
82
- "homepage": "https://github.com/mustafaj/capacitor-plugin-playlist#readme",
83
+ "homepage": "https://github.com/mustafa0x/capacitor-plugin-playlist#readme",
83
84
  "publishConfig": {
84
85
  "access": "public"
85
86
  },
@@ -1,19 +0,0 @@
1
- package org.dwbn.plugins.playlist
2
-
3
- import android.app.Application
4
- import org.dwbn.plugins.playlist.manager.PlaylistManager
5
-
6
- class App : Application() {
7
- private lateinit var _playlistManager: PlaylistManager;
8
- val playlistManager get() = _playlistManager
9
-
10
- fun resetPlaylistManager() {
11
- _playlistManager = PlaylistManager(this)
12
- }
13
-
14
- override fun onCreate() {
15
- resetPlaylistManager()
16
- super.onCreate()
17
-
18
- }
19
- }