@bluebillywig/react-native-bb-player 8.46.0 → 8.46.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 +17 -0
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -76,6 +76,23 @@ repositories {
|
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
+
// When native SDKs are vendored in android/repo/, make the local maven repo
|
|
80
|
+
// available to consuming projects so they can resolve transitive dependencies.
|
|
81
|
+
def vendoredRepo = file("$projectDir/repo")
|
|
82
|
+
if (vendoredRepo.exists()) {
|
|
83
|
+
rootProject.allprojects { proj ->
|
|
84
|
+
proj.repositories {
|
|
85
|
+
maven {
|
|
86
|
+
name "BBPlayerVendored"
|
|
87
|
+
url vendoredRepo.toURI()
|
|
88
|
+
content {
|
|
89
|
+
includeGroup "com.bluebillywig.bbnativeplayersdk"
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
79
96
|
dependencies {
|
|
80
97
|
// React Native
|
|
81
98
|
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.46.
|
|
3
|
+
"version": "8.46.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",
|