fwtoolkit 1.0.6 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +6 -14
- data/lib/fwtoolkit/cli/project.rb +7 -11
- data/lib/fwtoolkit/cli/xcode.rb +3 -3
- data/lib/fwtoolkit/cli.rb +5 -8
- data/lib/fwtoolkit/config/config.sample +2 -3
- data/lib/fwtoolkit/configfile.rb +0 -1
- data/lib/fwtoolkit/version.rb +1 -1
- data/templates/objc_project/git/.gitignore +31 -0
- data/templates/objc_project/rvm/Gemfile +3 -0
- data/templates/objc_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt +441 -0
- data/templates/{default_project → objc_project}/xcode/%project_name%/%project_name%.xcodeproj/project.xcworkspace/contents.xcworkspacedata.tt +0 -0
- data/templates/{default_project → objc_project}/xcode/%project_name%/%target_name%/%class_prefix%AppDelegate.h.tt +7 -4
- data/templates/{default_project → objc_project}/xcode/%project_name%/%target_name%/%class_prefix%AppDelegate.m.tt +14 -18
- data/templates/objc_project/xcode/%project_name%/%target_name%/%class_prefix%ViewController.h.tt +15 -0
- data/templates/objc_project/xcode/%project_name%/%target_name%/%class_prefix%ViewController.m.tt +27 -0
- data/templates/objc_project/xcode/%project_name%/%target_name%/AppDelegate.swift.tt +46 -0
- data/templates/objc_project/xcode/%project_name%/%target_name%/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
- data/templates/objc_project/xcode/%project_name%/%target_name%/Resources/Base.lproj/LaunchScreen.storyboard +27 -0
- data/templates/objc_project/xcode/%project_name%/%target_name%/Resources/Base.lproj/Main.storyboard +26 -0
- data/templates/{default_project/xcode/%project_name%/%target_name%/Supporting Files/%project_name%-Info.plist → objc_project/xcode/%project_name%/%target_name%/Supporting Files/Info.plist } +8 -6
- data/templates/{default_project → objc_project}/xcode/%project_name%/%target_name%/Supporting Files/fw-shared.xcconfig +1 -5
- data/templates/{default_project → objc_project}/xcode/%project_name%/%target_name%/Supporting Files/main.m.tt +3 -5
- data/templates/objc_project/xcode/%project_name%/%target_name%/ViewController.swift.tt +25 -0
- data/templates/objc_project/xcode/%project_name%/%target_name%Tests/%project_name%Tests.m.tt +39 -0
- data/templates/{default_project/xcode/%project_name%/%tests_target_name%/Supporting Files/%tests_target_name%-Info.plist → objc_project/xcode/%project_name%/%target_name%Tests/Resources/Info.plist} +4 -2
- data/templates/objc_project/xcode/%project_name%/%tests_target_name%/%project_name%Tests.swift.tt +36 -0
- data/templates/objc_project/xcode/%project_name%/%tests_target_name%/Supporting Files/Info.plist +24 -0
- data/templates/{default_project → objc_project}/xcode/%project_name%.xcworkspace/contents.xcworkspacedata.tt +1 -1
- data/templates/{default_project → objc_project}/xcode/Podfile.tt +2 -0
- data/templates/{default_project → objc_project}/xcode/Rakefile.tt +0 -5
- data/templates/swift_project/git/.gitignore +31 -0
- data/templates/swift_project/rvm/Gemfile +3 -0
- data/templates/swift_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt +435 -0
- data/templates/swift_project/xcode/%project_name%/%project_name%.xcodeproj/project.xcworkspace/contents.xcworkspacedata.tt +7 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/%class_prefix%AppDelegate.h.tt +18 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/%class_prefix%AppDelegate.m.tt +45 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/%class_prefix%ViewController.h.tt +15 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/%class_prefix%ViewController.m.tt +27 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/AppDelegate.swift.tt +46 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json +73 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/Resources/Base.lproj/LaunchScreen.storyboard +27 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/Resources/Base.lproj/Main.storyboard +25 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/Supporting Files/Info.plist +47 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/Supporting Files/fw-shared.xcconfig +37 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/Supporting Files/main.m.tt +16 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%/ViewController.swift.tt +25 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%Tests/%project_name%Tests.m.tt +39 -0
- data/templates/swift_project/xcode/%project_name%/%target_name%Tests/Resources/Info.plist +24 -0
- data/templates/swift_project/xcode/%project_name%/%tests_target_name%/%project_name%Tests.swift.tt +36 -0
- data/templates/swift_project/xcode/%project_name%/%tests_target_name%/Supporting Files/Info.plist +24 -0
- data/templates/swift_project/xcode/%project_name%/.DS_Store +0 -0
- data/templates/swift_project/xcode/%project_name%.xcworkspace/contents.xcworkspacedata.tt +7 -0
- data/templates/swift_project/xcode/.DS_Store +0 -0
- data/templates/swift_project/xcode/Podfile.tt +5 -0
- data/templates/swift_project/xcode/Rakefile.tt +9 -0
- metadata +103 -123
- data/templates/default_project/frank/%project_name%/%target_name%/%class_prefix%AppDelegate+Frank.h.tt +0 -15
- data/templates/default_project/frank/%project_name%/%target_name%/%class_prefix%AppDelegate+Frank.m.tt +0 -86
- data/templates/default_project/frank/%project_name%/Frank/features/example.feature +0 -8
- data/templates/default_project/frank/%project_name%/Frank/features/step_definitions/launch_steps.rb +0 -15
- data/templates/default_project/frank/%project_name%/Frank/features/support/env.rb +0 -21
- data/templates/default_project/frank/%project_name%/Frank/features/support/mimic.rb +0 -94
- data/templates/default_project/frank/~template_config.rb +0 -11
- data/templates/default_project/frank_seed_core_data/%project_name%/Frank/features/support/models/%class_name%.rb.tt +0 -30
- data/templates/default_project/frank_seed_support/%project_name%/Frank/features/support/models/factories.rb.tt +0 -10
- data/templates/default_project/frank_seed_support/%project_name%/Frank/features/support/views/my_objects_json.erb +0 -7
- data/templates/default_project/frank_seed_support/%project_name%/Frank/features/support/views/my_objects_xml.erb +0 -7
- data/templates/default_project/rvm/.rvmrc.tt +0 -41
- data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt +0 -547
- data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/xcshareddata/xcschemes/%project_name%-Release.xcscheme.tt +0 -105
- data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/xcshareddata/xcschemes/%project_name%-Testing.xcscheme.tt +0 -105
- data/templates/default_project/xcode/%project_name%/%project_name%.xcodeproj/xcshareddata/xcschemes/%project_name%.xcscheme.tt +0 -105
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/%project_name%-Prefix.pch.tt +0 -14
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/en.lproj/InfoPlist.strings +0 -2
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/info.plist.h.tt +0 -8
- data/templates/default_project/xcode/%project_name%/%target_name%/Supporting Files/version.sh +0 -159
- data/templates/default_project/xcode/%project_name%/%tests_target_name%/%project_name%Tests.h.tt +0 -13
- data/templates/default_project/xcode/%project_name%/%tests_target_name%/%project_name%Tests.m.tt +0 -32
- data/templates/default_project/xcode/%project_name%/%tests_target_name%/Supporting Files/en.lproj/InfoPlist.strings +0 -2
- data/templates/default_project/xcode/%project_name%/Default.png +0 -0
- data/templates/default_project/xcode/%project_name%/Resources/Default-568h@2x.png +0 -0
- data/templates/default_project/xcode/%project_name%/Resources/Default.png +0 -0
- data/templates/default_project/xcode/%project_name%/Resources/Default@2x.png +0 -0
- data/templates/default_project/xcode/%project_name%.xcworkspace/xcshareddata/%project_name%.xccheckout.tt +0 -41
- data/templates/default_project/xcode/FWProjectfile.tt +0 -14
- data/templates/default_project/xcode/~template_config.rb +0 -5
@@ -0,0 +1,435 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
B75028B51C5A3F94000EB3CF /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B75028B41C5A3F94000EB3CF /* AppDelegate.swift */; };
|
11
|
+
B75028B71C5A3F94000EB3CF /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B75028B61C5A3F94000EB3CF /* ViewController.swift */; };
|
12
|
+
B75028BA1C5A3F94000EB3CF /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = B75028B81C5A3F94000EB3CF /* Main.storyboard */; };
|
13
|
+
B75028BC1C5A3F94000EB3CF /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B75028BB1C5A3F94000EB3CF /* Assets.xcassets */; };
|
14
|
+
B75028BF1C5A3F94000EB3CF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = B75028BD1C5A3F94000EB3CF /* LaunchScreen.storyboard */; };
|
15
|
+
B75028CA1C5A3F94000EB3CF /* <%= config[:project_name] %>Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B75028C91C5A3F94000EB3CF /* <%= config[:project_name] %>Tests.swift */; };
|
16
|
+
/* End PBXBuildFile section */
|
17
|
+
|
18
|
+
/* Begin PBXContainerItemProxy section */
|
19
|
+
B75028C61C5A3F94000EB3CF /* PBXContainerItemProxy */ = {
|
20
|
+
isa = PBXContainerItemProxy;
|
21
|
+
containerPortal = B75028A91C5A3F94000EB3CF /* Project object */;
|
22
|
+
proxyType = 1;
|
23
|
+
remoteGlobalIDString = B75028B01C5A3F94000EB3CF;
|
24
|
+
remoteInfo = "<%= config[:project_name] %>";
|
25
|
+
};
|
26
|
+
/* End PBXContainerItemProxy section */
|
27
|
+
|
28
|
+
/* Begin PBXFileReference section */
|
29
|
+
B75028B11C5A3F94000EB3CF /* <%= config[:project_name] %>.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "<%= config[:project_name] %>.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
30
|
+
B75028B41C5A3F94000EB3CF /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
31
|
+
B75028B61C5A3F94000EB3CF /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
|
32
|
+
B75028B91C5A3F94000EB3CF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
33
|
+
B75028BB1C5A3F94000EB3CF /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
34
|
+
B75028BE1C5A3F94000EB3CF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
35
|
+
B75028C01C5A3F94000EB3CF /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
36
|
+
B75028C51C5A3F94000EB3CF /* <%= config[:project_name] %>Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "<%= config[:project_name] %>Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
|
37
|
+
B75028C91C5A3F94000EB3CF /* <%= config[:project_name] %>Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "<%= config[:project_name] %>Tests.swift"; sourceTree = "<group>"; };
|
38
|
+
B75028CB1C5A3F94000EB3CF /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
39
|
+
B75028D71C5A4093000EB3CF /* fw-shared.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "fw-shared.xcconfig"; sourceTree = "<group>"; };
|
40
|
+
/* End PBXFileReference section */
|
41
|
+
|
42
|
+
/* Begin PBXFrameworksBuildPhase section */
|
43
|
+
B75028AE1C5A3F94000EB3CF /* Frameworks */ = {
|
44
|
+
isa = PBXFrameworksBuildPhase;
|
45
|
+
buildActionMask = 2147483647;
|
46
|
+
files = (
|
47
|
+
);
|
48
|
+
runOnlyForDeploymentPostprocessing = 0;
|
49
|
+
};
|
50
|
+
B75028C21C5A3F94000EB3CF /* Frameworks */ = {
|
51
|
+
isa = PBXFrameworksBuildPhase;
|
52
|
+
buildActionMask = 2147483647;
|
53
|
+
files = (
|
54
|
+
);
|
55
|
+
runOnlyForDeploymentPostprocessing = 0;
|
56
|
+
};
|
57
|
+
/* End PBXFrameworksBuildPhase section */
|
58
|
+
|
59
|
+
/* Begin PBXGroup section */
|
60
|
+
B75028A81C5A3F94000EB3CF = {
|
61
|
+
isa = PBXGroup;
|
62
|
+
children = (
|
63
|
+
B75028B21C5A3F94000EB3CF /* Products */,
|
64
|
+
B75028B31C5A3F94000EB3CF /* <%= config[:target_name] %> */,
|
65
|
+
B75028C81C5A3F94000EB3CF /* <%= config[:tests_target_name] %> */,
|
66
|
+
);
|
67
|
+
sourceTree = "<group>";
|
68
|
+
};
|
69
|
+
B75028B21C5A3F94000EB3CF /* Products */ = {
|
70
|
+
isa = PBXGroup;
|
71
|
+
children = (
|
72
|
+
B75028B11C5A3F94000EB3CF /* <%= config[:project_name] %>.app */,
|
73
|
+
B75028C51C5A3F94000EB3CF /* <%= config[:project_name] %>Tests.xctest */,
|
74
|
+
);
|
75
|
+
name = Products;
|
76
|
+
sourceTree = "<group>";
|
77
|
+
};
|
78
|
+
B75028B31C5A3F94000EB3CF /* <%= config[:target_name] %> */ = {
|
79
|
+
isa = PBXGroup;
|
80
|
+
children = (
|
81
|
+
B75028D51C5A404A000EB3CF /* Resources */,
|
82
|
+
B75028D41C5A4045000EB3CF /* Supporting Files */,
|
83
|
+
B75028B41C5A3F94000EB3CF /* AppDelegate.swift */,
|
84
|
+
B75028B61C5A3F94000EB3CF /* ViewController.swift */,
|
85
|
+
);
|
86
|
+
path = "<%= config[:target_name] %>";
|
87
|
+
sourceTree = "<group>";
|
88
|
+
};
|
89
|
+
B75028C81C5A3F94000EB3CF /* <%= config[:tests_target_name] %> */ = {
|
90
|
+
isa = PBXGroup;
|
91
|
+
children = (
|
92
|
+
B75028D61C5A405D000EB3CF /* Supporting Files */,
|
93
|
+
B75028C91C5A3F94000EB3CF /* <%= config[:project_name] %>Tests.swift */,
|
94
|
+
);
|
95
|
+
path = "<%= config[:tests_target_name] %>";
|
96
|
+
sourceTree = "<group>";
|
97
|
+
};
|
98
|
+
B75028D41C5A4045000EB3CF /* Supporting Files */ = {
|
99
|
+
isa = PBXGroup;
|
100
|
+
children = (
|
101
|
+
B75028C01C5A3F94000EB3CF /* Info.plist */,
|
102
|
+
B75028D71C5A4093000EB3CF /* fw-shared.xcconfig */,
|
103
|
+
);
|
104
|
+
path = "Supporting Files";
|
105
|
+
sourceTree = "<group>";
|
106
|
+
};
|
107
|
+
B75028D51C5A404A000EB3CF /* Resources */ = {
|
108
|
+
isa = PBXGroup;
|
109
|
+
children = (
|
110
|
+
B75028BB1C5A3F94000EB3CF /* Assets.xcassets */,
|
111
|
+
B75028BD1C5A3F94000EB3CF /* LaunchScreen.storyboard */,
|
112
|
+
B75028B81C5A3F94000EB3CF /* Main.storyboard */,
|
113
|
+
);
|
114
|
+
path = Resources;
|
115
|
+
sourceTree = "<group>";
|
116
|
+
};
|
117
|
+
B75028D61C5A405D000EB3CF /* Supporting Files */ = {
|
118
|
+
isa = PBXGroup;
|
119
|
+
children = (
|
120
|
+
B75028CB1C5A3F94000EB3CF /* Info.plist */,
|
121
|
+
);
|
122
|
+
path = "Supporting Files";
|
123
|
+
sourceTree = "<group>";
|
124
|
+
};
|
125
|
+
/* End PBXGroup section */
|
126
|
+
|
127
|
+
/* Begin PBXNativeTarget section */
|
128
|
+
B75028B01C5A3F94000EB3CF /* <%= config[:project_name] %> */ = {
|
129
|
+
isa = PBXNativeTarget;
|
130
|
+
buildConfigurationList = B75028CE1C5A3F94000EB3CF /* Build configuration list for PBXNativeTarget "<%= config[:project_name] %>" */;
|
131
|
+
buildPhases = (
|
132
|
+
B75028AD1C5A3F94000EB3CF /* Sources */,
|
133
|
+
B75028AE1C5A3F94000EB3CF /* Frameworks */,
|
134
|
+
B75028AF1C5A3F94000EB3CF /* Resources */,
|
135
|
+
);
|
136
|
+
buildRules = (
|
137
|
+
);
|
138
|
+
dependencies = (
|
139
|
+
);
|
140
|
+
name = "<%= config[:project_name] %>";
|
141
|
+
productName = "<%= config[:project_name] %>";
|
142
|
+
productReference = B75028B11C5A3F94000EB3CF /* <%= config[:project_name] %>.app */;
|
143
|
+
productType = "com.apple.product-type.application";
|
144
|
+
};
|
145
|
+
B75028C41C5A3F94000EB3CF /* <%= config[:project_name] %>Tests */ = {
|
146
|
+
isa = PBXNativeTarget;
|
147
|
+
buildConfigurationList = B75028D11C5A3F94000EB3CF /* Build configuration list for PBXNativeTarget "<%= config[:project_name] %>Tests" */;
|
148
|
+
buildPhases = (
|
149
|
+
B75028C11C5A3F94000EB3CF /* Sources */,
|
150
|
+
B75028C21C5A3F94000EB3CF /* Frameworks */,
|
151
|
+
B75028C31C5A3F94000EB3CF /* Resources */,
|
152
|
+
);
|
153
|
+
buildRules = (
|
154
|
+
);
|
155
|
+
dependencies = (
|
156
|
+
B75028C71C5A3F94000EB3CF /* PBXTargetDependency */,
|
157
|
+
);
|
158
|
+
name = "<%= config[:project_name] %>Tests";
|
159
|
+
productName = "<%= config[:project_name] %>Tests";
|
160
|
+
productReference = B75028C51C5A3F94000EB3CF /* <%= config[:project_name] %>Tests.xctest */;
|
161
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
162
|
+
};
|
163
|
+
/* End PBXNativeTarget section */
|
164
|
+
|
165
|
+
/* Begin PBXProject section */
|
166
|
+
B75028A91C5A3F94000EB3CF /* Project object */ = {
|
167
|
+
isa = PBXProject;
|
168
|
+
attributes = {
|
169
|
+
LastSwiftUpdateCheck = 0720;
|
170
|
+
LastUpgradeCheck = 0720;
|
171
|
+
ORGANIZATIONNAME = "Future Workshops";
|
172
|
+
TargetAttributes = {
|
173
|
+
B75028B01C5A3F94000EB3CF = {
|
174
|
+
CreatedOnToolsVersion = 7.2;
|
175
|
+
};
|
176
|
+
B75028C41C5A3F94000EB3CF = {
|
177
|
+
CreatedOnToolsVersion = 7.2;
|
178
|
+
TestTargetID = B75028B01C5A3F94000EB3CF;
|
179
|
+
};
|
180
|
+
};
|
181
|
+
};
|
182
|
+
buildConfigurationList = B75028AC1C5A3F94000EB3CF /* Build configuration list for PBXProject "<%= config[:project_name] %>" */;
|
183
|
+
compatibilityVersion = "Xcode 3.2";
|
184
|
+
developmentRegion = English;
|
185
|
+
hasScannedForEncodings = 0;
|
186
|
+
knownRegions = (
|
187
|
+
en,
|
188
|
+
Base,
|
189
|
+
);
|
190
|
+
mainGroup = B75028A81C5A3F94000EB3CF;
|
191
|
+
productRefGroup = B75028B21C5A3F94000EB3CF /* Products */;
|
192
|
+
projectDirPath = "";
|
193
|
+
projectRoot = "";
|
194
|
+
targets = (
|
195
|
+
B75028B01C5A3F94000EB3CF /* <%= config[:project_name] %> */,
|
196
|
+
B75028C41C5A3F94000EB3CF /* <%= config[:project_name] %>Tests */,
|
197
|
+
);
|
198
|
+
};
|
199
|
+
/* End PBXProject section */
|
200
|
+
|
201
|
+
/* Begin PBXResourcesBuildPhase section */
|
202
|
+
B75028AF1C5A3F94000EB3CF /* Resources */ = {
|
203
|
+
isa = PBXResourcesBuildPhase;
|
204
|
+
buildActionMask = 2147483647;
|
205
|
+
files = (
|
206
|
+
B75028BF1C5A3F94000EB3CF /* LaunchScreen.storyboard in Resources */,
|
207
|
+
B75028BC1C5A3F94000EB3CF /* Assets.xcassets in Resources */,
|
208
|
+
B75028BA1C5A3F94000EB3CF /* Main.storyboard in Resources */,
|
209
|
+
);
|
210
|
+
runOnlyForDeploymentPostprocessing = 0;
|
211
|
+
};
|
212
|
+
B75028C31C5A3F94000EB3CF /* Resources */ = {
|
213
|
+
isa = PBXResourcesBuildPhase;
|
214
|
+
buildActionMask = 2147483647;
|
215
|
+
files = (
|
216
|
+
);
|
217
|
+
runOnlyForDeploymentPostprocessing = 0;
|
218
|
+
};
|
219
|
+
/* End PBXResourcesBuildPhase section */
|
220
|
+
|
221
|
+
/* Begin PBXSourcesBuildPhase section */
|
222
|
+
B75028AD1C5A3F94000EB3CF /* Sources */ = {
|
223
|
+
isa = PBXSourcesBuildPhase;
|
224
|
+
buildActionMask = 2147483647;
|
225
|
+
files = (
|
226
|
+
B75028B71C5A3F94000EB3CF /* ViewController.swift in Sources */,
|
227
|
+
B75028B51C5A3F94000EB3CF /* AppDelegate.swift in Sources */,
|
228
|
+
);
|
229
|
+
runOnlyForDeploymentPostprocessing = 0;
|
230
|
+
};
|
231
|
+
B75028C11C5A3F94000EB3CF /* Sources */ = {
|
232
|
+
isa = PBXSourcesBuildPhase;
|
233
|
+
buildActionMask = 2147483647;
|
234
|
+
files = (
|
235
|
+
B75028CA1C5A3F94000EB3CF /* <%= config[:project_name] %>Tests.swift in Sources */,
|
236
|
+
);
|
237
|
+
runOnlyForDeploymentPostprocessing = 0;
|
238
|
+
};
|
239
|
+
/* End PBXSourcesBuildPhase section */
|
240
|
+
|
241
|
+
/* Begin PBXTargetDependency section */
|
242
|
+
B75028C71C5A3F94000EB3CF /* PBXTargetDependency */ = {
|
243
|
+
isa = PBXTargetDependency;
|
244
|
+
target = B75028B01C5A3F94000EB3CF /* <%= config[:project_name] %> */;
|
245
|
+
targetProxy = B75028C61C5A3F94000EB3CF /* PBXContainerItemProxy */;
|
246
|
+
};
|
247
|
+
/* End PBXTargetDependency section */
|
248
|
+
|
249
|
+
/* Begin PBXVariantGroup section */
|
250
|
+
B75028B81C5A3F94000EB3CF /* Main.storyboard */ = {
|
251
|
+
isa = PBXVariantGroup;
|
252
|
+
children = (
|
253
|
+
B75028B91C5A3F94000EB3CF /* Base */,
|
254
|
+
);
|
255
|
+
name = Main.storyboard;
|
256
|
+
path = .;
|
257
|
+
sourceTree = "<group>";
|
258
|
+
};
|
259
|
+
B75028BD1C5A3F94000EB3CF /* LaunchScreen.storyboard */ = {
|
260
|
+
isa = PBXVariantGroup;
|
261
|
+
children = (
|
262
|
+
B75028BE1C5A3F94000EB3CF /* Base */,
|
263
|
+
);
|
264
|
+
name = LaunchScreen.storyboard;
|
265
|
+
path = .;
|
266
|
+
sourceTree = "<group>";
|
267
|
+
};
|
268
|
+
/* End PBXVariantGroup section */
|
269
|
+
|
270
|
+
/* Begin XCBuildConfiguration section */
|
271
|
+
B75028CC1C5A3F94000EB3CF /* Debug */ = {
|
272
|
+
isa = XCBuildConfiguration;
|
273
|
+
baseConfigurationReference = B75028D71C5A4093000EB3CF /* fw-shared.xcconfig */;
|
274
|
+
buildSettings = {
|
275
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
276
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
277
|
+
CLANG_CXX_LIBRARY = "libc++";
|
278
|
+
CLANG_ENABLE_MODULES = YES;
|
279
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
280
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
281
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
282
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
283
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
284
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
285
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
286
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
287
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
288
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
289
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
290
|
+
COPY_PHASE_STRIP = NO;
|
291
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
292
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
293
|
+
ENABLE_TESTABILITY = YES;
|
294
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
295
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
296
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
297
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
298
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
299
|
+
"DEBUG=1",
|
300
|
+
"$(inherited)",
|
301
|
+
);
|
302
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
303
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
304
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
305
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
306
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
307
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
308
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.2;
|
309
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
310
|
+
ONLY_ACTIVE_ARCH = YES;
|
311
|
+
SDKROOT = iphoneos;
|
312
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
313
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
314
|
+
};
|
315
|
+
name = Debug;
|
316
|
+
};
|
317
|
+
B75028CD1C5A3F94000EB3CF /* Release */ = {
|
318
|
+
isa = XCBuildConfiguration;
|
319
|
+
baseConfigurationReference = B75028D71C5A4093000EB3CF /* fw-shared.xcconfig */;
|
320
|
+
buildSettings = {
|
321
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
322
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
323
|
+
CLANG_CXX_LIBRARY = "libc++";
|
324
|
+
CLANG_ENABLE_MODULES = YES;
|
325
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
326
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
327
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
328
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
329
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
330
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
331
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
332
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
333
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
334
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
335
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
336
|
+
COPY_PHASE_STRIP = NO;
|
337
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
338
|
+
ENABLE_NS_ASSERTIONS = NO;
|
339
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
340
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
341
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
342
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
343
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
344
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
345
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
346
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
347
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
348
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.2;
|
349
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
350
|
+
SDKROOT = iphoneos;
|
351
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
352
|
+
VALIDATE_PRODUCT = YES;
|
353
|
+
};
|
354
|
+
name = Release;
|
355
|
+
};
|
356
|
+
B75028CF1C5A3F94000EB3CF /* Debug */ = {
|
357
|
+
isa = XCBuildConfiguration;
|
358
|
+
buildSettings = {
|
359
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
360
|
+
INFOPLIST_FILE = "<%= config[:target_name] %>/Supporting Files/Info.plist";
|
361
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
362
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.futureworkshops.<%= config[:project_name] %>";
|
363
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
364
|
+
};
|
365
|
+
name = Debug;
|
366
|
+
};
|
367
|
+
B75028D01C5A3F94000EB3CF /* Release */ = {
|
368
|
+
isa = XCBuildConfiguration;
|
369
|
+
buildSettings = {
|
370
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
371
|
+
INFOPLIST_FILE = "<%= config[:target_name] %>/Supporting Files/Info.plist";
|
372
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
373
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.futureworkshops.<%= config[:project_name] %>";
|
374
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
375
|
+
};
|
376
|
+
name = Release;
|
377
|
+
};
|
378
|
+
B75028D21C5A3F94000EB3CF /* Debug */ = {
|
379
|
+
isa = XCBuildConfiguration;
|
380
|
+
buildSettings = {
|
381
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
382
|
+
INFOPLIST_FILE = "<%= config[:tests_target_name] %>/Supporting Files/Info.plist";
|
383
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
384
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.futureworkshops.<%= config[:project_name] %>Tests";
|
385
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
386
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/<%= config[:project_name] %>.app/<%= config[:project_name] %>";
|
387
|
+
};
|
388
|
+
name = Debug;
|
389
|
+
};
|
390
|
+
B75028D31C5A3F94000EB3CF /* Release */ = {
|
391
|
+
isa = XCBuildConfiguration;
|
392
|
+
buildSettings = {
|
393
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
394
|
+
INFOPLIST_FILE = "<%= config[:tests_target_name] %>/Supporting Files/Info.plist";
|
395
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
396
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.futureworkshops.<%= config[:project_name] %>Tests";
|
397
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
398
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/<%= config[:project_name] %>.app/<%= config[:project_name] %>";
|
399
|
+
};
|
400
|
+
name = Release;
|
401
|
+
};
|
402
|
+
/* End XCBuildConfiguration section */
|
403
|
+
|
404
|
+
/* Begin XCConfigurationList section */
|
405
|
+
B75028AC1C5A3F94000EB3CF /* Build configuration list for PBXProject "<%= config[:project_name] %>" */ = {
|
406
|
+
isa = XCConfigurationList;
|
407
|
+
buildConfigurations = (
|
408
|
+
B75028CC1C5A3F94000EB3CF /* Debug */,
|
409
|
+
B75028CD1C5A3F94000EB3CF /* Release */,
|
410
|
+
);
|
411
|
+
defaultConfigurationIsVisible = 0;
|
412
|
+
defaultConfigurationName = Release;
|
413
|
+
};
|
414
|
+
B75028CE1C5A3F94000EB3CF /* Build configuration list for PBXNativeTarget "<%= config[:project_name] %>" */ = {
|
415
|
+
isa = XCConfigurationList;
|
416
|
+
buildConfigurations = (
|
417
|
+
B75028CF1C5A3F94000EB3CF /* Debug */,
|
418
|
+
B75028D01C5A3F94000EB3CF /* Release */,
|
419
|
+
);
|
420
|
+
defaultConfigurationIsVisible = 0;
|
421
|
+
defaultConfigurationName = Release;
|
422
|
+
};
|
423
|
+
B75028D11C5A3F94000EB3CF /* Build configuration list for PBXNativeTarget "<%= config[:project_name] %>Tests" */ = {
|
424
|
+
isa = XCConfigurationList;
|
425
|
+
buildConfigurations = (
|
426
|
+
B75028D21C5A3F94000EB3CF /* Debug */,
|
427
|
+
B75028D31C5A3F94000EB3CF /* Release */,
|
428
|
+
);
|
429
|
+
defaultConfigurationIsVisible = 0;
|
430
|
+
defaultConfigurationName = Release;
|
431
|
+
};
|
432
|
+
/* End XCConfigurationList section */
|
433
|
+
};
|
434
|
+
rootObject = B75028A91C5A3F94000EB3CF /* Project object */;
|
435
|
+
}
|
data/templates/swift_project/xcode/%project_name%/%target_name%/%class_prefix%AppDelegate.h.tt
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
//
|
2
|
+
// AppDelegate.h
|
3
|
+
// <%= config[:project_name] %>
|
4
|
+
//
|
5
|
+
// Created by <%= config[:project_creator] %> on 02/01/2015.
|
6
|
+
// Copyright (c) 2015 <%= config[:organization_name] %>. All rights reserved.
|
7
|
+
//
|
8
|
+
|
9
|
+
@import UIKit;
|
10
|
+
|
11
|
+
|
12
|
+
@interface <%= config[:class_prefix] %>AppDelegate : UIResponder <UIApplicationDelegate>
|
13
|
+
|
14
|
+
@property (strong, nonatomic) UIWindow *window;
|
15
|
+
|
16
|
+
|
17
|
+
@end
|
18
|
+
|
data/templates/swift_project/xcode/%project_name%/%target_name%/%class_prefix%AppDelegate.m.tt
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
//
|
2
|
+
// AppDelegate.m
|
3
|
+
// <%= config[:project_name] %>
|
4
|
+
//
|
5
|
+
// Created by <%= config[:project_creator] %> on 02/01/2015.
|
6
|
+
// Copyright (c) 2015 <%= config[:organization_name] %>. All rights reserved.
|
7
|
+
//
|
8
|
+
|
9
|
+
#import "<%= config[:class_prefix] %>AppDelegate.h"
|
10
|
+
|
11
|
+
@interface <%= config[:class_prefix] %>AppDelegate ()
|
12
|
+
|
13
|
+
@end
|
14
|
+
|
15
|
+
@implementation <%= config[:class_prefix] %>AppDelegate
|
16
|
+
|
17
|
+
|
18
|
+
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
19
|
+
// Override point for customization after application launch.
|
20
|
+
return YES;
|
21
|
+
}
|
22
|
+
|
23
|
+
- (void)applicationWillResignActive:(UIApplication *)application {
|
24
|
+
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
|
25
|
+
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
|
26
|
+
}
|
27
|
+
|
28
|
+
- (void)applicationDidEnterBackground:(UIApplication *)application {
|
29
|
+
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
|
30
|
+
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
|
31
|
+
}
|
32
|
+
|
33
|
+
- (void)applicationWillEnterForeground:(UIApplication *)application {
|
34
|
+
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
|
35
|
+
}
|
36
|
+
|
37
|
+
- (void)applicationDidBecomeActive:(UIApplication *)application {
|
38
|
+
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
|
39
|
+
}
|
40
|
+
|
41
|
+
- (void)applicationWillTerminate:(UIApplication *)application {
|
42
|
+
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
|
43
|
+
}
|
44
|
+
|
45
|
+
@end
|
data/templates/swift_project/xcode/%project_name%/%target_name%/%class_prefix%ViewController.h.tt
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
//
|
2
|
+
// ViewController.h
|
3
|
+
// <%= config[:project_name] %>
|
4
|
+
//
|
5
|
+
// Created by <%= config[:project_creator] %> on 02/01/2015.
|
6
|
+
// Copyright (c) 2015 <%= config[:organization_name] %>. All rights reserved.
|
7
|
+
//
|
8
|
+
|
9
|
+
@import UIKit;
|
10
|
+
|
11
|
+
@interface <%= config[:class_prefix] %>ViewController : UIViewController
|
12
|
+
|
13
|
+
|
14
|
+
@end
|
15
|
+
|
data/templates/swift_project/xcode/%project_name%/%target_name%/%class_prefix%ViewController.m.tt
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
//
|
2
|
+
// ViewController.m
|
3
|
+
// <%= config[:project_name] %>
|
4
|
+
//
|
5
|
+
// Created by <%= config[:project_creator] %> on 02/01/2015.
|
6
|
+
// Copyright (c) 2015 <%= config[:organization_name] %>. All rights reserved.
|
7
|
+
//
|
8
|
+
|
9
|
+
#import "<%= config[:class_prefix] %>ViewController.h"
|
10
|
+
|
11
|
+
@interface <%= config[:class_prefix] %>ViewController ()
|
12
|
+
|
13
|
+
@end
|
14
|
+
|
15
|
+
@implementation <%= config[:class_prefix] %>ViewController
|
16
|
+
|
17
|
+
- (void)viewDidLoad {
|
18
|
+
[super viewDidLoad];
|
19
|
+
// Do any additional setup after loading the view, typically from a nib.
|
20
|
+
}
|
21
|
+
|
22
|
+
- (void)didReceiveMemoryWarning {
|
23
|
+
[super didReceiveMemoryWarning];
|
24
|
+
// Dispose of any resources that can be recreated.
|
25
|
+
}
|
26
|
+
|
27
|
+
@end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
//
|
2
|
+
// AppDelegate.swift
|
3
|
+
// <%= config[:project_name] %>
|
4
|
+
//
|
5
|
+
// Created by Fabio Gallonetto on 28/01/2016.
|
6
|
+
// Copyright © 2016 Future Workshops. All rights reserved.
|
7
|
+
//
|
8
|
+
|
9
|
+
import UIKit
|
10
|
+
|
11
|
+
@UIApplicationMain
|
12
|
+
class AppDelegate: UIResponder, UIApplicationDelegate {
|
13
|
+
|
14
|
+
var window: UIWindow?
|
15
|
+
|
16
|
+
|
17
|
+
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
|
18
|
+
// Override point for customization after application launch.
|
19
|
+
return true
|
20
|
+
}
|
21
|
+
|
22
|
+
func applicationWillResignActive(application: UIApplication) {
|
23
|
+
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
|
24
|
+
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
|
25
|
+
}
|
26
|
+
|
27
|
+
func applicationDidEnterBackground(application: UIApplication) {
|
28
|
+
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
|
29
|
+
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
|
30
|
+
}
|
31
|
+
|
32
|
+
func applicationWillEnterForeground(application: UIApplication) {
|
33
|
+
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
|
34
|
+
}
|
35
|
+
|
36
|
+
func applicationDidBecomeActive(application: UIApplication) {
|
37
|
+
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
|
38
|
+
}
|
39
|
+
|
40
|
+
func applicationWillTerminate(application: UIApplication) {
|
41
|
+
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
|
42
|
+
}
|
43
|
+
|
44
|
+
|
45
|
+
}
|
46
|
+
|
@@ -0,0 +1,73 @@
|
|
1
|
+
{
|
2
|
+
"images" : [
|
3
|
+
{
|
4
|
+
"idiom" : "iphone",
|
5
|
+
"size" : "29x29",
|
6
|
+
"scale" : "2x"
|
7
|
+
},
|
8
|
+
{
|
9
|
+
"idiom" : "iphone",
|
10
|
+
"size" : "29x29",
|
11
|
+
"scale" : "3x"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"idiom" : "iphone",
|
15
|
+
"size" : "40x40",
|
16
|
+
"scale" : "2x"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"idiom" : "iphone",
|
20
|
+
"size" : "40x40",
|
21
|
+
"scale" : "3x"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"idiom" : "iphone",
|
25
|
+
"size" : "60x60",
|
26
|
+
"scale" : "2x"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"idiom" : "iphone",
|
30
|
+
"size" : "60x60",
|
31
|
+
"scale" : "3x"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"idiom" : "ipad",
|
35
|
+
"size" : "29x29",
|
36
|
+
"scale" : "1x"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"idiom" : "ipad",
|
40
|
+
"size" : "29x29",
|
41
|
+
"scale" : "2x"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"idiom" : "ipad",
|
45
|
+
"size" : "40x40",
|
46
|
+
"scale" : "1x"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"idiom" : "ipad",
|
50
|
+
"size" : "40x40",
|
51
|
+
"scale" : "2x"
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"idiom" : "ipad",
|
55
|
+
"size" : "76x76",
|
56
|
+
"scale" : "1x"
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"idiom" : "ipad",
|
60
|
+
"size" : "76x76",
|
61
|
+
"scale" : "2x"
|
62
|
+
},
|
63
|
+
{
|
64
|
+
"idiom" : "ipad",
|
65
|
+
"size" : "83.5x83.5",
|
66
|
+
"scale" : "2x"
|
67
|
+
}
|
68
|
+
],
|
69
|
+
"info" : {
|
70
|
+
"version" : 1,
|
71
|
+
"author" : "xcode"
|
72
|
+
}
|
73
|
+
}
|