UNPKG

@wwdrew/expo-spotify-sdk

Version:

Expo module wrapping the native Spotify iOS (v5) and Android (v4) SDKs for OAuth authentication and App Remote playback control

10 lines (9 loc) 612 B
import { ConfigPlugin } from "@expo/config-plugins"; export declare const PODFILE_SPOTIFY_IOS_TAG = "expo-spotify-sdk-spotify-ios-pod"; /** * Standard CocoaPods binary pod — SpotifyiOS.podspec uses `source: { http: ... }` * so CocoaPods downloads and runs `prepare_command` (unlike `:path` pods). */ export declare const PODFILE_SPOTIFY_IOS_POD = " pod 'SpotifyiOS', :podspec => File.join(__dir__, '../node_modules/@wwdrew/expo-spotify-sdk/spotify-ios/SpotifyiOS.podspec')"; export declare function applySpotifyIosPod(podfileContents: string): string; export declare const withSpotifyIosPod: ConfigPlugin;