diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 223be5ae..61d5de71 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -10,37 +10,24 @@ assignees: ''
# Bug
## Platform
-
Which player are you experiencing the problem on:
* iOS
* Android
-* Windows UWP
-* Windows WPF
+* Windows
## Environment info
-
-
-React native info output:
-
-```bash
- // paste it here
-```
-
+
Library version: x.x.x
+Device:
## Steps To Reproduce
diff --git a/Video.js b/Video.js
index 808c0a51..dc451d3e 100644
--- a/Video.js
+++ b/Video.js
@@ -416,13 +416,6 @@ Video.propTypes = {
FilterType.SEPIA,
]),
filterEnabled: PropTypes.bool,
- /* Native only */
- src: PropTypes.object,
- seek: PropTypes.oneOfType([
- PropTypes.number,
- PropTypes.object,
- ]),
- fullscreen: PropTypes.bool,
onVideoLoadStart: PropTypes.func,
onVideoLoad: PropTypes.func,
onVideoBuffer: PropTypes.func,
@@ -566,10 +559,4 @@ Video.propTypes = {
...ViewPropTypes,
};
-const RCTVideo = requireNativeComponent('RCTVideo', Video, {
- nativeOnly: {
- src: true,
- seek: true,
- fullscreen: true,
- },
-});
+const RCTVideo = requireNativeComponent('RCTVideo');
diff --git a/android/build.gradle b/android/build.gradle
index 0c3969c9..de702f92 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -17,6 +17,7 @@ def configStringPath = (
).md5()
android {
+ namespace 'com.brentvatne.react'
compileSdkVersion safeExtGet('compileSdkVersion', 31)
buildToolsVersion safeExtGet('buildToolsVersion', '30.0.2')
diff --git a/android/src/main/res/layout/exo_player_control_view.xml b/android/src/main/res/layout/exo_player_control_view.xml
index 19440912..27d3883e 100644
--- a/android/src/main/res/layout/exo_player_control_view.xml
+++ b/android/src/main/res/layout/exo_player_control_view.xml
@@ -14,27 +14,27 @@
android:paddingTop="4dp"
android:orientation="horizontal">
-
-
-
-
-
-
@@ -46,7 +46,7 @@
android:gravity="center_vertical"
android:orientation="horizontal">
-
-
#import "RCTVideoSwiftLog.h"
+#import "RCTEventDispatcher.h"
#if __has_include()
#import "RCTVideoCache.h"