Skip to content

Commit

Permalink
RMET-3608 - Prepare to release version 3.0.0-OS11 (#32)
Browse files Browse the repository at this point in the history
* chore: Raise Pod Version (#26)

Raises Pod version to 8.15.0

References: https://outsystemsrd.atlassian.net/browse/RMET-3143

* RMET-3274 ::: iOS ::: Update 3rd Party that Adds Privacy Manifest (#28)

* chore: Update iOS SDK version

Update iOS' 3rd party SDK version to `10.23.0`.
Enable the `use_frameworks` flag for CocoaPods.
Fix import errors.

References: https://outsystemsrd.atlassian.net/browse/RMET-3274

* chore: Add CHANGELOG entry

References: https://outsystemsrd.atlassian.net/browse/RMET-3274

* chore: Set Release Version (#29)

Prepare release of `3.0.0-OS10`.
Clean `CHANGELOG`.

References: https://outsystemsrd.atlassian.net/browse/RMET-3341

* RMET-3608 FB Crashlytics - Update dependency to Firebase Crashlytics Android SDK (#31)

* feat: feat: use Firebase Android BOM library to set the version of FB Crashlytics

Context: According to the documentation, this is the recommended way of controlling Firebase library versions. This way, using the Firebase Android BOM, an app with multiple Firebase Android libraries will always use compatible versions of these libraries.

References: https://outsystemsrd.atlassian.net/browse/RMET-3608

* fix: declare Firebase dependencies in build.gradle file

References: https://outsystemsrd.atlassian.net/browse/RMET-3608

* refactor: remove unnecessary Cordova preference

References: https://outsystemsrd.atlassian.net/browse/RMET-3608

* chore: update changelog

References: https://outsystemsrd.atlassian.net/browse/RMET-3608

* chore(release): raise to version 3.0.0-OS11

References: https://outsystemsrd.atlassian.net/browse/RMET-3608

---------

Co-authored-by: Ricardo Silva <97543217+OS-ricardomoreirasilva@users.noreply.github.com>
Co-authored-by: OS-ricardomoreirasilva <ricardo.moreira.silva@outsystems.com>
  • Loading branch information
3 people authored Sep 17, 2024
1 parent 49b38b7 commit ace3b3c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

The changes documented here do not include those from the original repository.

## 3.0.0-OS11

- Feat: Android | Update dependency to Firebase Crashlytics Android library (https://outsystemsrd.atlassian.net/browse/RMET-3608).

## 3.0.0-OS10

- Chore: Update `FirebaseCrashlytics` iOS pod to version `10.23.0`. This includes the Privacy Manifest (https://outsystemsrd.atlassian.net/browse/RMET-3274).
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-firebase-crash",
"version": "3.0.0-OS10",
"version": "3.0.0-OS11",
"description": "Cordova plugin for Firebase Crashlytics",
"cordova": {
"id": "cordova-plugin-firebase-crash",
Expand Down
4 changes: 1 addition & 3 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-firebase-crash"
version="3.0.0-OS10">
version="3.0.0-OS11">

<name>cordova-plugin-firebase-crash</name>
<description>Cordova plugin for Firebase Crashlytics</description>
Expand Down Expand Up @@ -60,7 +60,6 @@ xmlns:android="http://schemas.android.com/apk/res/android"
</platform>

<platform name="android">
<preference name="ANDROID_FIREBASE_CRASHLYTICS_VERSION" default="18.2.13"/>

<hook type="before_plugin_install" src="hooks/android/build_gradle_add_dependency.js" />

Expand All @@ -83,7 +82,6 @@ xmlns:android="http://schemas.android.com/apk/res/android"

<dependency id="cordova-support-android-plugin" version="~1.0.0"/>

<framework src="com.google.firebase:firebase-crashlytics:$ANDROID_FIREBASE_CRASHLYTICS_VERSION" />
<framework src="src/android/build.gradle" custom="true" type="gradleReference" />
</platform>

Expand Down
5 changes: 5 additions & 0 deletions src/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ android {
}
}

dependencies {
implementation platform('com.google.firebase:firebase-bom:33.2.0')
implementation("com.google.firebase:firebase-crashlytics")
}

// use postBuildExtras to make sure the plugin is applied after
// cdvPluginPostBuildExtras. Therefore if googleServices is added
// to cdvPluginPostBuildExtras somewhere else, the plugin execution
Expand Down

0 comments on commit ace3b3c

Please sign in to comment.