diff --git a/.github/latest.md b/.github/latest.md index 748f84b..97afc61 100644 --- a/.github/latest.md +++ b/.github/latest.md @@ -2,5 +2,4 @@ This release adds support for handling account linking and asset unlock events c ## Changelog -- scripting define symbol `RPM_DISABLE_WEBVIEW_PERMISSIONS` can now be used to disable Android permissions override @harrisonhough in [#26](https://github.com/readyplayerme/rpm-unity-sdk-webview/pull/26) - +- fixed a flaw in the logic for disabling android build processor diff --git a/CHANGELOG.md b/CHANGELOG.md index db08e77..c3c2d3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,12 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [2.1.0] - 2024.04.01 +## [2.1.1] - 2024.09.01 + +### Fixed +- fixed a flaw in the logic for disabling android build processor + +## [2.1.0] - 2024.08.01 ### Added - scripting define symbol `RPM_DISABLE_WEBVIEW_PERMISSIONS` can now be used to disable Android permissions override @harrisonhough in [#26](https://github.com/readyplayerme/rpm-unity-sdk-webview/pull/26) diff --git a/Editor/AndroidBuildProcessor.cs b/Editor/AndroidBuildProcessor.cs index 85f635c..a9e06e7 100644 --- a/Editor/AndroidBuildProcessor.cs +++ b/Editor/AndroidBuildProcessor.cs @@ -1,4 +1,4 @@ -#if UNITY_EDITOR && !RPM_DISABLE_WEBVIEW_PERMISSIONS +#if !RPM_DISABLE_WEBVIEW_PERMISSIONS using System.IO; using System.Xml; using UnityEditor; diff --git a/package.json b/package.json index 83fad81..a482cb3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.readyplayerme.webview", - "version": "2.1.0", + "version": "2.1.1", "displayName": "Ready Player Me WebView", "description": "Ready Player Me WebView helps you display an in-engine browser that helps you load RPM website where you can create avatars and receive avatar URL at the end of the process.\nWebView is mobile only and works in Android and IOS builds.", "category": "tool",