You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of React Native `> 0.61`, auto linking should work for both iOS and Android. There shouldn't be any modifications necessary and it _Should_ work out of the box. The one caveat, is that `react-native-events` needs to be linked as it doesn't yet support auto linking. If you do run into issues or are using an older version of React Native, the following sections should help get you up and running.
78
+
As of React Native `> 0.61`, auto linking should work for both iOS and Android. There shouldn't be any modifications necessary and it _Should_ work out of the box. If you do run into issues or are using an older version of React Native, the following sections should help get you up and running.
79
79
80
80
### iOS
81
81
@@ -86,7 +86,6 @@ As of React Native `> 0.61`, auto linking should work for both iOS and Android.
86
86
By far the easiest way to integrate into your project. In your `ios/PodFile` add the following lines to your projects target:
87
87
88
88
```rb
89
-
pod 'RNEventEmitter', :path => "../node_modules/react-native-events"
90
89
pod 'RNSpotifyRemote', :path => '../node_modules/react-native-spotify-remote'
91
90
```
92
91
@@ -139,15 +138,12 @@ Modifications are needed for the `AppDelegate.m`:
139
138
140
139
If you need to link your project manually, here are some things you'll need to do.
141
140
142
-
> ### `react-native-events` does not support autolinking at this point and will need to be manually linked into your application
143
-
144
141
1. Open up `android/app/src/main/java/[...]/MainApplication.java`
145
142
146
143
- Add the following imports to the top of the file
4. As per the [Spotify Android SDK Docs](https://developer.spotify.com/documentation/android/guides/android-authentication/) Insert the following lines into `android/app/src/AndroidManifest.xml`
183
174
@@ -270,7 +261,7 @@ Please do not open issues about getting the module to work unless you have tried
270
261
Big thanks to [@lufinkey](https://github.com/lufinkey) and all of the great work that he has done in the [react-native-spotify](https://github.com/lufinkey/react-native-spotify) repo which was the original source of inspiration and some useful patterns for this package.
271
262
272
263
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
0 commit comments