@@ -10,7 +10,7 @@ let package = Package(
10
10
. tvOS( . v12) ,
11
11
. watchOS( . v2) ] ,
12
12
products: [
13
- . library( name: " ParseObjC " , targets: [ " ParseCore " ] ) ,
13
+ . library( name: " ParseObjC " , targets: [ " Parse " ] ) ,
14
14
. library( name: " ParseFacebookUtilsiOS " , targets: [ " ParseFacebookUtilsiOS " ] ) ,
15
15
. library( name: " ParseFacebookUtilsTvOS " , targets: [ " ParseFacebookUtilsTvOS " ] ) ,
16
16
. library( name: " ParseTwitterUtils " , targets: [ " ParseTwitterUtils " ] ) ,
@@ -20,12 +20,12 @@ let package = Package(
20
20
dependencies: [
21
21
. package ( url: " https://github.com/parse-community/Bolts-ObjC.git " , from: " 1.10.0 " ) ,
22
22
. package ( url: " https://github.com/BoltsFramework/Bolts-Swift.git " , from: " 1.5.0 " ) ,
23
- . package ( url: " https://github.com/daltoniam/Starscream.git " , from: " 3.1.1 " ) ,
23
+ . package ( url: " https://github.com/daltoniam/Starscream.git " , from: " 4.0.4 " ) ,
24
24
. package ( url: " https://github.com/facebook/facebook-ios-sdk.git " , from: " 15.1.0 " )
25
25
] ,
26
26
targets: [
27
27
. target(
28
- name: " ParseCore " ,
28
+ name: " Parse " ,
29
29
dependencies: [ . product( name: " Bolts " , package : " Bolts-ObjC " ) ] ,
30
30
path: " Parse/Parse " ,
31
31
exclude: [ " Resources/Parse-tvOS.Info.plist " , " Resources/Parse-iOS.Info.plist " , " Resources/Parse-OSX.Info.plist " , " Resources/Parse-watchOS.Info.plist " ] ,
@@ -35,7 +35,7 @@ let package = Package(
35
35
. target(
36
36
name: " ParseFacebookUtils " ,
37
37
dependencies: [
38
- " ParseCore " ,
38
+ " Parse " ,
39
39
. product( name: " Bolts " , package : " Bolts-ObjC " ) ,
40
40
. product( name: " FacebookCore " , package : " facebook-ios-sdk " , condition: . when( platforms: [ . iOS, . tvOS] ) ) ,
41
41
. product( name: " FacebookLogin " , package : " facebook-ios-sdk " , condition: . when( platforms: [ . iOS, . tvOS] ) ) ] ,
@@ -64,7 +64,7 @@ let package = Package(
64
64
cSettings: [ . headerSearchPath( " Internal/** " ) ] ) ,
65
65
. target( name: " ParseTwitterUtils " ,
66
66
dependencies: [
67
- " ParseCore "
67
+ " Parse "
68
68
] ,
69
69
path: " ParseTwitterUtils/ParseTwitterUtils " ,
70
70
exclude: [ " Resources/Info-iOS.plist " ] ,
@@ -85,12 +85,9 @@ let package = Package(
85
85
dependencies: [
86
86
. product( name: " BoltsSwift " , package : " Bolts-Swift " ) ,
87
87
" Starscream " ,
88
- " ParseCore "
88
+ " Parse "
89
89
] ,
90
90
path: " ParseLiveQuery/ParseLiveQuery " ,
91
- exclude: [ " Resources/Info.plist " , " ParseLiveQuery-watchOS/Info.plist " , " ParseLiveQuery-tvOS/Info.plist " ] ,
92
- resources: [ . process( " Resources " ) ] ,
93
- publicHeadersPath: " Source " ,
94
- cSettings: [ . headerSearchPath( " Internal/** " ) ] ) ,
91
+ resources: [ . process( " Resources " ) ] )
95
92
]
96
93
)
0 commit comments