@superfan-app/spotify-auth 0.1.49 → 0.1.50

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.
@@ -24,14 +24,14 @@ Pod::Spec.new do |s|
24
24
  s.dependency 'ExpoModulesCore'
25
25
  s.dependency 'KeychainAccess', '~> 4.2'
26
26
 
27
- # Pod target build settings. Vendored frameworks automatically set up module maps,
28
- # so explicit FRAMEWORK_SEARCH_PATHS are often unnecessary.
27
+ # Pod target build settings
29
28
  s.pod_target_xcconfig = {
30
29
  'DEFINES_MODULE' => 'YES',
31
30
  'SWIFT_COMPILATION_MODE' => 'wholemodule',
32
31
  'ENABLE_BITCODE' => 'NO',
33
32
  'IPHONEOS_DEPLOYMENT_TARGET' => '13.0',
34
- 'SWIFT_OBJC_BRIDGING_HEADER' => '$(PODS_TARGET_SRCROOT)/SpotifyAuth-Bridging-Header.h'
33
+ 'FRAMEWORK_SEARCH_PATHS' => '$(PODS_TARGET_SRCROOT)/Frameworks',
34
+ 'HEADER_SEARCH_PATHS' => '$(PODS_TARGET_SRCROOT)/Frameworks/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers'
35
35
  }
36
36
 
37
37
  s.user_target_xcconfig = {
@@ -40,8 +40,9 @@ Pod::Spec.new do |s|
40
40
  'OTHER_LDFLAGS' => '-ObjC'
41
41
  }
42
42
 
43
- # Include all Swift files in the same directory as the podspec.
44
- s.source_files = "*.swift"
43
+ # Include all source files and public headers
44
+ s.source_files = "*.{swift,h,m}"
45
+ s.public_header_files = "SpotifyAuthHeaders.h"
45
46
 
46
47
  # Specify the vendored framework (Spotify's iOS SDK).
47
48
  s.vendored_frameworks = 'Frameworks/SpotifyiOS.xcframework'
@@ -0,0 +1,7 @@
1
+ #import <Foundation/Foundation.h>
2
+
3
+ // Import Spotify iOS SDK headers
4
+ #import <SpotifyiOS/SpotifyiOS.h>
5
+
6
+ FOUNDATION_EXPORT double SpotifyAuthVersionNumber;
7
+ FOUNDATION_EXPORT const unsigned char SpotifyAuthVersionString[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superfan-app/spotify-auth",
3
- "version": "0.1.49",
3
+ "version": "0.1.50",
4
4
  "description": "Spotify OAuth module for Expo",
5
5
  "main": "src/index.tsx",
6
6
  "types": "build/index.d.ts",
@@ -1 +0,0 @@
1
- #import <SpotifyiOS/SpotifyiOS.h>