Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit b8de2d1

Browse files
Rdio sample
0 parents commit b8de2d1

File tree

13 files changed

+797
-0
lines changed

13 files changed

+797
-0
lines changed

‎Rdio.xcodeproj/project.pbxproj‎

Lines changed: 334 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,334 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 50;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
86EE02C124B4E0A900D1762E /* RdioApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86EE02C024B4E0A900D1762E /* RdioApp.swift */; };
11+
86EE02C324B4E0A900D1762E /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86EE02C224B4E0A900D1762E /* ContentView.swift */; };
12+
86EE02C524B4E0AB00D1762E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 86EE02C424B4E0AB00D1762E /* Assets.xcassets */; };
13+
86EE02C824B4E0AB00D1762E /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 86EE02C724B4E0AB00D1762E /* Preview Assets.xcassets */; };
14+
/* End PBXBuildFile section */
15+
16+
/* Begin PBXFileReference section */
17+
86EE02BD24B4E0A900D1762E /* Rdio.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Rdio.app; sourceTree = BUILT_PRODUCTS_DIR; };
18+
86EE02C024B4E0A900D1762E /* RdioApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RdioApp.swift; sourceTree = "<group>"; };
19+
86EE02C224B4E0A900D1762E /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; };
20+
86EE02C424B4E0AB00D1762E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
21+
86EE02C724B4E0AB00D1762E /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
22+
86EE02C924B4E0AB00D1762E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
23+
86EE02CA24B4E0AC00D1762E /* Rdio.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Rdio.entitlements; sourceTree = "<group>"; };
24+
/* End PBXFileReference section */
25+
26+
/* Begin PBXFrameworksBuildPhase section */
27+
86EE02BA24B4E0A900D1762E /* Frameworks */ = {
28+
isa = PBXFrameworksBuildPhase;
29+
buildActionMask = 2147483647;
30+
files = (
31+
);
32+
runOnlyForDeploymentPostprocessing = 0;
33+
};
34+
/* End PBXFrameworksBuildPhase section */
35+
36+
/* Begin PBXGroup section */
37+
86EE02B424B4E0A900D1762E = {
38+
isa = PBXGroup;
39+
children = (
40+
86EE02BF24B4E0A900D1762E /* Rdio */,
41+
86EE02BE24B4E0A900D1762E /* Products */,
42+
);
43+
sourceTree = "<group>";
44+
};
45+
86EE02BE24B4E0A900D1762E /* Products */ = {
46+
isa = PBXGroup;
47+
children = (
48+
86EE02BD24B4E0A900D1762E /* Rdio.app */,
49+
);
50+
name = Products;
51+
sourceTree = "<group>";
52+
};
53+
86EE02BF24B4E0A900D1762E /* Rdio */ = {
54+
isa = PBXGroup;
55+
children = (
56+
86EE02C024B4E0A900D1762E /* RdioApp.swift */,
57+
86EE02C224B4E0A900D1762E /* ContentView.swift */,
58+
86EE02C424B4E0AB00D1762E /* Assets.xcassets */,
59+
86EE02C924B4E0AB00D1762E /* Info.plist */,
60+
86EE02CA24B4E0AC00D1762E /* Rdio.entitlements */,
61+
86EE02C624B4E0AB00D1762E /* Preview Content */,
62+
);
63+
path = Rdio;
64+
sourceTree = "<group>";
65+
};
66+
86EE02C624B4E0AB00D1762E /* Preview Content */ = {
67+
isa = PBXGroup;
68+
children = (
69+
86EE02C724B4E0AB00D1762E /* Preview Assets.xcassets */,
70+
);
71+
path = "Preview Content";
72+
sourceTree = "<group>";
73+
};
74+
/* End PBXGroup section */
75+
76+
/* Begin PBXNativeTarget section */
77+
86EE02BC24B4E0A900D1762E /* Rdio */ = {
78+
isa = PBXNativeTarget;
79+
buildConfigurationList = 86EE02CD24B4E0AC00D1762E /* Build configuration list for PBXNativeTarget "Rdio" */;
80+
buildPhases = (
81+
86EE02B924B4E0A900D1762E /* Sources */,
82+
86EE02BA24B4E0A900D1762E /* Frameworks */,
83+
86EE02BB24B4E0A900D1762E /* Resources */,
84+
);
85+
buildRules = (
86+
);
87+
dependencies = (
88+
);
89+
name = Rdio;
90+
productName = Rdio;
91+
productReference = 86EE02BD24B4E0A900D1762E /* Rdio.app */;
92+
productType = "com.apple.product-type.application";
93+
};
94+
/* End PBXNativeTarget section */
95+
96+
/* Begin PBXProject section */
97+
86EE02B524B4E0A900D1762E /* Project object */ = {
98+
isa = PBXProject;
99+
attributes = {
100+
LastSwiftUpdateCheck = 1200;
101+
LastUpgradeCheck = 1200;
102+
TargetAttributes = {
103+
86EE02BC24B4E0A900D1762E = {
104+
CreatedOnToolsVersion = 12.0;
105+
};
106+
};
107+
};
108+
buildConfigurationList = 86EE02B824B4E0A900D1762E /* Build configuration list for PBXProject "Rdio" */;
109+
compatibilityVersion = "Xcode 9.3";
110+
developmentRegion = en;
111+
hasScannedForEncodings = 0;
112+
knownRegions = (
113+
en,
114+
Base,
115+
);
116+
mainGroup = 86EE02B424B4E0A900D1762E;
117+
productRefGroup = 86EE02BE24B4E0A900D1762E /* Products */;
118+
projectDirPath = "";
119+
projectRoot = "";
120+
targets = (
121+
86EE02BC24B4E0A900D1762E /* Rdio */,
122+
);
123+
};
124+
/* End PBXProject section */
125+
126+
/* Begin PBXResourcesBuildPhase section */
127+
86EE02BB24B4E0A900D1762E /* Resources */ = {
128+
isa = PBXResourcesBuildPhase;
129+
buildActionMask = 2147483647;
130+
files = (
131+
86EE02C824B4E0AB00D1762E /* Preview Assets.xcassets in Resources */,
132+
86EE02C524B4E0AB00D1762E /* Assets.xcassets in Resources */,
133+
);
134+
runOnlyForDeploymentPostprocessing = 0;
135+
};
136+
/* End PBXResourcesBuildPhase section */
137+
138+
/* Begin PBXSourcesBuildPhase section */
139+
86EE02B924B4E0A900D1762E /* Sources */ = {
140+
isa = PBXSourcesBuildPhase;
141+
buildActionMask = 2147483647;
142+
files = (
143+
86EE02C324B4E0A900D1762E /* ContentView.swift in Sources */,
144+
86EE02C124B4E0A900D1762E /* RdioApp.swift in Sources */,
145+
);
146+
runOnlyForDeploymentPostprocessing = 0;
147+
};
148+
/* End PBXSourcesBuildPhase section */
149+
150+
/* Begin XCBuildConfiguration section */
151+
86EE02CB24B4E0AC00D1762E /* Debug */ = {
152+
isa = XCBuildConfiguration;
153+
buildSettings = {
154+
ALWAYS_SEARCH_USER_PATHS = NO;
155+
CLANG_ANALYZER_NONNULL = YES;
156+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
157+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
158+
CLANG_CXX_LIBRARY = "libc++";
159+
CLANG_ENABLE_MODULES = YES;
160+
CLANG_ENABLE_OBJC_ARC = YES;
161+
CLANG_ENABLE_OBJC_WEAK = YES;
162+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
163+
CLANG_WARN_BOOL_CONVERSION = YES;
164+
CLANG_WARN_COMMA = YES;
165+
CLANG_WARN_CONSTANT_CONVERSION = YES;
166+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
167+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
168+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
169+
CLANG_WARN_EMPTY_BODY = YES;
170+
CLANG_WARN_ENUM_CONVERSION = YES;
171+
CLANG_WARN_INFINITE_RECURSION = YES;
172+
CLANG_WARN_INT_CONVERSION = YES;
173+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
174+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
175+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
176+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
177+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
178+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
179+
CLANG_WARN_STRICT_PROTOTYPES = YES;
180+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
181+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
182+
CLANG_WARN_UNREACHABLE_CODE = YES;
183+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
184+
COPY_PHASE_STRIP = NO;
185+
DEBUG_INFORMATION_FORMAT = dwarf;
186+
ENABLE_STRICT_OBJC_MSGSEND = YES;
187+
ENABLE_TESTABILITY = YES;
188+
GCC_C_LANGUAGE_STANDARD = gnu11;
189+
GCC_DYNAMIC_NO_PIC = NO;
190+
GCC_NO_COMMON_BLOCKS = YES;
191+
GCC_OPTIMIZATION_LEVEL = 0;
192+
GCC_PREPROCESSOR_DEFINITIONS = (
193+
"DEBUG=1",
194+
"$(inherited)",
195+
);
196+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
197+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
198+
GCC_WARN_UNDECLARED_SELECTOR = YES;
199+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
200+
GCC_WARN_UNUSED_FUNCTION = YES;
201+
GCC_WARN_UNUSED_VARIABLE = YES;
202+
MACOSX_DEPLOYMENT_TARGET = 10.16;
203+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
204+
MTL_FAST_MATH = YES;
205+
ONLY_ACTIVE_ARCH = YES;
206+
SDKROOT = macosx;
207+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
208+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
209+
};
210+
name = Debug;
211+
};
212+
86EE02CC24B4E0AC00D1762E /* Release */ = {
213+
isa = XCBuildConfiguration;
214+
buildSettings = {
215+
ALWAYS_SEARCH_USER_PATHS = NO;
216+
CLANG_ANALYZER_NONNULL = YES;
217+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
218+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
219+
CLANG_CXX_LIBRARY = "libc++";
220+
CLANG_ENABLE_MODULES = YES;
221+
CLANG_ENABLE_OBJC_ARC = YES;
222+
CLANG_ENABLE_OBJC_WEAK = YES;
223+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
224+
CLANG_WARN_BOOL_CONVERSION = YES;
225+
CLANG_WARN_COMMA = YES;
226+
CLANG_WARN_CONSTANT_CONVERSION = YES;
227+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
228+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
229+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
230+
CLANG_WARN_EMPTY_BODY = YES;
231+
CLANG_WARN_ENUM_CONVERSION = YES;
232+
CLANG_WARN_INFINITE_RECURSION = YES;
233+
CLANG_WARN_INT_CONVERSION = YES;
234+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
235+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
236+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
237+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
238+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
239+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
240+
CLANG_WARN_STRICT_PROTOTYPES = YES;
241+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
242+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
243+
CLANG_WARN_UNREACHABLE_CODE = YES;
244+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
245+
COPY_PHASE_STRIP = NO;
246+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
247+
ENABLE_NS_ASSERTIONS = NO;
248+
ENABLE_STRICT_OBJC_MSGSEND = YES;
249+
GCC_C_LANGUAGE_STANDARD = gnu11;
250+
GCC_NO_COMMON_BLOCKS = YES;
251+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
252+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
253+
GCC_WARN_UNDECLARED_SELECTOR = YES;
254+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
255+
GCC_WARN_UNUSED_FUNCTION = YES;
256+
GCC_WARN_UNUSED_VARIABLE = YES;
257+
MACOSX_DEPLOYMENT_TARGET = 10.16;
258+
MTL_ENABLE_DEBUG_INFO = NO;
259+
MTL_FAST_MATH = YES;
260+
SDKROOT = macosx;
261+
SWIFT_COMPILATION_MODE = wholemodule;
262+
SWIFT_OPTIMIZATION_LEVEL = "-O";
263+
};
264+
name = Release;
265+
};
266+
86EE02CE24B4E0AC00D1762E /* Debug */ = {
267+
isa = XCBuildConfiguration;
268+
buildSettings = {
269+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
270+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
271+
CODE_SIGN_ENTITLEMENTS = Rdio/Rdio.entitlements;
272+
CODE_SIGN_STYLE = Automatic;
273+
COMBINE_HIDPI_IMAGES = YES;
274+
DEVELOPMENT_ASSET_PATHS = "\"Rdio/Preview Content\"";
275+
ENABLE_PREVIEWS = YES;
276+
INFOPLIST_FILE = Rdio/Info.plist;
277+
LD_RUNPATH_SEARCH_PATHS = (
278+
"$(inherited)",
279+
"@executable_path/../Frameworks",
280+
);
281+
MACOSX_DEPLOYMENT_TARGET = 10.16;
282+
PRODUCT_BUNDLE_IDENTIFIER = example.Rdio;
283+
PRODUCT_NAME = "$(TARGET_NAME)";
284+
SWIFT_VERSION = 5.0;
285+
};
286+
name = Debug;
287+
};
288+
86EE02CF24B4E0AC00D1762E /* Release */ = {
289+
isa = XCBuildConfiguration;
290+
buildSettings = {
291+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
292+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
293+
CODE_SIGN_ENTITLEMENTS = Rdio/Rdio.entitlements;
294+
CODE_SIGN_STYLE = Automatic;
295+
COMBINE_HIDPI_IMAGES = YES;
296+
DEVELOPMENT_ASSET_PATHS = "\"Rdio/Preview Content\"";
297+
ENABLE_PREVIEWS = YES;
298+
INFOPLIST_FILE = Rdio/Info.plist;
299+
LD_RUNPATH_SEARCH_PATHS = (
300+
"$(inherited)",
301+
"@executable_path/../Frameworks",
302+
);
303+
MACOSX_DEPLOYMENT_TARGET = 10.16;
304+
PRODUCT_BUNDLE_IDENTIFIER = example.Rdio;
305+
PRODUCT_NAME = "$(TARGET_NAME)";
306+
SWIFT_VERSION = 5.0;
307+
};
308+
name = Release;
309+
};
310+
/* End XCBuildConfiguration section */
311+
312+
/* Begin XCConfigurationList section */
313+
86EE02B824B4E0A900D1762E /* Build configuration list for PBXProject "Rdio" */ = {
314+
isa = XCConfigurationList;
315+
buildConfigurations = (
316+
86EE02CB24B4E0AC00D1762E /* Debug */,
317+
86EE02CC24B4E0AC00D1762E /* Release */,
318+
);
319+
defaultConfigurationIsVisible = 0;
320+
defaultConfigurationName = Release;
321+
};
322+
86EE02CD24B4E0AC00D1762E /* Build configuration list for PBXNativeTarget "Rdio" */ = {
323+
isa = XCConfigurationList;
324+
buildConfigurations = (
325+
86EE02CE24B4E0AC00D1762E /* Debug */,
326+
86EE02CF24B4E0AC00D1762E /* Release */,
327+
);
328+
defaultConfigurationIsVisible = 0;
329+
defaultConfigurationName = Release;
330+
};
331+
/* End XCConfigurationList section */
332+
};
333+
rootObject = 86EE02B524B4E0A900D1762E /* Project object */;
334+
}

‎Rdio.xcodeproj/project.xcworkspace/contents.xcworkspacedata‎

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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>SchemeUserState</key>
6+
<dict>
7+
<key>Rdio.xcscheme_^#shared#^_</key>
8+
<dict>
9+
<key>orderHint</key>
10+
<integer>0</integer>
11+
</dict>
12+
</dict>
13+
</dict>
14+
</plist>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"colors" : [
3+
{
4+
"color" : {
5+
"color-space" : "srgb",
6+
"components" : {
7+
"alpha" : "1.000",
8+
"blue" : "0.765",
9+
"green" : "0.490",
10+
"red" : "0.000"
11+
}
12+
},
13+
"idiom" : "universal"
14+
}
15+
],
16+
"info" : {
17+
"author" : "xcode",
18+
"version" : 1
19+
}
20+
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /