Skip to content

Commit 2ec613f

Browse files
committed
revert unintentional Examples/FBSDK changes
1 parent 1b4d119 commit 2ec613f

File tree

4 files changed

+254
-5
lines changed

4 files changed

+254
-5
lines changed
Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
{
2+
"name": "FBSDKCoreKit",
3+
"version": "7.1.1",
4+
"summary": "Official Facebook SDK for iOS to access Facebook Platform core features",
5+
"description": "The Facebook SDK for iOS CoreKit framework provides:\n* App Events (for App Analytics)\n* Graph API Access and Error Recovery\n* Working with Access Tokens and User Profiles",
6+
"homepage": "https://developers.facebook.com/docs/ios/",
7+
"license": {
8+
"type": "Facebook Platform License",
9+
"file": "LICENSE"
10+
},
11+
"authors": "Facebook",
12+
"platforms": {
13+
"ios": "8.0",
14+
"tvos": "10.0"
15+
},
16+
"source": {
17+
"git": "https://github.com/facebook/facebook-ios-sdk.git",
18+
"tag": "v7.1.1"
19+
},
20+
"ios": {
21+
"weak_frameworks": [
22+
"Accelerate",
23+
"Accounts",
24+
"Social",
25+
"Security",
26+
"QuartzCore",
27+
"CoreGraphics",
28+
"UIKit",
29+
"Foundation",
30+
"AudioToolbox"
31+
]
32+
},
33+
"tvos": {
34+
"weak_frameworks": [
35+
"CoreLocation",
36+
"Security",
37+
"QuartzCore",
38+
"CoreGraphics",
39+
"UIKit",
40+
"Foundation",
41+
"AudioToolbox"
42+
]
43+
},
44+
"requires_arc": [
45+
"FBSDKCoreKit/FBSDKCoreKit/*",
46+
"FBSDKCoreKit/FBSDKCoreKit/AppEvents/**/*",
47+
"FBSDKCoreKit/FBSDKCoreKit/AppLink/**/*",
48+
"FBSDKCoreKit/FBSDKCoreKit/Basics/**/*",
49+
"FBSDKCoreKit/FBSDKCoreKit/GraphAPI/*",
50+
"FBSDKCoreKit/FBSDKCoreKit/Internal/**/*"
51+
],
52+
"default_subspecs": [
53+
"Core",
54+
"Basics"
55+
],
56+
"swift_versions": "5.0",
57+
"pod_target_xcconfig": {
58+
"GCC_PREPROCESSOR_DEFINITIONS": "$(inherited) FBSDKCOCOAPODS=1",
59+
"DEFINES_MODULE": "YES"
60+
},
61+
"user_target_xcconfig": {
62+
"GCC_PREPROCESSOR_DEFINITIONS": "$(inherited) FBSDKCOCOAPODS=1"
63+
},
64+
"libraries": [
65+
"c++",
66+
"stdc++"
67+
],
68+
"subspecs": [
69+
{
70+
"name": "Basics",
71+
"source_files": [
72+
"FBSDKCoreKit/FBSDKCoreKit/Basics/*.{h,m}",
73+
"FBSDKCoreKit/FBSDKCoreKit/Basics/**/*.{h,m}"
74+
],
75+
"public_header_files": [
76+
"FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/**/*.h",
77+
"FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/**/*.h",
78+
"FBSDKCoreKit/FBSDKCoreKit/Basics/*.h"
79+
],
80+
"private_header_files": [
81+
"FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/**/*.h",
82+
"FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/**/*.h"
83+
],
84+
"libraries": "z"
85+
},
86+
{
87+
"name": "Core",
88+
"dependencies": {
89+
"FBSDKCoreKit/Basics": [
90+
91+
]
92+
},
93+
"exclude_files": [
94+
"FBSDKCoreKit/FBSDKCoreKit/Basics/*",
95+
"FBSDKCoreKit/FBSDKCoreKit/Basics/**/*.{h,m}",
96+
"FBSDKCoreKit/FBSDKCoreKit/include/**/*",
97+
"FBSDKCoreKit/FBSDKCoreKit/Swift/Exports.swift"
98+
],
99+
"source_files": "FBSDKCoreKit/FBSDKCoreKit/**/*.{h,hpp,m,mm,swift}",
100+
"public_header_files": [
101+
"FBSDKCoreKit/FBSDKCoreKit/Internal/**/*.h",
102+
"FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/**/*.h",
103+
"FBSDKCoreKit/FBSDKCoreKit/*.h",
104+
"FBSDKCoreKit/FBSDKCoreKit/AppEvents/*.h",
105+
"FBSDKCoreKit/FBSDKCoreKit/AppLink/*.h",
106+
"FBSDKCoreKit/FBSDKCoreKit/GraphAPI/*.h"
107+
],
108+
"private_header_files": [
109+
"FBSDKCoreKit/FBSDKCoreKit/Internal/**/*.h",
110+
"FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/**/*.h"
111+
],
112+
"resources": "FacebookSDKStrings.bundle",
113+
"libraries": [
114+
"c++",
115+
"stdc++"
116+
]
117+
}
118+
],
119+
"swift_version": "5.0"
120+
}
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"name": "FBSDKLoginKit",
3+
"version": "7.1.1",
4+
"summary": "Official Facebook SDK for iOS to access Facebook Platform with features like Login, Share and Message Dialog, App Links, and Graph API",
5+
"description": "The Facebook SDK for iOS LoginKit framework provides:\n* Facebook Login to easily sign in users.\n* Sharing features like the Share or Message Dialog to grow your app.\n* Simpler Graph API access to provide more social context.",
6+
"homepage": "https://developers.facebook.com/docs/ios/",
7+
"license": {
8+
"type": "Facebook Platform License",
9+
"file": "LICENSE"
10+
},
11+
"authors": "Facebook",
12+
"platforms": {
13+
"ios": "8.0",
14+
"tvos": "10.0"
15+
},
16+
"source": {
17+
"git": "https://github.com/facebook/facebook-ios-sdk.git",
18+
"tag": "v7.1.1"
19+
},
20+
"ios": {
21+
"weak_frameworks": [
22+
"Accounts",
23+
"Social",
24+
"Security",
25+
"QuartzCore",
26+
"CoreGraphics",
27+
"UIKit",
28+
"Foundation",
29+
"AudioToolbox"
30+
]
31+
},
32+
"tvos": {
33+
"weak_frameworks": [
34+
"AudioToolbox",
35+
"CoreGraphics",
36+
"Foundation",
37+
"QuartzCore",
38+
"Security",
39+
"UIKit"
40+
]
41+
},
42+
"requires_arc": true,
43+
"default_subspecs": "Login",
44+
"swift_versions": "5.0",
45+
"prefix_header_contents": "#define FBSDKCOCOAPODS",
46+
"subspecs": [
47+
{
48+
"name": "Login",
49+
"dependencies": {
50+
"FBSDKCoreKit": [
51+
"~> 7.1.1"
52+
]
53+
},
54+
"exclude_files": [
55+
"FBSDKLoginKit/FBSDKLoginKit/include/**/*",
56+
"FBSDKLoginKit/FBSDKLoginKit/Swift/Exports.swift"
57+
],
58+
"source_files": "FBSDKLoginKit/FBSDKLoginKit/**/*.{h,m,swift}",
59+
"public_header_files": "FBSDKLoginKit/FBSDKLoginKit/*.{h}"
60+
}
61+
],
62+
"swift_version": "5.0"
63+
}
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"name": "FBSDKShareKit",
3+
"version": "7.1.1",
4+
"summary": "Official Facebook SDK for iOS to access Facebook Platform Sharing Features",
5+
"description": "The Facebook SDK for iOS ShareKit framework provides:\n* Share content with Share Dialog and Message Dialog.\n* Send Game Requests or App Invites to grow your app.\n* Publish content and open graph stories with the Graph API",
6+
"homepage": "https://developers.facebook.com/docs/ios/",
7+
"license": {
8+
"type": "Facebook Platform License",
9+
"file": "LICENSE"
10+
},
11+
"authors": "Facebook",
12+
"platforms": {
13+
"ios": "8.0",
14+
"tvos": "10.0"
15+
},
16+
"source": {
17+
"git": "https://github.com/facebook/facebook-ios-sdk.git",
18+
"tag": "v7.1.1"
19+
},
20+
"ios": {
21+
"weak_frameworks": [
22+
"Accounts",
23+
"AudioToolbox",
24+
"CoreGraphics",
25+
"Foundation",
26+
"QuartzCore",
27+
"Security",
28+
"Social",
29+
"UIKit"
30+
]
31+
},
32+
"tvos": {
33+
"weak_frameworks": [
34+
"AudioToolbox",
35+
"CoreGraphics",
36+
"Foundation",
37+
"QuartzCore",
38+
"Security",
39+
"UIKit"
40+
]
41+
},
42+
"requires_arc": true,
43+
"default_subspecs": "Share",
44+
"swift_versions": "5.0",
45+
"header_dir": "FBSDKShareKit",
46+
"prefix_header_contents": "#define FBSDKCOCOAPODS",
47+
"subspecs": [
48+
{
49+
"name": "Share",
50+
"dependencies": {
51+
"FBSDKCoreKit": [
52+
"~> 7.1.1"
53+
]
54+
},
55+
"exclude_files": [
56+
"FBSDKShareKit/FBSDKShareKit/include/**/*",
57+
"FBSDKShareKit/FBSDKShareKit/Swift/Exports.swift"
58+
],
59+
"public_header_files": "FBSDKShareKit/FBSDKShareKit/*.{h}",
60+
"source_files": "FBSDKShareKit/FBSDKShareKit/**/*.{h,m,swift}"
61+
}
62+
],
63+
"swift_version": "5.0"
64+
}

