Skip to content

Commit

Permalink
chore: Support visionOS for template and NitroImage (#326)
Browse files Browse the repository at this point in the history
* chore: Support visionOS for template and NitroImage

* Update Podfile.lock
  • Loading branch information
mrousavy authored Nov 12, 2024
1 parent 0884953 commit 7acf2f2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1842,8 +1842,8 @@ SPEC CHECKSUMS:
fmt: 10c6e61f4be25dc963c36bd73fc7b1705fe975be
glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a
hermes-engine: 46f1ffbf0297f4298862068dd4c274d4ac17a1fd
NitroImage: 257a871dae45360c923ea8f02894cebfe593a7a6
NitroModules: 11c64b7b1c3fd5c83762c4946c4c4c20951d7b86
NitroImage: a3223dfb2954b81347d1b72e7293d031eff6d633
NitroModules: f739ed2d913d7a99195e02a74c8b329a1a697c53
RCT-Folly: bf5c0376ffe4dd2cf438dcf86db385df9fdce648
RCTDeprecation: fde92935b3caa6cb65cbff9fbb7d3a9867ffb259
RCTRequired: 75c6cee42d21c1530a6f204ba32ff57335d19007
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-nitro-image/NitroImage.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Pod::Spec.new do |s|
s.license = package["license"]
s.authors = package["author"]

s.platforms = { :ios => min_ios_version_supported }
s.platforms = { :ios => min_ios_version_supported, :visionos => 1.0 }
s.source = { :git => "https://github.com/mrousavy/nitro.git", :tag => "#{s.version}" }

s.source_files = [
Expand Down
2 changes: 1 addition & 1 deletion packages/template/<<iosModuleName>>.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Pod::Spec.new do |s|
s.license = package["license"]
s.authors = package["author"]

s.platforms = { :ios => min_ios_version_supported }
s.platforms = { :ios => min_ios_version_supported, :visionos => 1.0 }
s.source = { :git => "https://github.com/mrousavy/nitro.git", :tag => "#{s.version}" }

s.source_files = [
Expand Down

0 comments on commit 7acf2f2

Please sign in to comment.