serve-sim 0.1.24 → 0.1.26
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 +2 -2
- package/Sources/SimCameraHelper/build.sh +1 -1
- package/Sources/SimCameraHelper/main.m +28 -17
- package/Sources/SimCameraInjector/SimCamFakes.h +86 -0
- package/Sources/SimCameraInjector/SimCamFakes.m +635 -0
- package/Sources/SimCameraInjector/SimCamFrameSource.h +26 -0
- package/Sources/SimCameraInjector/SimCamFrameSource.m +546 -0
- package/Sources/SimCameraInjector/SimCamLog.h +5 -0
- package/Sources/SimCameraInjector/SimCamLog.m +9 -0
- package/Sources/SimCameraInjector/SimCamSwizzles.h +3 -0
- package/Sources/SimCameraInjector/SimCamSwizzles.m +1014 -0
- package/Sources/SimCameraInjector/SimCameraInjector.m +9 -1150
- package/Sources/SimCameraInjector/build.sh +6 -1
- package/bin/serve-sim-bin +0 -0
- package/dist/middleware.js +25 -25
- package/dist/serve-sim.js +37 -34
- package/dist/simcam/libSimCameraInjector.dylib +0 -0
- package/dist/simcam/serve-sim-camera-helper +0 -0
- package/package.json +3 -1
- package/src/middleware.ts +125 -25
|
@@ -22,12 +22,17 @@ xcrun --sdk iphonesimulator clang \
|
|
|
22
22
|
-framework AVFoundation \
|
|
23
23
|
-framework CoreImage \
|
|
24
24
|
-framework CoreMedia \
|
|
25
|
+
-framework CoreMotion \
|
|
25
26
|
-framework CoreVideo \
|
|
26
27
|
-framework CoreGraphics \
|
|
27
28
|
-framework QuartzCore \
|
|
28
29
|
-install_name "@rpath/libSimCameraInjector.dylib" \
|
|
29
30
|
-o "$DYLIB" \
|
|
30
|
-
"$HERE/SimCameraInjector.m"
|
|
31
|
+
"$HERE/SimCameraInjector.m" \
|
|
32
|
+
"$HERE/SimCamLog.m" \
|
|
33
|
+
"$HERE/SimCamFakes.m" \
|
|
34
|
+
"$HERE/SimCamFrameSource.m" \
|
|
35
|
+
"$HERE/SimCamSwizzles.m"
|
|
31
36
|
|
|
32
37
|
echo "Built: $DYLIB"
|
|
33
38
|
file "$DYLIB"
|
package/bin/serve-sim-bin
CHANGED
|
Binary file
|