@capgo/capacitor-mute 1.1.21 → 1.1.25
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/CapgoCapacitorMute.podspec +4 -0
- package/README.md +2 -2
- package/dist/docs.json +2 -2
- package/package.json +1 -1
|
@@ -11,7 +11,11 @@ Pod::Spec.new do |s|
|
|
|
11
11
|
s.author = package['author']
|
|
12
12
|
s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
|
|
13
13
|
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
|
|
14
|
+
s.resource_bundles = {
|
|
15
|
+
'Mute' => ['ios/Plugin/Assets/*.aiff']
|
|
16
|
+
}
|
|
14
17
|
s.ios.deployment_target = '13.0'
|
|
15
18
|
s.dependency 'Capacitor'
|
|
19
|
+
s.frameworks = 'Foundation', 'AudioToolbox'
|
|
16
20
|
s.swift_version = '5.1'
|
|
17
21
|
end
|
package/README.md
CHANGED
|
@@ -60,12 +60,12 @@ If no answer I will add the code directly to capacitor-mute
|
|
|
60
60
|
### isMuted()
|
|
61
61
|
|
|
62
62
|
```typescript
|
|
63
|
-
isMuted() =>
|
|
63
|
+
isMuted() => any
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
check if the device is muted
|
|
67
67
|
|
|
68
|
-
**Returns:** <code>
|
|
68
|
+
**Returns:** <code>any</code>
|
|
69
69
|
|
|
70
70
|
--------------------
|
|
71
71
|
|
package/dist/docs.json
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
"methods": [
|
|
8
8
|
{
|
|
9
9
|
"name": "isMuted",
|
|
10
|
-
"signature": "() =>
|
|
10
|
+
"signature": "() => any",
|
|
11
11
|
"parameters": [],
|
|
12
|
-
"returns": "
|
|
12
|
+
"returns": "any",
|
|
13
13
|
"tags": [],
|
|
14
14
|
"docs": "check if the device is muted",
|
|
15
15
|
"complexTypes": [
|