Skip to content

Commit

Permalink
Merge pull request #13 from Penbase/dev
Browse files Browse the repository at this point in the history
go for 7.9.0 - android 12
  • Loading branch information
oranedir authored Feb 24, 2022
2 parents de6a112 + 71428da commit 8ab5911
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Version 7

### Version 7.9.0 (18/02/2022)
Add android:exported property on activity/service in plugin.xml
Update ANDROID_FIREBASE_BOM_VERSION 26 -> 29 in plugin.xml

### Version 7.8.5 (25/08/2020)
Replace some missing references from old plugin id "@penbase/cordova-[...]" to new id "penbase-cordova-[...]"
Create script "make_all_npm_install.js", executed before building for adding for running `npm install` command into all subfolder
Expand Down
7 changes: 4 additions & 3 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,18 @@
<platform name="android">
<preference name="ANDROID_DEFAULT_NOTIFICATION_ICON" default="@mipmap/ic_launcher"/>
<preference name="ANDROID_FCM_VERSION" default="21.0.0"/>
<preference name="ANDROID_FIREBASE_BOM_VERSION" default="26.0.0"/>
<preference name="ANDROID_FIREBASE_BOM_VERSION" default="29.0.4"/>
<preference name="ANDROID_GOOGLE_SERVICES_VERSION" default="4.3.4"/>
<preference name="ANDROID_GRADLE_TOOLS_VERSION" default="4.1.0"/>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:name="com.gae.scaffolder.plugin.FCMPluginActivity" android:launchMode="singleTop">

<activity android:name="com.gae.scaffolder.plugin.FCMPluginActivity" android:exported="true" android:launchMode="singleTop">
<intent-filter>
<action android:name="FCM_PLUGIN_ACTIVITY"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<service android:name="com.gae.scaffolder.plugin.MyFirebaseMessagingService" android:stopWithTask="false">
<service android:name="com.gae.scaffolder.plugin.MyFirebaseMessagingService" android:exported="true" android:stopWithTask="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
Expand Down

0 comments on commit 8ab5911

Please sign in to comment.