$ npm install react-native-chrome-cast --save
$ react-native link react-native-chrome-cast
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-chrome-cast
and addRNChromeCast.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNChromeCast.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.emadivizio.reactnativechromecast.RNChromeCastPackage;
to the imports at the top of the file - Add
new RNChromeCastPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-chrome-cast' project(':react-native-chrome-cast').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-chrome-cast/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-chrome-cast')
- In Visual Studio add the
RNChromeCast.sln
innode_modules/react-native-chrome-cast/windows/RNChromeCast.sln
folder to their solution, reference from their app. - Open up your
MainPage.cs
app
- Add
using Chrome.Cast.RNChromeCast;
to the usings at the top of the file - Add
new RNChromeCastPackage()
to theList<IReactPackage>
returned by thePackages
method
import RNChromeCast from 'react-native-chrome-cast';
// TODO: What to do with the module?
RNChromeCast;
SESSION_STARTING = 0;
SESSION_STARTED = 1;
SESSION_START_FAILED = 2;
SESSION_ENDING = 3;
SESSION_ENDED = 4;
SESSION_RESUMING = 5;
SESSION_RESUMED = 6;
SESSION_RESUME_FAILED = 7;
SESSION_SUSPENDED = 8;