Skip to content

Commit dd7d670

Browse files
RMET-3608 - Prepare to release version 5.0.0-OS12 (#26)
* chore: Raise Pod Version (#19) Raises Pod version to 8.15.0 References: https://outsystemsrd.atlassian.net/browse/RMET-3144 * RMET-3165 ::: Android ::: Update Gradle Dependencies (#20) * fix: Update Gradle Dependencies Update com.android.tools.build:gradle to 3.6.4 and com.google.gms:google-services to 4.3.14 References: https://outsystemsrd.atlassian.net/browse/RMET-3164 * chore: Add CHANGELOG entry References: https://outsystemsrd.atlassian.net/browse/RMET-3165 * RMET-3274 ::: iOS ::: Update 3rd Party that Adds Privacy Manifest (#22) * 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: Update deprecated call Replace the `FIRDynamicLinks`'s `dynamicLinkFromUniversalLinkURL:` method with a new implementation using `dynamicLinkFromUniversalLinkURL:completion:`. This to fix a deprecation warning. References: https://outsystemsrd.atlassian.net/browse/RMET-3274 * chore: Add CHANGELOG entry References: https://outsystemsrd.atlassian.net/browse/RMET-3274 * chore: Set Release Version (#23) Prepare release of `5.0.0-OS11`. Clean `CHANGELOG`. References: https://outsystemsrd.atlassian.net/browse/RMET-3341 * RMET-3608 FB Dynamic Links - Update dependency to Firebase Dynamic Links Android SDK (#25) * feat: feat: use Firebase Android BOM library to set the version of FB Dynamic Links 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 * fix: reference build.gradle file in plugin.xml so it is included in the build References: https://outsystemsrd.atlassian.net/browse/RMET-3608 * chore: remove unnecessary part of build.gradle file Context: This build.gradle file wasn't even being used before because it wasn't referenced in the plugin.xml. Now, we just want to use it to declare the dependencies for the Firebase Android SDK for Dynamic Links, so we can remove this part. References: https://outsystemsrd.atlassian.net/browse/RMET-3608 * fix: include postBuildExtras step in Gradle References: https://outsystemsrd.atlassian.net/browse/RMET-3608 * Revert "fix: include postBuildExtras step in Gradle" This reverts commit 1fd056b. * chore: update changelog References: https://outsystemsrd.atlassian.net/browse/RMET-3608 * chore(release): raise to version 5.0.0-OS12 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>
1 parent 09c2a98 commit dd7d670

File tree

4 files changed

+11
-15
lines changed

4 files changed

+11
-15
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

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

9+
## 5.0.0-OS12
10+
11+
### Features
12+
- Feat: Android | Update dependency to Firebase Dynamic Links Android library (https://outsystemsrd.atlassian.net/browse/RMET-3608).
13+
914
## 5.0.0-OS11
1015

1116
### Features

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-firebase-dynamiclinks",
3-
"version": "5.0.0-OS11",
3+
"version": "5.0.0-OS12",
44
"description": "Cordova plugin for Firebase Dynamic Links",
55
"cordova": {
66
"id": "cordova-plugin-firebase-dynamiclinks",

plugin.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
22
xmlns:android="http://schemas.android.com/apk/res/android"
33
id="cordova-plugin-firebase-dynamiclinks"
4-
version="5.0.0-OS11">
4+
version="5.0.0-OS12">
55

66
<name>FirebaseDynamicLinksPlugin</name>
77
<description>Cordova plugin for Firebase Dynamic Links</description>
@@ -28,8 +28,6 @@ xmlns:android="http://schemas.android.com/apk/res/android"
2828
<hook type="after_prepare" src="hooks/android/androidCopyPreferences.js" />
2929
<hook type="before_plugin_install" src="hooks/android/build_gradle_add_dependency.js" />
3030

31-
<preference name="ANDROID_FIREBASE_DYNAMICLINKS_VERSION" default="20.1.1"/>
32-
3331
<config-file parent="/*" target="res/xml/config.xml">
3432
<preference name="DOMAIN_URI_PREFIX" value="https://$APP_DOMAIN_NAME$APP_DOMAIN_PATH"/>
3533
<feature name="FirebaseDynamicLinks">
@@ -54,7 +52,7 @@ xmlns:android="http://schemas.android.com/apk/res/android"
5452

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

57-
<framework src="com.google.firebase:firebase-dynamic-links:$ANDROID_FIREBASE_DYNAMICLINKS_VERSION" />
55+
<framework src="src/android/build.gradle" custom="true" type="gradleReference" />
5856
</platform>
5957

6058
<platform name="ios">

src/android/build.gradle

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,7 @@ buildscript {
1010
}
1111
}
1212

13-
// use postBuildExtras to make sure the plugin is applied after
14-
// cdvPluginPostBuildExtras. Therefore if googleServices is added
15-
// to cdvPluginPostBuildExtras somewhere else, the plugin execution
16-
// will be skipped and project build will be successfull
17-
ext.postBuildExtras = {
18-
if (project.extensions.findByName('googleServices') == null) {
19-
// apply plugin: 'com.google.gms.google-services'
20-
// class must be used instead of id(string) to be able to apply plugin from non-root gradle file
21-
apply plugin: com.google.gms.googleservices.GoogleServicesPlugin
22-
}
13+
dependencies {
14+
implementation platform('com.google.firebase:firebase-bom:33.2.0')
15+
implementation("com.google.firebase:firebase-dynamic-links")
2316
}

0 commit comments

Comments
 (0)