@bluebillywig/react-native-bb-player 8.47.0 → 8.47.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +11 -0
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -78,6 +78,17 @@ repositories {
|
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
+
// Propagate vendored repo to consumer app so transitive deps resolve
|
|
82
|
+
rootProject.allprojects { proj ->
|
|
83
|
+
proj.repositories {
|
|
84
|
+
def vendoredRepo = file("${project.projectDir}/repo")
|
|
85
|
+
if (vendoredRepo.exists()) {
|
|
86
|
+
maven { url vendoredRepo.toURI() }
|
|
87
|
+
}
|
|
88
|
+
maven { url "https://maven.bluebillywig.com/releases" }
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
81
92
|
dependencies {
|
|
82
93
|
// React Native
|
|
83
94
|
implementation 'com.facebook.react:react-android'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bluebillywig/react-native-bb-player",
|
|
3
|
-
"version": "8.47.
|
|
3
|
+
"version": "8.47.1",
|
|
4
4
|
"description": "Blue Billywig Native Video Player for React Native - iOS AVPlayer and Android ExoPlayer integration",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|