diff --git a/CHANGELOG.md b/CHANGELOG.md index 90218cf54..05d5ecfc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.1.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [3.4.2] - 23-12-22 + +### Fixed + +- Fixed an issue in the Expo plugin for Android where it would fail to execute when no properties are passed. + ## [3.4.1] - 23-12-21 ### Changed diff --git a/app.plugin.js b/app.plugin.js index fb79ada95..0293ac831 100644 --- a/app.plugin.js +++ b/app.plugin.js @@ -37,7 +37,7 @@ const applyAndroidExtensions = (config, extensions) => { const withAndroidTHEOplayer = (config, props) => { // Apply Android extensions - const {extensions} = props; + const {extensions} = props | {}; config = applyAndroidExtensions(config, extensions); // Add the localMaven repo to the project's repositories diff --git a/package-lock.json b/package-lock.json index fd441c911..b46655d9c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "react-native-theoplayer", - "version": "3.4.1", + "version": "3.4.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "react-native-theoplayer", - "version": "3.4.1", + "version": "3.4.2", "license": "SEE LICENSE AT https://www.theoplayer.com/terms", "dependencies": { "buffer": "^6.0.3" diff --git a/package.json b/package.json index 62cc2758c..13ca67824 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-theoplayer", - "version": "3.4.1", + "version": "3.4.2", "description": "A THEOplayer video component for react-native.", "main": "lib/commonjs/index", "module": "lib/module/index",