Skip to content

Commit

Permalink
Add Wasm support to iOS Capacitor (#548)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stéphane Roche authored Aug 20, 2022
1 parent 74b8fb4 commit 2de9fd7
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions ios/App/App/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<key>NSCameraUsageDescription</key>
<string>To be able to scan barcodes</string>
<key>NSMicrophoneUsageDescription</key>
Expand Down Expand Up @@ -69,5 +69,25 @@
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<true/>
<key>UTExportedTypeDeclarations</key>
<array>
<dict>
<key>UTTypeConformsTo</key>
<array>
<string>public.data</string>
</array>
<key>UTTypeDescription</key>
<string>WebAssembly</string>
<key>UTTypeIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<string>wasm</string>
<key>public.mime-type</key>
<string>application/wasm</string>
</dict>
</dict>
</array>
</dict>
</plist>

0 comments on commit 2de9fd7

Please sign in to comment.