Skip to content

Commit a2d3926

Browse files
committed
Fix no UIScene configuration dictionary warning
1 parent 788adee commit a2d3926

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

pass/Info.plist

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5+
<key>UIApplicationSceneManifest</key>
6+
<dict>
7+
<key>UIApplicationSupportsMultipleScenes</key>
8+
<true/>
9+
<key>UISceneConfigurations</key>
10+
<dict/>
11+
</dict>
512
<key>com.apple.developer.nfc.readersession.iso7816.select-identifiers</key>
613
<array>
714
<string>A000000527471117</string>

passAutoFillExtension/Info.plist

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5+
<key>UIApplicationSceneManifest</key>
6+
<dict>
7+
<key>UIApplicationSupportsMultipleScenes</key>
8+
<true/>
9+
<key>UISceneConfigurations</key>
10+
<dict/>
11+
</dict>
512
<key>CFBundleDevelopmentRegion</key>
613
<string>en</string>
714
<key>CFBundleDisplayName</key>

passExtension/Info.plist

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5+
<key>UIApplicationSceneManifest</key>
6+
<dict>
7+
<key>UISceneConfigurations</key>
8+
<dict/>
9+
<key>UIApplicationSupportsMultipleScenes</key>
10+
<true/>
11+
</dict>
512
<key>CFBundleDevelopmentRegion</key>
613
<string>en</string>
714
<key>CFBundleDisplayName</key>
@@ -31,9 +38,9 @@
3138
SUBQUERY (
3239
$extensionItem.attachments,
3340
$attachment,
34-
ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "org.appextension.find-login-action" ||
35-
ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.url" ||
36-
ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.plain-text"
41+
ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO &quot;org.appextension.find-login-action&quot; ||
42+
ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO &quot;public.url&quot; ||
43+
ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO &quot;public.plain-text&quot;
3744
).@count == $extensionItem.attachments.@count
3845
).@count == 1</string>
3946
<key>NSExtensionJavaScriptPreprocessingFile</key>

0 commit comments

Comments
 (0)