From 0433cb21ad7988d281e8e3beb3dc8717ead9818a Mon Sep 17 00:00:00 2001 From: Neven Falica Date: Thu, 20 Jan 2022 12:36:39 +0100 Subject: [PATCH] Fixed incorrect module in README.md For Angular, example code is incorrectly referencing `@nstudio/nativescript-exoplayer`, instead of `nativescript-videoplayer`. Once replaced with correct name, Angular code example can be copy-pasted into other projects, works with no issues. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 845a97d..703f8cb 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ video.loop = false; ```TS // somewhere at top of your component or bootstrap file import { registerElement } from '@nativescript/angular'; -import { Video } from '@nstudio/nativescript-exoplayer'; +import { Video } from 'nativescript-videoplayer'; registerElement('VideoPlayer', () => Video); // documentation: https://docs.nativescript.org/angular/plugins/angular-third-party.html#simple-elements ```