├── .all-contributorsrc ├── .gitattributes ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .npmignore ├── .screenshots ├── ios-add-framework.png └── ios-framework-searchpaths.png ├── .watchmanconfig ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── PROJECTS.md ├── README.md ├── RNSpotifyRemote.podspec ├── android ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── reactlibrary │ ├── Convert.java │ ├── RNSpotifyRemoteAppModule.java │ ├── RNSpotifyRemoteAuthModule.java │ └── RNSpotifyRemotePackage.java ├── dependabot.yml ├── docs ├── assets │ ├── css │ │ └── main.css │ ├── images │ │ ├── icons.png │ │ ├── icons@2x.png │ │ ├── widgets.png │ │ └── widgets@2x.png │ └── js │ │ ├── main.js │ │ └── search.js ├── enums │ ├── apiscope.html │ └── repeatmode.html ├── index.html ├── interfaces │ ├── album.html │ ├── apiconfig.html │ ├── artist.html │ ├── contentitem.html │ ├── crossfadestate.html │ ├── getchildrenitemsoptions.html │ ├── playbackoptions.html │ ├── playbackrestrictions.html │ ├── playercontext.html │ ├── playerstate.html │ ├── recommendedcontentoptions.html │ ├── spotifyauth.html │ ├── spotifyremoteapi.html │ ├── spotifyremoteevents.html │ ├── spotifysession.html │ └── track.html └── modules.html ├── example-server ├── .gitignore ├── README.md ├── index.js ├── package.json └── yarn.lock ├── example ├── .buckconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── AppContext.tsx ├── Components │ ├── Authenticate.tsx │ ├── ConnectButton.tsx │ ├── EnvVars.tsx │ ├── Miscelaneous.tsx │ ├── SpotifyContent.tsx │ ├── SpotifyContentListItem.tsx │ └── TransportControls.tsx ├── Readme.md ├── __tests__ │ └── App-test.tsx ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── AntDesign.ttf │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ ├── Fontisto.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── Roboto.ttf │ │ │ │ ├── Roboto_medium.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ ├── Zocial.ttf │ │ │ │ └── rubicon-icon-font.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── Launch Screen.storyboard │ ├── Podfile │ ├── Podfile.lock │ ├── example-Bridging-Header.h │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── example.xcscheme │ ├── example.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m ├── libs │ └── react-native-dotenv.d.ts ├── metro.config.js ├── package.json ├── patches │ └── native-base+2.13.12.patch ├── scripts │ └── examples_postinstall.js ├── styles.ts ├── tsconfig.json └── yarn.lock ├── index.js ├── ios ├── Macros.h ├── NSArrayExtensions.h ├── NSArrayExtensions.m ├── RNSpotifyItem.h ├── RNSpotifyItem.m ├── RNSpotifyRemote.h ├── RNSpotifyRemote.xcodeproj │ └── project.pbxproj ├── RNSpotifyRemote.xcworkspace │ └── contents.xcworkspacedata ├── RNSpotifyRemoteAppRemote.h ├── RNSpotifyRemoteAppRemote.m ├── RNSpotifyRemoteAuth.h ├── RNSpotifyRemoteAuth.m ├── RNSpotifyRemoteConvert.h ├── RNSpotifyRemoteConvert.m ├── RNSpotifyRemoteError.h ├── RNSpotifyRemoteError.m ├── RNSpotifyRemotePromise.h ├── RNSpotifyRemotePromise.m ├── RNSpotifyRemoteSubscriptionCallback.h └── RNSpotifyRemoteSubscriptionCallback.m ├── package.json ├── react-native.config.js ├── src ├── Album.ts ├── ApiConfig.ts ├── ApiScope.ts ├── Artist.ts ├── ContentItem.ts ├── ContentType.ts ├── CrossfadeState.ts ├── GetChildrenItemsOptions.ts ├── PlaybackOptions.ts ├── PlaybackRestrictions.ts ├── PlayerContext.ts ├── PlayerState.ts ├── RecommendedContentOptions.ts ├── RepeatMode.ts ├── SpotifyAuth.ts ├── SpotifyRemote.ts ├── SpotifySession.ts ├── Track.ts ├── TypedEventEmitter.ts └── index.ts ├── tsconfig.json ├── typedoc.json └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/.npmignore -------------------------------------------------------------------------------- /.screenshots/ios-add-framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/.screenshots/ios-add-framework.png -------------------------------------------------------------------------------- /.screenshots/ios-framework-searchpaths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/.screenshots/ios-framework-searchpaths.png -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PROJECTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/PROJECTS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/README.md -------------------------------------------------------------------------------- /RNSpotifyRemote.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/RNSpotifyRemote.podspec -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/reactlibrary/Convert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/android/src/main/java/com/reactlibrary/Convert.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactlibrary/RNSpotifyRemoteAppModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/android/src/main/java/com/reactlibrary/RNSpotifyRemoteAppModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactlibrary/RNSpotifyRemoteAuthModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/android/src/main/java/com/reactlibrary/RNSpotifyRemoteAuthModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactlibrary/RNSpotifyRemotePackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/android/src/main/java/com/reactlibrary/RNSpotifyRemotePackage.java -------------------------------------------------------------------------------- /dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/dependabot.yml -------------------------------------------------------------------------------- /docs/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/assets/css/main.css -------------------------------------------------------------------------------- /docs/assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/assets/images/icons.png -------------------------------------------------------------------------------- /docs/assets/images/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/assets/images/icons@2x.png -------------------------------------------------------------------------------- /docs/assets/images/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/assets/images/widgets.png -------------------------------------------------------------------------------- /docs/assets/images/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/assets/images/widgets@2x.png -------------------------------------------------------------------------------- /docs/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/assets/js/main.js -------------------------------------------------------------------------------- /docs/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/assets/js/search.js -------------------------------------------------------------------------------- /docs/enums/apiscope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/enums/apiscope.html -------------------------------------------------------------------------------- /docs/enums/repeatmode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/enums/repeatmode.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/album.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/album.html -------------------------------------------------------------------------------- /docs/interfaces/apiconfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/apiconfig.html -------------------------------------------------------------------------------- /docs/interfaces/artist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/artist.html -------------------------------------------------------------------------------- /docs/interfaces/contentitem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/contentitem.html -------------------------------------------------------------------------------- /docs/interfaces/crossfadestate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/crossfadestate.html -------------------------------------------------------------------------------- /docs/interfaces/getchildrenitemsoptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/getchildrenitemsoptions.html -------------------------------------------------------------------------------- /docs/interfaces/playbackoptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/playbackoptions.html -------------------------------------------------------------------------------- /docs/interfaces/playbackrestrictions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/playbackrestrictions.html -------------------------------------------------------------------------------- /docs/interfaces/playercontext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/playercontext.html -------------------------------------------------------------------------------- /docs/interfaces/playerstate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/playerstate.html -------------------------------------------------------------------------------- /docs/interfaces/recommendedcontentoptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/recommendedcontentoptions.html -------------------------------------------------------------------------------- /docs/interfaces/spotifyauth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/spotifyauth.html -------------------------------------------------------------------------------- /docs/interfaces/spotifyremoteapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/spotifyremoteapi.html -------------------------------------------------------------------------------- /docs/interfaces/spotifyremoteevents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/spotifyremoteevents.html -------------------------------------------------------------------------------- /docs/interfaces/spotifysession.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/spotifysession.html -------------------------------------------------------------------------------- /docs/interfaces/track.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/interfaces/track.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/docs/modules.html -------------------------------------------------------------------------------- /example-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example-server/.gitignore -------------------------------------------------------------------------------- /example-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example-server/README.md -------------------------------------------------------------------------------- /example-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example-server/index.js -------------------------------------------------------------------------------- /example-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example-server/package.json -------------------------------------------------------------------------------- /example-server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example-server/yarn.lock -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/.gitattributes -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/.prettierrc.js -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/App.tsx -------------------------------------------------------------------------------- /example/AppContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/AppContext.tsx -------------------------------------------------------------------------------- /example/Components/Authenticate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/Components/Authenticate.tsx -------------------------------------------------------------------------------- /example/Components/ConnectButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/Components/ConnectButton.tsx -------------------------------------------------------------------------------- /example/Components/EnvVars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/Components/EnvVars.tsx -------------------------------------------------------------------------------- /example/Components/Miscelaneous.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/Components/Miscelaneous.tsx -------------------------------------------------------------------------------- /example/Components/SpotifyContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/Components/SpotifyContent.tsx -------------------------------------------------------------------------------- /example/Components/SpotifyContentListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/Components/SpotifyContentListItem.tsx -------------------------------------------------------------------------------- /example/Components/TransportControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/Components/TransportControls.tsx -------------------------------------------------------------------------------- /example/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/Readme.md -------------------------------------------------------------------------------- /example/__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/__tests__/App-test.tsx -------------------------------------------------------------------------------- /example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /example/android/app/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/app/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/example/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/debug/java/com/example/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/java/com/example/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/java/com/example/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/ios/Launch Screen.storyboard -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/example-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/ios/example-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/ios/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme -------------------------------------------------------------------------------- /example/ios/example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/ios/example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/ios/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/ios/example/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/ios/example/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/ios/example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/ios/example/Info.plist -------------------------------------------------------------------------------- /example/ios/example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/ios/example/main.m -------------------------------------------------------------------------------- /example/libs/react-native-dotenv.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/libs/react-native-dotenv.d.ts -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/package.json -------------------------------------------------------------------------------- /example/patches/native-base+2.13.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/patches/native-base+2.13.12.patch -------------------------------------------------------------------------------- /example/scripts/examples_postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/scripts/examples_postinstall.js -------------------------------------------------------------------------------- /example/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/styles.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/index.js -------------------------------------------------------------------------------- /ios/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/Macros.h -------------------------------------------------------------------------------- /ios/NSArrayExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/NSArrayExtensions.h -------------------------------------------------------------------------------- /ios/NSArrayExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/NSArrayExtensions.m -------------------------------------------------------------------------------- /ios/RNSpotifyItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyItem.h -------------------------------------------------------------------------------- /ios/RNSpotifyItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyItem.m -------------------------------------------------------------------------------- /ios/RNSpotifyRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemote.h -------------------------------------------------------------------------------- /ios/RNSpotifyRemote.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemote.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNSpotifyRemote.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemote.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/RNSpotifyRemoteAppRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemoteAppRemote.h -------------------------------------------------------------------------------- /ios/RNSpotifyRemoteAppRemote.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemoteAppRemote.m -------------------------------------------------------------------------------- /ios/RNSpotifyRemoteAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemoteAuth.h -------------------------------------------------------------------------------- /ios/RNSpotifyRemoteAuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemoteAuth.m -------------------------------------------------------------------------------- /ios/RNSpotifyRemoteConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemoteConvert.h -------------------------------------------------------------------------------- /ios/RNSpotifyRemoteConvert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemoteConvert.m -------------------------------------------------------------------------------- /ios/RNSpotifyRemoteError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemoteError.h -------------------------------------------------------------------------------- /ios/RNSpotifyRemoteError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemoteError.m -------------------------------------------------------------------------------- /ios/RNSpotifyRemotePromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemotePromise.h -------------------------------------------------------------------------------- /ios/RNSpotifyRemotePromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemotePromise.m -------------------------------------------------------------------------------- /ios/RNSpotifyRemoteSubscriptionCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemoteSubscriptionCallback.h -------------------------------------------------------------------------------- /ios/RNSpotifyRemoteSubscriptionCallback.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/ios/RNSpotifyRemoteSubscriptionCallback.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/Album.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/Album.ts -------------------------------------------------------------------------------- /src/ApiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/ApiConfig.ts -------------------------------------------------------------------------------- /src/ApiScope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/ApiScope.ts -------------------------------------------------------------------------------- /src/Artist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/Artist.ts -------------------------------------------------------------------------------- /src/ContentItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/ContentItem.ts -------------------------------------------------------------------------------- /src/ContentType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/ContentType.ts -------------------------------------------------------------------------------- /src/CrossfadeState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/CrossfadeState.ts -------------------------------------------------------------------------------- /src/GetChildrenItemsOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/GetChildrenItemsOptions.ts -------------------------------------------------------------------------------- /src/PlaybackOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/PlaybackOptions.ts -------------------------------------------------------------------------------- /src/PlaybackRestrictions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/PlaybackRestrictions.ts -------------------------------------------------------------------------------- /src/PlayerContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/PlayerContext.ts -------------------------------------------------------------------------------- /src/PlayerState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/PlayerState.ts -------------------------------------------------------------------------------- /src/RecommendedContentOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/RecommendedContentOptions.ts -------------------------------------------------------------------------------- /src/RepeatMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/RepeatMode.ts -------------------------------------------------------------------------------- /src/SpotifyAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/SpotifyAuth.ts -------------------------------------------------------------------------------- /src/SpotifyRemote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/SpotifyRemote.ts -------------------------------------------------------------------------------- /src/SpotifySession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/SpotifySession.ts -------------------------------------------------------------------------------- /src/Track.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/Track.ts -------------------------------------------------------------------------------- /src/TypedEventEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/TypedEventEmitter.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/typedoc.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjam/react-native-spotify-remote/HEAD/yarn.lock --------------------------------------------------------------------------------