File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed
packages/cmake-rn/src/platforms Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -150,21 +150,6 @@ export const APPLE_ARCHITECTURES = {
150150 "arm64;x86_64-apple-visionos-sim" : "arm64;x86_64" ,
151151} satisfies Record < Triplet , AppleArchitecture > ;
152152
153- export function createPlistContent ( values : Record < string , string > ) {
154- return [
155- '<?xml version="1.0" encoding="UTF-8"?>' ,
156- '<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">' ,
157- '<plist version="1.0">' ,
158- "<dict>" ,
159- ...Object . entries ( values ) . flatMap ( ( [ key , value ] ) => [
160- `<key>${ key } </key>` ,
161- `<string>${ value } </string>` ,
162- ] ) ,
163- "</dict>" ,
164- "</plist>" ,
165- ] . join ( "\n" ) ;
166- }
167-
168153const xcframeworkExtensionOption = new Option (
169154 "--xcframework-extension" ,
170155 "Don't rename the xcframework to .apple.node" ,
You can’t perform that action at this time.
0 commit comments