Skip to content

Commit b7ecc28

Browse files
committed
set travis xcode version to 9.3, bump version to 1.7.7
1 parent e8be329 commit b7ecc28

File tree

15 files changed

+81
-145
lines changed

15 files changed

+81
-145
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: objective-c
2-
osx_image: xcode7.3
2+
osx_image: xcode9.3
33
xcode_workspace: LinkedinSwift/LinkedinSwift.xcworkspace/
44
xcode_scheme: LinkedinSwift
55
xcode_sdk: iphonesimulator

Example/Example/Example.xcworkspace/xcuserdata/li.jiantang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

-50
Original file line numberDiff line numberDiff line change
@@ -2,54 +2,4 @@
22
<Bucket
33
type = "0"
44
version = "2.0">
5-
<Breakpoints>
6-
<BreakpointProxy
7-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
8-
<BreakpointContent
9-
shouldBeEnabled = "Yes"
10-
ignoreCount = "0"
11-
continueAfterRunningActions = "No"
12-
filePath = "Example/ViewController.swift"
13-
timestampString = "545583872.6795681"
14-
startingColumnNumber = "9223372036854775807"
15-
endingColumnNumber = "9223372036854775807"
16-
startingLineNumber = "48"
17-
endingLineNumber = "48"
18-
landmarkName = "login()"
19-
landmarkType = "7">
20-
<Locations>
21-
<Location
22-
shouldBeEnabled = "Yes"
23-
ignoreCount = "0"
24-
continueAfterRunningActions = "No"
25-
symbolName = "Example.ViewController.login() -&gt; ()"
26-
moduleName = "Example"
27-
usesParentBreakpointCondition = "Yes"
28-
urlString = "file:///Users/li.jiantang/workspace/Github/LinkedinSwift/Example/Example/Example/ViewController.swift"
29-
timestampString = "545583872.999633"
30-
startingColumnNumber = "9223372036854775807"
31-
endingColumnNumber = "9223372036854775807"
32-
startingLineNumber = "48"
33-
endingLineNumber = "48"
34-
offsetFromSymbolStart = "56">
35-
</Location>
36-
<Location
37-
shouldBeEnabled = "Yes"
38-
ignoreCount = "0"
39-
continueAfterRunningActions = "No"
40-
symbolName = "closure #1 (__ObjC.LSLinkedinToken) -&gt; () in Example.ViewController.login() -&gt; ()"
41-
moduleName = "Example"
42-
usesParentBreakpointCondition = "Yes"
43-
urlString = "file:///Users/li.jiantang/workspace/Github/LinkedinSwift/Example/Example/Example/ViewController.swift"
44-
timestampString = "545583873.00188"
45-
startingColumnNumber = "9223372036854775807"
46-
endingColumnNumber = "9223372036854775807"
47-
startingLineNumber = "48"
48-
endingLineNumber = "48"
49-
offsetFromSymbolStart = "28">
50-
</Location>
51-
</Locations>
52-
</BreakpointContent>
53-
</BreakpointProxy>
54-
</Breakpoints>
555
</Bucket>

Example/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"images" : [
3+
{
4+
"idiom" : "iphone",
5+
"size" : "20x20",
6+
"scale" : "2x"
7+
},
8+
{
9+
"idiom" : "iphone",
10+
"size" : "20x20",
11+
"scale" : "3x"
12+
},
313
{
414
"idiom" : "iphone",
515
"size" : "29x29",
@@ -30,6 +40,11 @@
3040
"idiom" : "iphone",
3141
"size" : "60x60",
3242
"scale" : "3x"
43+
},
44+
{
45+
"idiom" : "ios-marketing",
46+
"size" : "1024x1024",
47+
"scale" : "1x"
3348
}
3449
],
3550
"info" : {

Example/Example/Example/Info.plist

+15-2
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,27 @@
2121
<key>CFBundleURLTypes</key>
2222
<array>
2323
<dict>
24-
<key>CFBundleTypeRole</key>
25-
<string>URL Schemes</string>
2624
<key>CFBundleURLSchemes</key>
2725
<array>
2826
<string>li4127213</string>
2927
</array>
3028
</dict>
3129
</array>
30+
<key>NSAppTransportSecurity</key>
31+
<dict>
32+
<key>NSExceptionDomains</key>
33+
<dict>
34+
<key>linkedin.com</key>
35+
<dict>
36+
<key>NSExceptionAllowsInsecureHTTPLoads</key>
37+
<true/>
38+
<key>NSIncludesSubdomains</key>
39+
<true/>
40+
<key>NSExceptionRequiresForwardSecrecy</key>
41+
<false/>
42+
</dict>
43+
</dict>
44+
</dict>
3245
<key>CFBundleVersion</key>
3346
<string>1.2</string>
3447
<key>LIAppId</key>

Example/Example/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
target 'Example' do
55
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
66

7-
pod 'LinkedinSwift', '>= 1.7.5'
7+
pod 'LinkedinSwift', '>= 1.7.7'
88

99
end

Example/Example/Pods/Pods.xcodeproj/xcuserdata/li.jiantang.xcuserdatad/xcschemes/AFNetworking.xcscheme

+10-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Example/Pods/Pods.xcodeproj/xcuserdata/li.jiantang.xcuserdatad/xcschemes/IOSLinkedInAPIFix.xcscheme

+10-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Example/Pods/Pods.xcodeproj/xcuserdata/li.jiantang.xcuserdatad/xcschemes/LinkedinSwift.xcscheme

+10-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)