![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
react-native-bitmovin-player
Advanced tools
$ npm install react-native-bitmovin-player --save
$ react-native link react-native-bitmovin-player
Libraries
➜ Add Files to [your project's name]
node_modules
➜ react-native-bitmovin-player
and add RNBitmovinPlayer.xcodeproj
libRNBitmovinPlayer.a
to your project's Build Phases
➜ Link Binary With Libraries
Cmd+R
)android/app/src/main/java/[...]/MainActivity.java
import com.xxsnakerxx.RNBitmovinPlayerPackage;
to the imports at the top of the filenew RNBitmovinPlayerPackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':react-native-bitmovin-player'
project(':react-native-bitmovin-player').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-bitmovin-player/android')
android/app/build.gradle
:
implementation project(':react-native-bitmovin-player')
Add line to your Podfile
pod 'BitmovinPlayer', git: 'https://github.com/bitmovin/bitmovin-player-ios-sdk-cocoapod.git', tag: '2.18.0'
.
After that, install the pod using pod install
.
Add a link to our release repository to your application's build.gradle
file. In addition to that, the google maven repository must be added.
allprojects {
repositories {
...
google()
maven {
url 'http://bitmovin.bintray.com/maven'
}
}
}
Add the Bundle identifier of the iOS application which is using the SDK as an allowed domain to the Bitmovin licensing backend. This can also be done under Player -> Licenses
when logging in into https://dashboard.bitmovin.com with your account.
When you do not do this, you'll get a license error when starting the application which contains the player.
Add your Bitmovin player license key to the Info.plist
file as BitmovinPlayerLicenseKey.
Add your Bitmovin player license key to the AndroidManifest.xml
.
<meta-data android:name="BITMOVIN_PLAYER_LICENSE_KEY" android:value="YOUR_KEY_HERE" />
Your player license key can be found when logging in into https://dashboard.bitmovin.com and navigating to Player -> Licenses
.
import BitmovinPlayer from 'react-native-bitmovin-player';
// please follow to index.js for available props
<BitmovinPlayer
configuration={{
source: {
title: 'It works',
url: 'https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8',
},
}}
/>
FAQs
Bitmovin player React Native module
We found that react-native-bitmovin-player demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.