sezo-audio-engine 0.0.9 → 0.0.11
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/README.md +1 -1
- package/android/build.gradle +1 -1
- package/package.json +5 -2
- package/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec-generated.mm +0 -2321
- package/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec.h +0 -2761
- package/ios/build/generated/ios/FBReactNativeSpecJSI-generated.cpp +0 -2929
- package/ios/build/generated/ios/FBReactNativeSpecJSI.h +0 -7727
- package/ios/build/generated/ios/RCTModulesConformingToProtocolsProvider.h +0 -18
- package/ios/build/generated/ios/RCTModulesConformingToProtocolsProvider.mm +0 -33
- package/ios/build/generated/ios/ReactCodegen.podspec.json +0 -1
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ allprojects {
|
|
|
38
38
|
Optionally pin the engine version in `android/gradle.properties`:
|
|
39
39
|
|
|
40
40
|
```properties
|
|
41
|
-
sezoAudioEngineVersion=android-engine-v0.1.
|
|
41
|
+
sezoAudioEngineVersion=android-engine-v0.1.5
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
If you want to build from source instead, include the local engine module in
|
package/android/build.gradle
CHANGED
|
@@ -44,7 +44,7 @@ dependencies {
|
|
|
44
44
|
if (androidEngineProject != null) {
|
|
45
45
|
implementation androidEngineProject
|
|
46
46
|
} else {
|
|
47
|
-
def sezoAudioEngineVersion = project.findProperty("sezoAudioEngineVersion") ?: "android-engine-v0.1.
|
|
47
|
+
def sezoAudioEngineVersion = project.findProperty("sezoAudioEngineVersion") ?: "android-engine-v0.1.5"
|
|
48
48
|
implementation "com.github.Sepzie:SezoAudioEngine:${sezoAudioEngineVersion}"
|
|
49
49
|
}
|
|
50
50
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sezo-audio-engine",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "Cross-platform Expo module for the Sezo Audio Engine with iOS implementation and background playback.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Sezo",
|
|
@@ -38,7 +38,9 @@
|
|
|
38
38
|
"android/cpp",
|
|
39
39
|
"android/build.gradle",
|
|
40
40
|
"android/settings.gradle",
|
|
41
|
-
"ios",
|
|
41
|
+
"ios/AudioEngine",
|
|
42
|
+
"ios/ExpoAudioEngine.podspec",
|
|
43
|
+
"ios/ExpoAudioEngineModule.swift",
|
|
42
44
|
"dist",
|
|
43
45
|
"expo-module.config.json",
|
|
44
46
|
"README.md",
|
|
@@ -47,6 +49,7 @@
|
|
|
47
49
|
"scripts": {
|
|
48
50
|
"build": "tsc -p tsconfig.json",
|
|
49
51
|
"clean": "rm -rf dist",
|
|
52
|
+
"prepack": "rm -rf ios/build",
|
|
50
53
|
"test": "echo \"TODO: add tests\"",
|
|
51
54
|
"prepublishOnly": "npm run build"
|
|
52
55
|
},
|