Skip to content

Commit fd694fb

Browse files
committed
Update project
1 parent dd9b295 commit fd694fb

File tree

22 files changed

+246
-26
lines changed

22 files changed

+246
-26
lines changed

DemoAutoLayoutGuide.xcodeproj/project.pbxproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
/* Begin PBXBuildFile section */
1010
222731B022429A7D0063DDA4 /* ImageViewVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 222731AE22429A7D0063DDA4 /* ImageViewVC.swift */; };
1111
222731B122429A7D0063DDA4 /* ImageViewVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = 222731AF22429A7D0063DDA4 /* ImageViewVC.xib */; };
12+
223EDCF4224B1DB9005B0E70 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 223EDCF3224B1DB9005B0E70 /* Assets.xcassets */; };
1213
224035F922449B0E005A5B25 /* ViewVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 224035F722449B0E005A5B25 /* ViewVC.swift */; };
1314
224035FA22449B0E005A5B25 /* ViewVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = 224035F822449B0E005A5B25 /* ViewVC.xib */; };
1415
22BE95922241D077005F7A69 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 22BE95902241D077005F7A69 /* LaunchScreen.storyboard */; };
@@ -17,7 +18,6 @@
1718
22BE95A52241D1CC005F7A69 /* MenuVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = 22BE95A32241D1CC005F7A69 /* MenuVC.xib */; };
1819
22BE95A82241DA8E005F7A69 /* HelloVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22BE95A62241DA8E005F7A69 /* HelloVC.swift */; };
1920
22BE95A92241DA8E005F7A69 /* HelloVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = 22BE95A72241DA8E005F7A69 /* HelloVC.xib */; };
20-
22BE95AB2241DCC4005F7A69 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 22BE95AA2241DCC4005F7A69 /* Assets.xcassets */; };
2121
22BE95B82241F5DE005F7A69 /* SignInVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22BE95B62241F5DE005F7A69 /* SignInVC.swift */; };
2222
22BE95B92241F5DE005F7A69 /* SignInVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = 22BE95B72241F5DE005F7A69 /* SignInVC.xib */; };
2323
22BE95BD22422284005F7A69 /* TextViewVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22BE95BB22422284005F7A69 /* TextViewVC.swift */; };
@@ -35,6 +35,7 @@
3535
/* Begin PBXFileReference section */
3636
222731AE22429A7D0063DDA4 /* ImageViewVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageViewVC.swift; sourceTree = "<group>"; };
3737
222731AF22429A7D0063DDA4 /* ImageViewVC.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ImageViewVC.xib; sourceTree = "<group>"; };
38+
223EDCF3224B1DB9005B0E70 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
3839
224035F722449B0E005A5B25 /* ViewVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewVC.swift; sourceTree = "<group>"; };
3940
224035F822449B0E005A5B25 /* ViewVC.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ViewVC.xib; sourceTree = "<group>"; };
4041
22BE95842241D074005F7A69 /* DemoAutoLayoutGuide.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DemoAutoLayoutGuide.app; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -45,7 +46,6 @@
4546
22BE95A32241D1CC005F7A69 /* MenuVC.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MenuVC.xib; sourceTree = "<group>"; };
4647
22BE95A62241DA8E005F7A69 /* HelloVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HelloVC.swift; sourceTree = "<group>"; };
4748
22BE95A72241DA8E005F7A69 /* HelloVC.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HelloVC.xib; sourceTree = "<group>"; };
48-
22BE95AA2241DCC4005F7A69 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
4949
22BE95B62241F5DE005F7A69 /* SignInVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SignInVC.swift; sourceTree = "<group>"; };
5050
22BE95B72241F5DE005F7A69 /* SignInVC.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SignInVC.xib; sourceTree = "<group>"; };
5151
22BE95BB22422284005F7A69 /* TextViewVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextViewVC.swift; sourceTree = "<group>"; };
@@ -166,7 +166,7 @@
166166
22BE959D2241D1A2005F7A69 /* Resources */ = {
167167
isa = PBXGroup;
168168
children = (
169-
22BE95AA2241DCC4005F7A69 /* Assets.xcassets */,
169+
223EDCF3224B1DB9005B0E70 /* Assets.xcassets */,
170170
);
171171
path = Resources;
172172
sourceTree = "<group>";
@@ -265,9 +265,9 @@
265265
22BE95A92241DA8E005F7A69 /* HelloVC.xib in Resources */,
266266
22BE95BE22422284005F7A69 /* TextViewVC.xib in Resources */,
267267
22BE95C3224224C7005F7A69 /* DetailVC.xib in Resources */,
268-
22BE95AB2241DCC4005F7A69 /* Assets.xcassets in Resources */,
269268
22BE95C7224234BB005F7A69 /* DetailLevel99VC.xib in Resources */,
270269
22BE95922241D077005F7A69 /* LaunchScreen.storyboard in Resources */,
270+
223EDCF4224B1DB9005B0E70 /* Assets.xcassets in Resources */,
271271
224035FA22449B0E005A5B25 /* ViewVC.xib in Resources */,
272272
);
273273
runOnlyForDeploymentPostprocessing = 0;
@@ -426,6 +426,7 @@
426426
22BE95972241D077005F7A69 /* Debug */ = {
427427
isa = XCBuildConfiguration;
428428
buildSettings = {
429+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
429430
CLANG_ENABLE_MODULES = YES;
430431
CODE_SIGN_STYLE = Automatic;
431432
DEVELOPMENT_TEAM = D4Q882ZZC3;
@@ -446,6 +447,7 @@
446447
22BE95982241D077005F7A69 /* Release */ = {
447448
isa = XCBuildConfiguration;
448449
buildSettings = {
450+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
449451
CLANG_ENABLE_MODULES = YES;
450452
CODE_SIGN_STYLE = Automatic;
451453
DEVELOPMENT_TEAM = D4Q882ZZC3;

DemoAutoLayoutGuide/Info.plist

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
<string>$(DEVELOPMENT_LANGUAGE)</string>
77
<key>CFBundleExecutable</key>
88
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIcons</key>
10+
<dict/>
11+
<key>CFBundleIcons~ipad</key>
12+
<dict/>
913
<key>CFBundleIdentifier</key>
1014
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1115
<key>CFBundleInfoDictionaryVersion</key>

DemoAutoLayoutGuide/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json

Lines changed: 41 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,93 +1,117 @@
11
{
22
"images" : [
33
{
4-
"idiom" : "iphone",
54
"size" : "20x20",
5+
"idiom" : "iphone",
6+
"filename" : "[email protected]",
67
"scale" : "2x"
78
},
89
{
9-
"idiom" : "iphone",
1010
"size" : "20x20",
11+
"idiom" : "iphone",
12+
"filename" : "[email protected]",
1113
"scale" : "3x"
1214
},
1315
{
16+
"size" : "29x29",
1417
"idiom" : "iphone",
18+
"filename" : "[email protected]",
19+
"scale" : "1x"
20+
},
21+
{
1522
"size" : "29x29",
23+
"idiom" : "iphone",
24+
"filename" : "[email protected]",
1625
"scale" : "2x"
1726
},
1827
{
19-
"idiom" : "iphone",
2028
"size" : "29x29",
29+
"idiom" : "iphone",
30+
"filename" : "[email protected]",
2131
"scale" : "3x"
2232
},
2333
{
24-
"idiom" : "iphone",
2534
"size" : "40x40",
35+
"idiom" : "iphone",
36+
"filename" : "[email protected]",
2637
"scale" : "2x"
2738
},
2839
{
29-
"idiom" : "iphone",
3040
"size" : "40x40",
41+
"idiom" : "iphone",
42+
"filename" : "[email protected]",
3143
"scale" : "3x"
3244
},
3345
{
34-
"idiom" : "iphone",
3546
"size" : "60x60",
47+
"idiom" : "iphone",
48+
"filename" : "[email protected]",
3649
"scale" : "2x"
3750
},
3851
{
39-
"idiom" : "iphone",
4052
"size" : "60x60",
53+
"idiom" : "iphone",
54+
"filename" : "[email protected]",
4155
"scale" : "3x"
4256
},
4357
{
44-
"idiom" : "ipad",
4558
"size" : "20x20",
59+
"idiom" : "ipad",
60+
"filename" : "[email protected]",
4661
"scale" : "1x"
4762
},
4863
{
49-
"idiom" : "ipad",
5064
"size" : "20x20",
65+
"idiom" : "ipad",
66+
"filename" : "[email protected]",
5167
"scale" : "2x"
5268
},
5369
{
54-
"idiom" : "ipad",
5570
"size" : "29x29",
71+
"idiom" : "ipad",
72+
"filename" : "[email protected]",
5673
"scale" : "1x"
5774
},
5875
{
59-
"idiom" : "ipad",
6076
"size" : "29x29",
77+
"idiom" : "ipad",
78+
"filename" : "[email protected]",
6179
"scale" : "2x"
6280
},
6381
{
64-
"idiom" : "ipad",
6582
"size" : "40x40",
83+
"idiom" : "ipad",
84+
"filename" : "[email protected]",
6685
"scale" : "1x"
6786
},
6887
{
69-
"idiom" : "ipad",
7088
"size" : "40x40",
89+
"idiom" : "ipad",
90+
"filename" : "[email protected]",
7191
"scale" : "2x"
7292
},
7393
{
74-
"idiom" : "ipad",
7594
"size" : "76x76",
95+
"idiom" : "ipad",
96+
"filename" : "[email protected]",
7697
"scale" : "1x"
7798
},
7899
{
79-
"idiom" : "ipad",
80100
"size" : "76x76",
101+
"idiom" : "ipad",
102+
"filename" : "[email protected]",
81103
"scale" : "2x"
82104
},
83105
{
84-
"idiom" : "ipad",
85106
"size" : "83.5x83.5",
107+
"idiom" : "ipad",
108+
"filename" : "[email protected]",
86109
"scale" : "2x"
87110
},
88111
{
89-
"idiom" : "ios-marketing",
90112
"size" : "1024x1024",
113+
"idiom" : "ios-marketing",
114+
"filename" : "[email protected]",
91115
"scale" : "1x"
92116
}
93117
],
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)