forked from valtech-sd/react-native-video
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
393 additions
and
229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Syncing OSS changes to fork | ||
|
||
1. Make sure latest `main-dxp` branch is checked out | ||
1. Create `feature/sync` branch `git checkout -b feature/sync` | ||
1. Make sure OSS repository is added as separate remote. `git remote add oss [email protected]:TheWidlarzGroup/react-native-video.git` | ||
1. Fetch all tags `git fetch --all --tags` | ||
1. List OSS release tags `git ls-remote --tags oss` | ||
1. Merge OSS release tag `git merge v6.X.X` | ||
1. Solve conflicts | ||
1. Make sure CHANGELOG is ordered properly: OSS release X -> fork releases based on X -> OSS release Y | ||
1. Check is sample is working | ||
1. Add all changes `git add .` | ||
1. Commit all changes `git commit -m "Sync 6.X.X"` | ||
1. Push changes `git push -u origin feature/sync` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 0 additions & 13 deletions
13
android/src/main/java/com/brentvatne/receiver/BecomingNoisyListener.java
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
android/src/main/java/com/brentvatne/receiver/BecomingNoisyListener.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.brentvatne.receiver | ||
|
||
interface BecomingNoisyListener { | ||
companion object { | ||
val NO_OP = object : BecomingNoisyListener { | ||
override fun onAudioBecomingNoisy() { | ||
// NO_OP | ||
} | ||
} | ||
} | ||
fun onAudioBecomingNoisy() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ This repository contains multiple a sample implementation in example folder. | |
It is always preferable to test behavior on a sample app than in a full app implementation. | ||
The basic sample allow to test a lot of feature. | ||
To use the sample you will need to do steps: | ||
- Clone this repository: ``` git clone [email protected]:TheWidlarzGroup/react-native-video.git``` | ||
- Clone this repository: ``` git clone [email protected]:miquido/react-native-video.git``` | ||
- Go to root folder and build it. It will generate a transpiled version of the package in lib folder: ```cd react-native-video && yarn && yarn build``` | ||
- Go to the sample and install it: ```cd example/basic && yarn install``` | ||
- Build it ! for android ```yarn android``` for ios ```cd ios && pod install && cd .. && yarn ios``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.