@capgo/native-audio 6.0.4 → 6.0.5

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.
@@ -11,7 +11,7 @@ buildscript {
11
11
  mavenCentral()
12
12
  }
13
13
  dependencies {
14
- classpath 'com.android.tools.build:gradle:8.0.0'
14
+ classpath 'com.android.tools.build:gradle:8.0.1'
15
15
  }
16
16
  }
17
17
 
@@ -41,7 +41,8 @@ public class AudioAsset: NSObject, AVAudioPlayerDelegate {
41
41
  player.delegate = self
42
42
  }
43
43
  }
44
- } catch {
44
+ } catch let error as NSError {
45
+ print(error.debugDescription)
45
46
  print("Error loading \(String(describing: path))")
46
47
  }
47
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/native-audio",
3
- "version": "6.0.4",
3
+ "version": "6.0.5",
4
4
  "description": "A native plugin for native audio engine",
5
5
  "main": "dist/plugin.js",
6
6
  "module": "dist/esm/index.js",
@@ -56,7 +56,7 @@
56
56
  "husky": "^8.0.3",
57
57
  "prettier": "^2.8.8",
58
58
  "prettier-plugin-java": "^2.1.0",
59
- "rimraf": "^4.4.1",
59
+ "rimraf": "^5.0.1",
60
60
  "rollup": "^3.23.0",
61
61
  "swiftlint": "^1.0.2",
62
62
  "typescript": "^5.0.4"