Skip to content

Commit 81608d3

Browse files
committed
Merge branch 'release/5.1.0'
2 parents 861c786 + c332c8d commit 81608d3

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

77
#### [Unreleased](https://github.com/bsorrentino/cordova-broadcaster/compare/v5.0.0...HEAD)
88

9+
- update changelog [`e8629f6`](https://github.com/bsorrentino/cordova-broadcaster/commit/e8629f61d87479e0d39f9f5a6f69830643a6ee64)
10+
- fix(plugin.xml): add androidx.localbroadcastmanager dependency [`3ccd8db`](https://github.com/bsorrentino/cordova-broadcaster/commit/3ccd8db9d6a7574cd4d71aece4c598e4c3f0ce21)
11+
- build: add test script [`046f450`](https://github.com/bsorrentino/cordova-broadcaster/commit/046f45065c0bf1b0671154b46a0c422b2ef49301)
12+
913
### [v5.0.0](https://github.com/bsorrentino/cordova-broadcaster/compare/v4.3.1...v5.0.0)
1014

1115
> 14 July 2023

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-broadcaster",
3-
"version": "5.0.0",
3+
"version": "5.1.0",
44
"description": "Allow send message from Javascript to Native",
55
"cordova": {
66
"id": "cordova-plugin-broadcaster",
@@ -26,7 +26,7 @@
2626
"2.3.0": {
2727
"cordova-android": ">4.0.0"
2828
},
29-
"5.0.0": {
29+
"5.1.0": {
3030
"cordova-android": ">9.0.0"
3131
}
3232
}

plugin.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<plugin id="cordova-plugin-broadcaster"
3-
version="4.3.2"
3+
version="5.1.0"
44
xmlns="http://apache.org/cordova/ns/plugins/1.0"
55
xmlns:android="http://schemas.android.com/apk/res/android">
66
<engines>
@@ -32,7 +32,8 @@
3232
</config-file>
3333
<config-file parent="/*" target="AndroidManifest.xml" />
3434
<source-file src="src/android/CDVBroadcaster.java" target-dir="src/org/bsc/cordova" />
35-
<framework src="com.android.support:support-v4:26+" />
35+
<!--framework src="com.android.support:support-v4:26+" /-->
36+
<framework src="androidx.localbroadcastmanager:localbroadcastmanager:1.1.0" />
3637
</platform>
3738
<platform name="ios">
3839
<config-file parent="/*" target="config.xml">

0 commit comments

Comments
 (0)