Skip to content

Commit 2f5996a

Browse files
authored
Fixed non notched window size on notched devices when sideloading an app (#31)
* replaces UILaunchImageFile with UILaunchStoryboardName * renamed the NIC identifiers for the app templates (Objective-C + Swift UIKit) to include the suffix "modern"
1 parent f0fb942 commit 2f5996a

File tree

78 files changed

+164
-310
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+164
-310
lines changed

ios/application/Resources/Info.plist

-154
This file was deleted.

ios/application/Resources/[email protected]

Whitespace-only changes.

ios/application/Resources/LaunchImage-700-Landscape@2x~ipad.png

Whitespace-only changes.

ios/application/Resources/LaunchImage-700-Landscape~ipad.png

Whitespace-only changes.

ios/application/Resources/LaunchImage-700-Portrait@2x~ipad.png

Whitespace-only changes.

ios/application/Resources/LaunchImage-700-Portrait~ipad.png

Whitespace-only changes.

ios/application/Resources/[email protected]

Whitespace-only changes.

ios/application/Resources/[email protected]

Whitespace-only changes.

ios/application/Resources/[email protected]

Whitespace-only changes.

ios/application/Resources/LaunchImage.png

Whitespace-only changes.

ios/application/Resources/[email protected]

Whitespace-only changes.
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name "iphone/application"
1+
name "iphone/application_modern"
22
constrain "control" to package
33
constrain "theos" to link_theos
44
prompt CLASSPREFIX "Class name prefix (two or more characters)" "XX"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleExecutable</key>
6+
<string>@@PROJECTNAME@@</string>
7+
<key>CFBundleIcons</key>
8+
<dict>
9+
<key>CFBundlePrimaryIcon</key>
10+
<dict>
11+
<key>CFBundleIconFiles</key>
12+
<array>
13+
<string>AppIcon29x29</string>
14+
<string>AppIcon40x40</string>
15+
<string>AppIcon57x57</string>
16+
<string>AppIcon60x60</string>
17+
</array>
18+
<key>UIPrerenderedIcon</key>
19+
<true/>
20+
</dict>
21+
</dict>
22+
<key>CFBundleIcons~ipad</key>
23+
<dict>
24+
<key>CFBundlePrimaryIcon</key>
25+
<dict>
26+
<key>CFBundleIconFiles</key>
27+
<array>
28+
<string>AppIcon29x29</string>
29+
<string>AppIcon40x40</string>
30+
<string>AppIcon57x57</string>
31+
<string>AppIcon60x60</string>
32+
<string>AppIcon50x50</string>
33+
<string>AppIcon72x72</string>
34+
<string>AppIcon76x76</string>
35+
</array>
36+
<key>UIPrerenderedIcon</key>
37+
<true/>
38+
</dict>
39+
</dict>
40+
<key>CFBundleIdentifier</key>
41+
<string>@@PACKAGENAME@@</string>
42+
<key>CFBundleInfoDictionaryVersion</key>
43+
<string>6.0</string>
44+
<key>CFBundlePackageType</key>
45+
<string>APPL</string>
46+
<key>CFBundleSignature</key>
47+
<string>????</string>
48+
<key>CFBundleSupportedPlatforms</key>
49+
<array>
50+
<string>iPhoneOS</string>
51+
</array>
52+
<key>CFBundleVersion</key>
53+
<string>1.0</string>
54+
<key>LSRequiresIPhoneOS</key>
55+
<true/>
56+
<key>UIDeviceFamily</key>
57+
<array>
58+
<integer>1</integer>
59+
<integer>2</integer>
60+
</array>
61+
<key>UIRequiredDeviceCapabilities</key>
62+
<array>
63+
<string>armv7</string>
64+
</array>
65+
<key>UILaunchStoryboardName</key>
66+
<string>LaunchScreen</string>
67+
<key>UISupportedInterfaceOrientations</key>
68+
<array>
69+
<string>UIInterfaceOrientationPortrait</string>
70+
<string>UIInterfaceOrientationLandscapeLeft</string>
71+
<string>UIInterfaceOrientationLandscapeRight</string>
72+
</array>
73+
<key>UISupportedInterfaceOrientations~ipad</key>
74+
<array>
75+
<string>UIInterfaceOrientationPortrait</string>
76+
<string>UIInterfaceOrientationPortraitUpsideDown</string>
77+
<string>UIInterfaceOrientationLandscapeLeft</string>
78+
<string>UIInterfaceOrientationLandscapeRight</string>
79+
</array>
80+
</dict>
81+
</plist>
File renamed without changes.
File renamed without changes.
File renamed without changes.

ios/application_swift/Resources/Info.plist

-154
This file was deleted.

ios/application_swift/Resources/[email protected]

Whitespace-only changes.

ios/application_swift/Resources/LaunchImage-700-Landscape@2x~ipad.png

Whitespace-only changes.

ios/application_swift/Resources/LaunchImage-700-Landscape~ipad.png

Whitespace-only changes.

ios/application_swift/Resources/LaunchImage-700-Portrait@2x~ipad.png

Whitespace-only changes.

ios/application_swift/Resources/LaunchImage-700-Portrait~ipad.png

Whitespace-only changes.

ios/application_swift/Resources/[email protected]

Whitespace-only changes.

ios/application_swift/Resources/[email protected]

Whitespace-only changes.

ios/application_swift/Resources/[email protected]

Whitespace-only changes.

ios/application_swift/Resources/LaunchImage.png

Whitespace-only changes.

ios/application_swift/Resources/[email protected]

Whitespace-only changes.
File renamed without changes.

0 commit comments

Comments
 (0)