Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RMET-3608 - Prepare to release version 3.0.0-OS11 #32

Merged
merged 7 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading