@wwdrew/expo-spotify-sdk 0.1.0
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.
- package/LICENSE +3 -0
- package/README.md +113 -0
- package/app.plugin.js +1 -0
- package/build/ExpoSpotifySDK.types.d.ts +4 -0
- package/build/ExpoSpotifySDK.types.d.ts.map +1 -0
- package/build/ExpoSpotifySDK.types.js +2 -0
- package/build/ExpoSpotifySDK.types.js.map +1 -0
- package/build/ExpoSpotifySDKModule.d.ts +3 -0
- package/build/ExpoSpotifySDKModule.d.ts.map +1 -0
- package/build/ExpoSpotifySDKModule.js +5 -0
- package/build/ExpoSpotifySDKModule.js.map +1 -0
- package/build/ExpoSpotifySDKModule.web.d.ts +7 -0
- package/build/ExpoSpotifySDKModule.web.d.ts.map +1 -0
- package/build/ExpoSpotifySDKModule.web.js +12 -0
- package/build/ExpoSpotifySDKModule.web.js.map +1 -0
- package/build/index.d.ts +13 -0
- package/build/index.d.ts.map +1 -0
- package/build/index.js +12 -0
- package/build/index.js.map +1 -0
- package/expo-module.config.json +10 -0
- package/ios/ExpoSpotifyAuthDelegate.swift +11 -0
- package/ios/ExpoSpotifyConfiguration.swift +25 -0
- package/ios/ExpoSpotifySDK.podspec +30 -0
- package/ios/ExpoSpotifySDKModule.swift +32 -0
- package/ios/ExpoSpotifySessionManager+SessionManagerDelegate.swift +16 -0
- package/ios/ExpoSpotifySessionManager.swift +82 -0
- package/ios/SPTScopeSerializer.swift +44 -0
- package/ios/SpotifySDK/Licenses/MPMessagePack-LICENSE.md +20 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/Info.plist +40 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemote.h +281 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteAlbum.h +18 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteArtist.h +18 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteCommon.h +36 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteConnectionParams.h +65 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteConnectivityAPI.h +54 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteConnectivityState.h +15 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteContentAPI.h +76 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteContentItem.h +46 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteCrossfadeState.h +18 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteImageAPI.h +25 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteImageRepresentable.h +16 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteLibraryState.h +19 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemotePlaybackOptions.h +32 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemotePlaybackRestrictions.h +32 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemotePlayerAPI.h +262 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemotePlayerState.h +40 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemotePodcastPlaybackSpeed.h +15 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteTrack.h +52 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteUserAPI.h +103 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTAppRemoteUserCapabilities.h +15 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTConfiguration.h +66 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTError.h +33 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTLogin.h +10 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTMacros.h +89 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTScope.h +71 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTSession.h +32 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SPTSessionManager.h +140 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SpotifyAppRemote.h +30 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Headers/SpotifyiOS.h +7 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Info.plist +0 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/Modules/module.modulemap +6 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64/SpotifyiOS.framework/SpotifyiOS +0 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemote.h +240 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemoteAlbum.h +18 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemoteArtist.h +18 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemoteCommon.h +36 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemoteConnectionParams.h +65 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemoteContentAPI.h +75 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemoteContentItem.h +43 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemoteCrossfadeState.h +18 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemoteImageAPI.h +25 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemoteImageRepresentable.h +16 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemoteLibraryState.h +19 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemotePlaybackOptions.h +32 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemotePlaybackRestrictions.h +32 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemotePlayerAPI.h +262 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemotePlayerState.h +40 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemotePodcastPlaybackSpeed.h +15 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemoteTrack.h +47 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemoteUserAPI.h +103 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTAppRemoteUserCapabilities.h +15 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTConfiguration.h +63 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTError.h +33 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTLogin.h +10 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTMacros.h +89 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTScope.h +68 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTSession.h +32 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SPTSessionManager.h +140 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SpotifyAppRemote.h +30 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Headers/SpotifyiOS.h +7 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Info.plist +0 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/Modules/module.modulemap +6 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_armv7/SpotifyiOS.framework/SpotifyiOS +0 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemote.h +240 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteAlbum.h +18 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteArtist.h +18 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteCommon.h +36 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteConnectionParams.h +65 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteContentAPI.h +75 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteContentItem.h +43 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteCrossfadeState.h +18 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteImageAPI.h +25 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteImageRepresentable.h +16 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteLibraryState.h +19 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemotePlaybackOptions.h +32 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemotePlaybackRestrictions.h +32 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemotePlayerAPI.h +262 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemotePlayerState.h +40 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemotePodcastPlaybackSpeed.h +15 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteTrack.h +47 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteUserAPI.h +103 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteUserCapabilities.h +15 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTConfiguration.h +63 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTError.h +33 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTLogin.h +10 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTMacros.h +89 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTScope.h +68 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTSession.h +32 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SPTSessionManager.h +140 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SpotifyAppRemote.h +30 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Headers/SpotifyiOS.h +7 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Info.plist +0 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/Modules/module.modulemap +6 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/SpotifyiOS +0 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_i386_x86_64-simulator/SpotifyiOS.framework/_CodeSignature/CodeResources +537 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemote.h +281 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteAlbum.h +18 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteArtist.h +18 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteCommon.h +36 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteConnectionParams.h +65 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteConnectivityAPI.h +54 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteConnectivityState.h +15 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteContentAPI.h +76 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteContentItem.h +46 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteCrossfadeState.h +18 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteImageAPI.h +25 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteImageRepresentable.h +16 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteLibraryState.h +19 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemotePlaybackOptions.h +32 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemotePlaybackRestrictions.h +32 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemotePlayerAPI.h +262 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemotePlayerState.h +40 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemotePodcastPlaybackSpeed.h +15 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteTrack.h +52 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteUserAPI.h +103 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTAppRemoteUserCapabilities.h +15 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTConfiguration.h +66 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTError.h +33 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTLogin.h +10 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTMacros.h +89 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTScope.h +71 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTSession.h +32 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SPTSessionManager.h +140 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SpotifyAppRemote.h +30 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Headers/SpotifyiOS.h +7 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Info.plist +0 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/Modules/module.modulemap +6 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/SpotifyiOS +0 -0
- package/ios/SpotifySDK/SpotifyiOS.xcframework/ios-arm64_x86_64-simulator/SpotifyiOS.framework/_CodeSignature/CodeResources +567 -0
- package/package.json +58 -0
- package/plugin/build/android/withSpotifyAndroidAppBuildGradle.d.ts +3 -0
- package/plugin/build/android/withSpotifyAndroidAppBuildGradle.js +16 -0
- package/plugin/build/android/withSpotifyConfigAndroid.d.ts +3 -0
- package/plugin/build/android/withSpotifyConfigAndroid.js +16 -0
- package/plugin/build/index.d.ts +4 -0
- package/plugin/build/index.js +24 -0
- package/plugin/build/ios/withSpotifyConfigIOS.d.ts +3 -0
- package/plugin/build/ios/withSpotifyConfigIOS.js +16 -0
- package/plugin/build/ios/withSpotifyQueryScheme.d.ts +3 -0
- package/plugin/build/ios/withSpotifyQueryScheme.js +15 -0
- package/plugin/build/ios/withSpotifyURLScheme.d.ts +3 -0
- package/plugin/build/ios/withSpotifyURLScheme.js +19 -0
- package/plugin/build/types.d.ts +8 -0
- package/plugin/build/types.js +21 -0
- package/plugin/build/withSpotifyConfig.d.ts +3 -0
- package/plugin/build/withSpotifyConfig.js +11 -0
- package/server.js +93 -0
|
@@ -0,0 +1,567 @@
|
|
|
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>files</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>Headers/SPTAppRemote.h</key>
|
|
8
|
+
<data>
|
|
9
|
+
t7Hh0L+Ak3xs6WIBPjMos5RegOE=
|
|
10
|
+
</data>
|
|
11
|
+
<key>Headers/SPTAppRemoteAlbum.h</key>
|
|
12
|
+
<data>
|
|
13
|
+
Lu2h8RV/1rCYVe0UeVYTpq08R0s=
|
|
14
|
+
</data>
|
|
15
|
+
<key>Headers/SPTAppRemoteArtist.h</key>
|
|
16
|
+
<data>
|
|
17
|
+
tE8Iok89gLPlWD3mhRcBWnvJ7LM=
|
|
18
|
+
</data>
|
|
19
|
+
<key>Headers/SPTAppRemoteCommon.h</key>
|
|
20
|
+
<data>
|
|
21
|
+
CpelKULwWd0nTTZbrWggK9Wh1Sk=
|
|
22
|
+
</data>
|
|
23
|
+
<key>Headers/SPTAppRemoteConnectionParams.h</key>
|
|
24
|
+
<data>
|
|
25
|
+
5Q+ZskgYeMEl9/QUrJEGrIOt/qU=
|
|
26
|
+
</data>
|
|
27
|
+
<key>Headers/SPTAppRemoteConnectivityAPI.h</key>
|
|
28
|
+
<data>
|
|
29
|
+
1IsWgCd35d9eLZ1bLK9rcc42SC4=
|
|
30
|
+
</data>
|
|
31
|
+
<key>Headers/SPTAppRemoteConnectivityState.h</key>
|
|
32
|
+
<data>
|
|
33
|
+
gQ/++ZcqYbuCiOwa5pfKqlY081s=
|
|
34
|
+
</data>
|
|
35
|
+
<key>Headers/SPTAppRemoteContentAPI.h</key>
|
|
36
|
+
<data>
|
|
37
|
+
0CSzqvLvOMUxpLRCSBx47RDBMdA=
|
|
38
|
+
</data>
|
|
39
|
+
<key>Headers/SPTAppRemoteContentItem.h</key>
|
|
40
|
+
<data>
|
|
41
|
+
tkJ3T/eZcZGrEXO2Js63LB6y8TY=
|
|
42
|
+
</data>
|
|
43
|
+
<key>Headers/SPTAppRemoteCrossfadeState.h</key>
|
|
44
|
+
<data>
|
|
45
|
+
USFdXS57TktpjTBwfq4MRMR5AR8=
|
|
46
|
+
</data>
|
|
47
|
+
<key>Headers/SPTAppRemoteImageAPI.h</key>
|
|
48
|
+
<data>
|
|
49
|
+
cFwXJG6kY/Wp9abR7/JSlGRjVhU=
|
|
50
|
+
</data>
|
|
51
|
+
<key>Headers/SPTAppRemoteImageRepresentable.h</key>
|
|
52
|
+
<data>
|
|
53
|
+
ciJ5/qk+pvsaWmK/Htwzo8VWV+I=
|
|
54
|
+
</data>
|
|
55
|
+
<key>Headers/SPTAppRemoteLibraryState.h</key>
|
|
56
|
+
<data>
|
|
57
|
+
SVMsqEYwTZpjyW7aoWdcj/WlP7k=
|
|
58
|
+
</data>
|
|
59
|
+
<key>Headers/SPTAppRemotePlaybackOptions.h</key>
|
|
60
|
+
<data>
|
|
61
|
+
pvw2bdL4fv6RTSBuMCc9K5QevCQ=
|
|
62
|
+
</data>
|
|
63
|
+
<key>Headers/SPTAppRemotePlaybackRestrictions.h</key>
|
|
64
|
+
<data>
|
|
65
|
+
ALUn1+dXGFf0AEY4mWOSFz4F3qg=
|
|
66
|
+
</data>
|
|
67
|
+
<key>Headers/SPTAppRemotePlayerAPI.h</key>
|
|
68
|
+
<data>
|
|
69
|
+
krhVrXqBo4Nh4YXRuHZURfKclEE=
|
|
70
|
+
</data>
|
|
71
|
+
<key>Headers/SPTAppRemotePlayerState.h</key>
|
|
72
|
+
<data>
|
|
73
|
+
0nUxiikB1mLHRqFJodmtSGL1hqo=
|
|
74
|
+
</data>
|
|
75
|
+
<key>Headers/SPTAppRemotePodcastPlaybackSpeed.h</key>
|
|
76
|
+
<data>
|
|
77
|
+
buVPJyc1tr0zVzlF8BxtP1fmG2s=
|
|
78
|
+
</data>
|
|
79
|
+
<key>Headers/SPTAppRemoteTrack.h</key>
|
|
80
|
+
<data>
|
|
81
|
+
v7ZLVkQtBEpkm+4SivDvn3tYr0M=
|
|
82
|
+
</data>
|
|
83
|
+
<key>Headers/SPTAppRemoteUserAPI.h</key>
|
|
84
|
+
<data>
|
|
85
|
+
jqgSBg6Bc1Aae/ON6m2ZsusMyoY=
|
|
86
|
+
</data>
|
|
87
|
+
<key>Headers/SPTAppRemoteUserCapabilities.h</key>
|
|
88
|
+
<data>
|
|
89
|
+
On4cqNDucPiWZnxsw2L7e02TifQ=
|
|
90
|
+
</data>
|
|
91
|
+
<key>Headers/SPTConfiguration.h</key>
|
|
92
|
+
<data>
|
|
93
|
+
wInZ+pQ74rpgg+DSyN9GdZEoRVI=
|
|
94
|
+
</data>
|
|
95
|
+
<key>Headers/SPTError.h</key>
|
|
96
|
+
<data>
|
|
97
|
+
Kj+zm7PGIYwZLO3nL5NfqmfXVXk=
|
|
98
|
+
</data>
|
|
99
|
+
<key>Headers/SPTLogin.h</key>
|
|
100
|
+
<data>
|
|
101
|
+
ZPUkIqDFb0qI+2kxt9cwkiviDko=
|
|
102
|
+
</data>
|
|
103
|
+
<key>Headers/SPTMacros.h</key>
|
|
104
|
+
<data>
|
|
105
|
+
2idMsqzDSas1N9J6xTuIf5w7ozI=
|
|
106
|
+
</data>
|
|
107
|
+
<key>Headers/SPTScope.h</key>
|
|
108
|
+
<data>
|
|
109
|
+
F575KcNSsah0efQcJ9NxqhMj1XU=
|
|
110
|
+
</data>
|
|
111
|
+
<key>Headers/SPTSession.h</key>
|
|
112
|
+
<data>
|
|
113
|
+
tlKyXr4cYHsmCVT1Pirrn7YD35M=
|
|
114
|
+
</data>
|
|
115
|
+
<key>Headers/SPTSessionManager.h</key>
|
|
116
|
+
<data>
|
|
117
|
+
evF+aCKdg+ryTNUXk5Eik/6MNOk=
|
|
118
|
+
</data>
|
|
119
|
+
<key>Headers/SpotifyAppRemote.h</key>
|
|
120
|
+
<data>
|
|
121
|
+
TCwc+uBsEd4YUZOvpso42XL5VyQ=
|
|
122
|
+
</data>
|
|
123
|
+
<key>Headers/SpotifyiOS.h</key>
|
|
124
|
+
<data>
|
|
125
|
+
q2AWpJkisBaRyAAIh23bnigAQec=
|
|
126
|
+
</data>
|
|
127
|
+
<key>Info.plist</key>
|
|
128
|
+
<data>
|
|
129
|
+
/3qAvaISq2ovMu/k14w/EmLuV04=
|
|
130
|
+
</data>
|
|
131
|
+
<key>Modules/module.modulemap</key>
|
|
132
|
+
<data>
|
|
133
|
+
XmNK41tuIV8BMkBFvu+R5IiJC6s=
|
|
134
|
+
</data>
|
|
135
|
+
</dict>
|
|
136
|
+
<key>files2</key>
|
|
137
|
+
<dict>
|
|
138
|
+
<key>Headers/SPTAppRemote.h</key>
|
|
139
|
+
<dict>
|
|
140
|
+
<key>hash</key>
|
|
141
|
+
<data>
|
|
142
|
+
t7Hh0L+Ak3xs6WIBPjMos5RegOE=
|
|
143
|
+
</data>
|
|
144
|
+
<key>hash2</key>
|
|
145
|
+
<data>
|
|
146
|
+
n1eb/urgmLhozCxMSEHITpWZ0/jAwg7Iw5s8W+IQhZQ=
|
|
147
|
+
</data>
|
|
148
|
+
</dict>
|
|
149
|
+
<key>Headers/SPTAppRemoteAlbum.h</key>
|
|
150
|
+
<dict>
|
|
151
|
+
<key>hash</key>
|
|
152
|
+
<data>
|
|
153
|
+
Lu2h8RV/1rCYVe0UeVYTpq08R0s=
|
|
154
|
+
</data>
|
|
155
|
+
<key>hash2</key>
|
|
156
|
+
<data>
|
|
157
|
+
juYHeLMlaqhRmfOQgyPv3+mqe19WB9c/yN9YhZmYkuw=
|
|
158
|
+
</data>
|
|
159
|
+
</dict>
|
|
160
|
+
<key>Headers/SPTAppRemoteArtist.h</key>
|
|
161
|
+
<dict>
|
|
162
|
+
<key>hash</key>
|
|
163
|
+
<data>
|
|
164
|
+
tE8Iok89gLPlWD3mhRcBWnvJ7LM=
|
|
165
|
+
</data>
|
|
166
|
+
<key>hash2</key>
|
|
167
|
+
<data>
|
|
168
|
+
16uyxiFbm57Zbm6EvDLKut7wUBQYMY0gqsco8+e1EUQ=
|
|
169
|
+
</data>
|
|
170
|
+
</dict>
|
|
171
|
+
<key>Headers/SPTAppRemoteCommon.h</key>
|
|
172
|
+
<dict>
|
|
173
|
+
<key>hash</key>
|
|
174
|
+
<data>
|
|
175
|
+
CpelKULwWd0nTTZbrWggK9Wh1Sk=
|
|
176
|
+
</data>
|
|
177
|
+
<key>hash2</key>
|
|
178
|
+
<data>
|
|
179
|
+
w2tXhJ6V84gaIx/oufHMM0aVRj6s5J1qhoHN/N8dwKA=
|
|
180
|
+
</data>
|
|
181
|
+
</dict>
|
|
182
|
+
<key>Headers/SPTAppRemoteConnectionParams.h</key>
|
|
183
|
+
<dict>
|
|
184
|
+
<key>hash</key>
|
|
185
|
+
<data>
|
|
186
|
+
5Q+ZskgYeMEl9/QUrJEGrIOt/qU=
|
|
187
|
+
</data>
|
|
188
|
+
<key>hash2</key>
|
|
189
|
+
<data>
|
|
190
|
+
YBy/6s0WAEfEy7DbEx+Y7Emavnp8+95MrmRfai1kCXI=
|
|
191
|
+
</data>
|
|
192
|
+
</dict>
|
|
193
|
+
<key>Headers/SPTAppRemoteConnectivityAPI.h</key>
|
|
194
|
+
<dict>
|
|
195
|
+
<key>hash</key>
|
|
196
|
+
<data>
|
|
197
|
+
1IsWgCd35d9eLZ1bLK9rcc42SC4=
|
|
198
|
+
</data>
|
|
199
|
+
<key>hash2</key>
|
|
200
|
+
<data>
|
|
201
|
+
y39A3+0t/j/EkXSsm0S/dJ/bbq6oPB+x7VzRh9UPF6I=
|
|
202
|
+
</data>
|
|
203
|
+
</dict>
|
|
204
|
+
<key>Headers/SPTAppRemoteConnectivityState.h</key>
|
|
205
|
+
<dict>
|
|
206
|
+
<key>hash</key>
|
|
207
|
+
<data>
|
|
208
|
+
gQ/++ZcqYbuCiOwa5pfKqlY081s=
|
|
209
|
+
</data>
|
|
210
|
+
<key>hash2</key>
|
|
211
|
+
<data>
|
|
212
|
+
OXTYAMLmKRT8pEPD3x5G+Srjfc6genLNyv7/+LONxZE=
|
|
213
|
+
</data>
|
|
214
|
+
</dict>
|
|
215
|
+
<key>Headers/SPTAppRemoteContentAPI.h</key>
|
|
216
|
+
<dict>
|
|
217
|
+
<key>hash</key>
|
|
218
|
+
<data>
|
|
219
|
+
0CSzqvLvOMUxpLRCSBx47RDBMdA=
|
|
220
|
+
</data>
|
|
221
|
+
<key>hash2</key>
|
|
222
|
+
<data>
|
|
223
|
+
wUxkL7K8laoKaNERxEMy7g1idgkQHHEcXkWDTd502Lc=
|
|
224
|
+
</data>
|
|
225
|
+
</dict>
|
|
226
|
+
<key>Headers/SPTAppRemoteContentItem.h</key>
|
|
227
|
+
<dict>
|
|
228
|
+
<key>hash</key>
|
|
229
|
+
<data>
|
|
230
|
+
tkJ3T/eZcZGrEXO2Js63LB6y8TY=
|
|
231
|
+
</data>
|
|
232
|
+
<key>hash2</key>
|
|
233
|
+
<data>
|
|
234
|
+
xJQbxcr/OCWc0bREbNhIcHee/B4hx1LXlatNxlT4/ak=
|
|
235
|
+
</data>
|
|
236
|
+
</dict>
|
|
237
|
+
<key>Headers/SPTAppRemoteCrossfadeState.h</key>
|
|
238
|
+
<dict>
|
|
239
|
+
<key>hash</key>
|
|
240
|
+
<data>
|
|
241
|
+
USFdXS57TktpjTBwfq4MRMR5AR8=
|
|
242
|
+
</data>
|
|
243
|
+
<key>hash2</key>
|
|
244
|
+
<data>
|
|
245
|
+
06hbkMdjdn6+wjqoIYXh27mnu6W2fKZ6Q0LPUQ8I85M=
|
|
246
|
+
</data>
|
|
247
|
+
</dict>
|
|
248
|
+
<key>Headers/SPTAppRemoteImageAPI.h</key>
|
|
249
|
+
<dict>
|
|
250
|
+
<key>hash</key>
|
|
251
|
+
<data>
|
|
252
|
+
cFwXJG6kY/Wp9abR7/JSlGRjVhU=
|
|
253
|
+
</data>
|
|
254
|
+
<key>hash2</key>
|
|
255
|
+
<data>
|
|
256
|
+
IZe/KdziuyH++/XzVhual9PbJGOmoSITmoGzKUDXxm0=
|
|
257
|
+
</data>
|
|
258
|
+
</dict>
|
|
259
|
+
<key>Headers/SPTAppRemoteImageRepresentable.h</key>
|
|
260
|
+
<dict>
|
|
261
|
+
<key>hash</key>
|
|
262
|
+
<data>
|
|
263
|
+
ciJ5/qk+pvsaWmK/Htwzo8VWV+I=
|
|
264
|
+
</data>
|
|
265
|
+
<key>hash2</key>
|
|
266
|
+
<data>
|
|
267
|
+
gZBSnduQFKgPAyxGlhOITe/t2W4V3Wbn8s4rwLOfz+E=
|
|
268
|
+
</data>
|
|
269
|
+
</dict>
|
|
270
|
+
<key>Headers/SPTAppRemoteLibraryState.h</key>
|
|
271
|
+
<dict>
|
|
272
|
+
<key>hash</key>
|
|
273
|
+
<data>
|
|
274
|
+
SVMsqEYwTZpjyW7aoWdcj/WlP7k=
|
|
275
|
+
</data>
|
|
276
|
+
<key>hash2</key>
|
|
277
|
+
<data>
|
|
278
|
+
/eJQTzpaVEJiOoqG2rKbd+0WCitm5v/ii0bcBbF+bN8=
|
|
279
|
+
</data>
|
|
280
|
+
</dict>
|
|
281
|
+
<key>Headers/SPTAppRemotePlaybackOptions.h</key>
|
|
282
|
+
<dict>
|
|
283
|
+
<key>hash</key>
|
|
284
|
+
<data>
|
|
285
|
+
pvw2bdL4fv6RTSBuMCc9K5QevCQ=
|
|
286
|
+
</data>
|
|
287
|
+
<key>hash2</key>
|
|
288
|
+
<data>
|
|
289
|
+
1G7XYL6zsUzdDiLHAk90M4xKRAsCcnG0anx7hJtBOIw=
|
|
290
|
+
</data>
|
|
291
|
+
</dict>
|
|
292
|
+
<key>Headers/SPTAppRemotePlaybackRestrictions.h</key>
|
|
293
|
+
<dict>
|
|
294
|
+
<key>hash</key>
|
|
295
|
+
<data>
|
|
296
|
+
ALUn1+dXGFf0AEY4mWOSFz4F3qg=
|
|
297
|
+
</data>
|
|
298
|
+
<key>hash2</key>
|
|
299
|
+
<data>
|
|
300
|
+
+N64MGaUhioHAEuekcSrvVl1FcxznUei5Yq1/KkNei0=
|
|
301
|
+
</data>
|
|
302
|
+
</dict>
|
|
303
|
+
<key>Headers/SPTAppRemotePlayerAPI.h</key>
|
|
304
|
+
<dict>
|
|
305
|
+
<key>hash</key>
|
|
306
|
+
<data>
|
|
307
|
+
krhVrXqBo4Nh4YXRuHZURfKclEE=
|
|
308
|
+
</data>
|
|
309
|
+
<key>hash2</key>
|
|
310
|
+
<data>
|
|
311
|
+
6z0uDE9BpPOZKQnKlWPNWCwR/SI0sNAdsE9bBd8vBPM=
|
|
312
|
+
</data>
|
|
313
|
+
</dict>
|
|
314
|
+
<key>Headers/SPTAppRemotePlayerState.h</key>
|
|
315
|
+
<dict>
|
|
316
|
+
<key>hash</key>
|
|
317
|
+
<data>
|
|
318
|
+
0nUxiikB1mLHRqFJodmtSGL1hqo=
|
|
319
|
+
</data>
|
|
320
|
+
<key>hash2</key>
|
|
321
|
+
<data>
|
|
322
|
+
7Ll+4R7t6Q6NmK8hPnM9+eTrmWR1giwbO0tl3gNveGg=
|
|
323
|
+
</data>
|
|
324
|
+
</dict>
|
|
325
|
+
<key>Headers/SPTAppRemotePodcastPlaybackSpeed.h</key>
|
|
326
|
+
<dict>
|
|
327
|
+
<key>hash</key>
|
|
328
|
+
<data>
|
|
329
|
+
buVPJyc1tr0zVzlF8BxtP1fmG2s=
|
|
330
|
+
</data>
|
|
331
|
+
<key>hash2</key>
|
|
332
|
+
<data>
|
|
333
|
+
K6cJayK1RuCic1Fs7eLWuw6H0MhhoRWO7Qfvn4NOW0s=
|
|
334
|
+
</data>
|
|
335
|
+
</dict>
|
|
336
|
+
<key>Headers/SPTAppRemoteTrack.h</key>
|
|
337
|
+
<dict>
|
|
338
|
+
<key>hash</key>
|
|
339
|
+
<data>
|
|
340
|
+
v7ZLVkQtBEpkm+4SivDvn3tYr0M=
|
|
341
|
+
</data>
|
|
342
|
+
<key>hash2</key>
|
|
343
|
+
<data>
|
|
344
|
+
z1NcXcgGzKWhIOZevAQkV2xci5z/j6p8DOz2fc8daAQ=
|
|
345
|
+
</data>
|
|
346
|
+
</dict>
|
|
347
|
+
<key>Headers/SPTAppRemoteUserAPI.h</key>
|
|
348
|
+
<dict>
|
|
349
|
+
<key>hash</key>
|
|
350
|
+
<data>
|
|
351
|
+
jqgSBg6Bc1Aae/ON6m2ZsusMyoY=
|
|
352
|
+
</data>
|
|
353
|
+
<key>hash2</key>
|
|
354
|
+
<data>
|
|
355
|
+
TwgrVtdlg5ymXlTu1AUGCYsgADjaiPCfAw3xtP4Ni+0=
|
|
356
|
+
</data>
|
|
357
|
+
</dict>
|
|
358
|
+
<key>Headers/SPTAppRemoteUserCapabilities.h</key>
|
|
359
|
+
<dict>
|
|
360
|
+
<key>hash</key>
|
|
361
|
+
<data>
|
|
362
|
+
On4cqNDucPiWZnxsw2L7e02TifQ=
|
|
363
|
+
</data>
|
|
364
|
+
<key>hash2</key>
|
|
365
|
+
<data>
|
|
366
|
+
rgzoWbjiSQUKhTH4hzYJo1V4oOZ4xFWukaED0hRL7yw=
|
|
367
|
+
</data>
|
|
368
|
+
</dict>
|
|
369
|
+
<key>Headers/SPTConfiguration.h</key>
|
|
370
|
+
<dict>
|
|
371
|
+
<key>hash</key>
|
|
372
|
+
<data>
|
|
373
|
+
wInZ+pQ74rpgg+DSyN9GdZEoRVI=
|
|
374
|
+
</data>
|
|
375
|
+
<key>hash2</key>
|
|
376
|
+
<data>
|
|
377
|
+
KOEVP54qMgj9xnvGAjhJOZfDI84RSGqCmPCUA7D5qXs=
|
|
378
|
+
</data>
|
|
379
|
+
</dict>
|
|
380
|
+
<key>Headers/SPTError.h</key>
|
|
381
|
+
<dict>
|
|
382
|
+
<key>hash</key>
|
|
383
|
+
<data>
|
|
384
|
+
Kj+zm7PGIYwZLO3nL5NfqmfXVXk=
|
|
385
|
+
</data>
|
|
386
|
+
<key>hash2</key>
|
|
387
|
+
<data>
|
|
388
|
+
I3Wuh5U8eLBeuTGWV/yJYUs5Atyxua9PVcNY/2cngUw=
|
|
389
|
+
</data>
|
|
390
|
+
</dict>
|
|
391
|
+
<key>Headers/SPTLogin.h</key>
|
|
392
|
+
<dict>
|
|
393
|
+
<key>hash</key>
|
|
394
|
+
<data>
|
|
395
|
+
ZPUkIqDFb0qI+2kxt9cwkiviDko=
|
|
396
|
+
</data>
|
|
397
|
+
<key>hash2</key>
|
|
398
|
+
<data>
|
|
399
|
+
3ztxaTf7CakFIb3Taz03z0g6SIig46Typzij8SFOjhQ=
|
|
400
|
+
</data>
|
|
401
|
+
</dict>
|
|
402
|
+
<key>Headers/SPTMacros.h</key>
|
|
403
|
+
<dict>
|
|
404
|
+
<key>hash</key>
|
|
405
|
+
<data>
|
|
406
|
+
2idMsqzDSas1N9J6xTuIf5w7ozI=
|
|
407
|
+
</data>
|
|
408
|
+
<key>hash2</key>
|
|
409
|
+
<data>
|
|
410
|
+
UnnsQX3ImXUW0a1tx8DJP31c400JMOqw3gBvpITN3ZQ=
|
|
411
|
+
</data>
|
|
412
|
+
</dict>
|
|
413
|
+
<key>Headers/SPTScope.h</key>
|
|
414
|
+
<dict>
|
|
415
|
+
<key>hash</key>
|
|
416
|
+
<data>
|
|
417
|
+
F575KcNSsah0efQcJ9NxqhMj1XU=
|
|
418
|
+
</data>
|
|
419
|
+
<key>hash2</key>
|
|
420
|
+
<data>
|
|
421
|
+
oZRtWZZrHNdvliwGwMDUAH/E2Vm6ndbJY/bjqznGmMk=
|
|
422
|
+
</data>
|
|
423
|
+
</dict>
|
|
424
|
+
<key>Headers/SPTSession.h</key>
|
|
425
|
+
<dict>
|
|
426
|
+
<key>hash</key>
|
|
427
|
+
<data>
|
|
428
|
+
tlKyXr4cYHsmCVT1Pirrn7YD35M=
|
|
429
|
+
</data>
|
|
430
|
+
<key>hash2</key>
|
|
431
|
+
<data>
|
|
432
|
+
vBWbY6+HvUhHlV9tJR+cTDCIm7PX7qYms/CZ4o6rdE8=
|
|
433
|
+
</data>
|
|
434
|
+
</dict>
|
|
435
|
+
<key>Headers/SPTSessionManager.h</key>
|
|
436
|
+
<dict>
|
|
437
|
+
<key>hash</key>
|
|
438
|
+
<data>
|
|
439
|
+
evF+aCKdg+ryTNUXk5Eik/6MNOk=
|
|
440
|
+
</data>
|
|
441
|
+
<key>hash2</key>
|
|
442
|
+
<data>
|
|
443
|
+
p/WBdGNx2Obgjj9TAAjhS6QP/j80z8ShuFmr6uQdNZA=
|
|
444
|
+
</data>
|
|
445
|
+
</dict>
|
|
446
|
+
<key>Headers/SpotifyAppRemote.h</key>
|
|
447
|
+
<dict>
|
|
448
|
+
<key>hash</key>
|
|
449
|
+
<data>
|
|
450
|
+
TCwc+uBsEd4YUZOvpso42XL5VyQ=
|
|
451
|
+
</data>
|
|
452
|
+
<key>hash2</key>
|
|
453
|
+
<data>
|
|
454
|
+
qmvRjoF49m2IoRzbsHDQHB2LJu8WgF14k9gGWPiBVvE=
|
|
455
|
+
</data>
|
|
456
|
+
</dict>
|
|
457
|
+
<key>Headers/SpotifyiOS.h</key>
|
|
458
|
+
<dict>
|
|
459
|
+
<key>hash</key>
|
|
460
|
+
<data>
|
|
461
|
+
q2AWpJkisBaRyAAIh23bnigAQec=
|
|
462
|
+
</data>
|
|
463
|
+
<key>hash2</key>
|
|
464
|
+
<data>
|
|
465
|
+
w/SJykKvp2r09Ybp14YnSuITltaCZXKnBTWeQ1NILHM=
|
|
466
|
+
</data>
|
|
467
|
+
</dict>
|
|
468
|
+
<key>Modules/module.modulemap</key>
|
|
469
|
+
<dict>
|
|
470
|
+
<key>hash</key>
|
|
471
|
+
<data>
|
|
472
|
+
XmNK41tuIV8BMkBFvu+R5IiJC6s=
|
|
473
|
+
</data>
|
|
474
|
+
<key>hash2</key>
|
|
475
|
+
<data>
|
|
476
|
+
geE0H7wPQlfolmnYAJkb+uT3V9APuwa2AmaouUqjmWQ=
|
|
477
|
+
</data>
|
|
478
|
+
</dict>
|
|
479
|
+
</dict>
|
|
480
|
+
<key>rules</key>
|
|
481
|
+
<dict>
|
|
482
|
+
<key>^.*</key>
|
|
483
|
+
<true/>
|
|
484
|
+
<key>^.*\.lproj/</key>
|
|
485
|
+
<dict>
|
|
486
|
+
<key>optional</key>
|
|
487
|
+
<true/>
|
|
488
|
+
<key>weight</key>
|
|
489
|
+
<real>1000</real>
|
|
490
|
+
</dict>
|
|
491
|
+
<key>^.*\.lproj/locversion.plist$</key>
|
|
492
|
+
<dict>
|
|
493
|
+
<key>omit</key>
|
|
494
|
+
<true/>
|
|
495
|
+
<key>weight</key>
|
|
496
|
+
<real>1100</real>
|
|
497
|
+
</dict>
|
|
498
|
+
<key>^Base\.lproj/</key>
|
|
499
|
+
<dict>
|
|
500
|
+
<key>weight</key>
|
|
501
|
+
<real>1010</real>
|
|
502
|
+
</dict>
|
|
503
|
+
<key>^version.plist$</key>
|
|
504
|
+
<true/>
|
|
505
|
+
</dict>
|
|
506
|
+
<key>rules2</key>
|
|
507
|
+
<dict>
|
|
508
|
+
<key>.*\.dSYM($|/)</key>
|
|
509
|
+
<dict>
|
|
510
|
+
<key>weight</key>
|
|
511
|
+
<real>11</real>
|
|
512
|
+
</dict>
|
|
513
|
+
<key>^(.*/)?\.DS_Store$</key>
|
|
514
|
+
<dict>
|
|
515
|
+
<key>omit</key>
|
|
516
|
+
<true/>
|
|
517
|
+
<key>weight</key>
|
|
518
|
+
<real>2000</real>
|
|
519
|
+
</dict>
|
|
520
|
+
<key>^.*</key>
|
|
521
|
+
<true/>
|
|
522
|
+
<key>^.*\.lproj/</key>
|
|
523
|
+
<dict>
|
|
524
|
+
<key>optional</key>
|
|
525
|
+
<true/>
|
|
526
|
+
<key>weight</key>
|
|
527
|
+
<real>1000</real>
|
|
528
|
+
</dict>
|
|
529
|
+
<key>^.*\.lproj/locversion.plist$</key>
|
|
530
|
+
<dict>
|
|
531
|
+
<key>omit</key>
|
|
532
|
+
<true/>
|
|
533
|
+
<key>weight</key>
|
|
534
|
+
<real>1100</real>
|
|
535
|
+
</dict>
|
|
536
|
+
<key>^Base\.lproj/</key>
|
|
537
|
+
<dict>
|
|
538
|
+
<key>weight</key>
|
|
539
|
+
<real>1010</real>
|
|
540
|
+
</dict>
|
|
541
|
+
<key>^Info\.plist$</key>
|
|
542
|
+
<dict>
|
|
543
|
+
<key>omit</key>
|
|
544
|
+
<true/>
|
|
545
|
+
<key>weight</key>
|
|
546
|
+
<real>20</real>
|
|
547
|
+
</dict>
|
|
548
|
+
<key>^PkgInfo$</key>
|
|
549
|
+
<dict>
|
|
550
|
+
<key>omit</key>
|
|
551
|
+
<true/>
|
|
552
|
+
<key>weight</key>
|
|
553
|
+
<real>20</real>
|
|
554
|
+
</dict>
|
|
555
|
+
<key>^embedded\.provisionprofile$</key>
|
|
556
|
+
<dict>
|
|
557
|
+
<key>weight</key>
|
|
558
|
+
<real>20</real>
|
|
559
|
+
</dict>
|
|
560
|
+
<key>^version\.plist$</key>
|
|
561
|
+
<dict>
|
|
562
|
+
<key>weight</key>
|
|
563
|
+
<real>20</real>
|
|
564
|
+
</dict>
|
|
565
|
+
</dict>
|
|
566
|
+
</dict>
|
|
567
|
+
</plist>
|
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@wwdrew/expo-spotify-sdk",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Expo Module for native Spotify SDK",
|
|
5
|
+
"main": "build/index.js",
|
|
6
|
+
"types": "build/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "expo-module build",
|
|
9
|
+
"clean": "expo-module clean",
|
|
10
|
+
"lint": "expo-module lint",
|
|
11
|
+
"test": "expo-module test",
|
|
12
|
+
"prepare": "expo-module prepare",
|
|
13
|
+
"prepublishOnly": "expo-module prepublishOnly",
|
|
14
|
+
"expo-module": "expo-module",
|
|
15
|
+
"open:ios": "open -a \"Xcode\" example/ios",
|
|
16
|
+
"open:android": "open -a \"Android Studio\" example/android"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"react-native",
|
|
20
|
+
"expo",
|
|
21
|
+
"expo-spotify-sdk",
|
|
22
|
+
"ExpoSpotifySDK",
|
|
23
|
+
"Spotify"
|
|
24
|
+
],
|
|
25
|
+
"files": [
|
|
26
|
+
"plugin/build",
|
|
27
|
+
"build",
|
|
28
|
+
"ios",
|
|
29
|
+
"app.plugin.js",
|
|
30
|
+
"expo-module.config.json",
|
|
31
|
+
"server.js"
|
|
32
|
+
],
|
|
33
|
+
"jest": {
|
|
34
|
+
"preset": "expo-module-scripts"
|
|
35
|
+
},
|
|
36
|
+
"repository": "https://github.com/wwdrew/expo-spotify-sdk",
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/wwdrew/expo-spotify-sdk/issues"
|
|
39
|
+
},
|
|
40
|
+
"author": "Drew Miller <49833875+wwdrew@users.noreply.github.com> (https:/github.com/wwdrew/)",
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"homepage": "https://github.com/wwdrew/expo-spotify-sdk#readme",
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/react": "^18.0.25",
|
|
45
|
+
"expo-module-scripts": "^3.1.0",
|
|
46
|
+
"expo-modules-core": "^1.5.11"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"expo": "*",
|
|
50
|
+
"react": "*",
|
|
51
|
+
"react-native": "*"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"axios": "^1.6.5",
|
|
55
|
+
"express": "^4.18.2",
|
|
56
|
+
"qs": "^6.11.2"
|
|
57
|
+
}
|
|
58
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.withSpotifyAndroidAppBuildGradle = void 0;
|
|
4
|
+
const config_plugins_1 = require("@expo/config-plugins");
|
|
5
|
+
const withSpotifyAndroidAppBuildGradle = (config, spotifyConfig) => {
|
|
6
|
+
return (0, config_plugins_1.withAppBuildGradle)(config, (config) => {
|
|
7
|
+
config.modResults.contents += `
|
|
8
|
+
android {
|
|
9
|
+
defaultConfig {
|
|
10
|
+
manifestPlaceholders = [redirectSchemeName: "${spotifyConfig.scheme}", redirectHostName: "${spotifyConfig.host}"]
|
|
11
|
+
}
|
|
12
|
+
}`;
|
|
13
|
+
return config;
|
|
14
|
+
});
|
|
15
|
+
};
|
|
16
|
+
exports.withSpotifyAndroidAppBuildGradle = withSpotifyAndroidAppBuildGradle;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.withSpotifyConfigAndroid = void 0;
|
|
4
|
+
const config_plugins_1 = require("@expo/config-plugins");
|
|
5
|
+
const formatAndroidKeys = (string) => {
|
|
6
|
+
return "Spotify" + string.charAt(0).toUpperCase() + string.slice(1);
|
|
7
|
+
};
|
|
8
|
+
const withSpotifyConfigAndroid = (config, spotifyConfig) => {
|
|
9
|
+
return (0, config_plugins_1.withAndroidManifest)(config, (config) => {
|
|
10
|
+
Object.entries(spotifyConfig).forEach(([key, value]) => {
|
|
11
|
+
config_plugins_1.AndroidConfig.Manifest.addMetaDataItemToMainApplication(config_plugins_1.AndroidConfig.Manifest.getMainApplicationOrThrow(config.modResults), formatAndroidKeys(key), String(Array.isArray(value) ? value.join(" ") : value));
|
|
12
|
+
});
|
|
13
|
+
return config;
|
|
14
|
+
});
|
|
15
|
+
};
|
|
16
|
+
exports.withSpotifyConfigAndroid = withSpotifyConfigAndroid;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.withSpotifySdkConfig = void 0;
|
|
4
|
+
const withSpotifyAndroidAppBuildGradle_1 = require("./android/withSpotifyAndroidAppBuildGradle");
|
|
5
|
+
const withSpotifyQueryScheme_1 = require("./ios/withSpotifyQueryScheme");
|
|
6
|
+
const withSpotifyURLScheme_1 = require("./ios/withSpotifyURLScheme");
|
|
7
|
+
const withSpotifyConfig_1 = require("./withSpotifyConfig");
|
|
8
|
+
const withSpotifySdkConfig = (config, spotifyConfig = {
|
|
9
|
+
clientID: "clientID",
|
|
10
|
+
host: "host",
|
|
11
|
+
scheme: "scheme",
|
|
12
|
+
tokenRefreshURL: "tokenRefreshURL",
|
|
13
|
+
tokenSwapURL: "tokenSwapURL",
|
|
14
|
+
}) => {
|
|
15
|
+
config = (0, withSpotifyConfig_1.withSpotifyConfig)(config, spotifyConfig);
|
|
16
|
+
// Android specific
|
|
17
|
+
config = (0, withSpotifyAndroidAppBuildGradle_1.withSpotifyAndroidAppBuildGradle)(config, spotifyConfig);
|
|
18
|
+
// iOS specific
|
|
19
|
+
config = (0, withSpotifyQueryScheme_1.withSpotifyQueryScheme)(config, spotifyConfig);
|
|
20
|
+
config = (0, withSpotifyURLScheme_1.withSpotifyURLScheme)(config, spotifyConfig);
|
|
21
|
+
return config;
|
|
22
|
+
};
|
|
23
|
+
exports.withSpotifySdkConfig = withSpotifySdkConfig;
|
|
24
|
+
exports.default = exports.withSpotifySdkConfig;
|