Examples/FBSDK/podfile_deps.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
new_pod_repository(
22
name = "FBSDKCoreKit",
3-
url = "https://github.com/facebook/facebook-ios-sdk/archive/v9.0.1.zip",
4-
generate_header_map = 1,
5-
trace = True
3+
url = "https://github.com/facebook/facebook-ios-sdk/archive/v7.1.1.zip",
4+
podspec_url = "Vendor/Podspecs/FBSDKCoreKit.podspec.json",
5+
generate_header_map = 1
66
)
77
new_pod_repository(
88
name = "FBSDKLoginKit",
9-
url = "https://github.com/facebook/facebook-ios-sdk/archive/v9.0.1.zip",
9+
url = "https://github.com/facebook/facebook-ios-sdk/archive/v7.1.1.zip",
10+
podspec_url = "Vendor/Podspecs/FBSDKLoginKit.podspec.json",
1011
generate_header_map = 1
1112
)
1213
new_pod_repository(
1314
name = "FBSDKShareKit",
14-
url = "https://github.com/facebook/facebook-ios-sdk/archive/v9.0.1.zip",
15+
url = "https://github.com/facebook/facebook-ios-sdk/archive/v7.1.1.zip",
16+
podspec_url = "Vendor/Podspecs/FBSDKShareKit.podspec.json",
1517
generate_header_map = 1
1618
)

0 commit comments

Comments
 (0)