Skip to content

Commit

Permalink
RMET-1813 :: Android 13 (#14)
Browse files Browse the repository at this point in the history
* fix: removed host and path from intent-filter for AppLinks

* chore: bump versions and updated changelog
  • Loading branch information
nflsilva committed Oct 28, 2022
1 parent b3f1f2c commit 469dcb7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ The changes documented here do not include those from the original repository.

## [Unreleased]

## 2022-10-28
- Android 13 changes [RMET-813](https://outsystemsrd.atlassian.net/browse/RMET-1813)

## [5.0.0-OS7]

## 2022-07-14
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-dynamiclinks",
"version": "5.0.0-OS7",
"version": "5.0.0-OS8",
"description": "Cordova plugin for Firebase Dynamic Links",
"cordova": {
"id": "cordova-plugin-firebase-dynamiclinks",
Expand Down
6 changes: 3 additions & 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-dynamiclinks"
version="5.0.0-OS7">
version="5.0.0-OS8">

<name>FirebaseDynamicLinksPlugin</name>
<description>Cordova plugin for Firebase Dynamic Links</description>
Expand Down Expand Up @@ -42,8 +42,8 @@ xmlns:android="http://schemas.android.com/apk/res/android"
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:host="$APP_DOMAIN_NAME" android:pathPrefix="$APP_DOMAIN_PATH" android:scheme="http"/>
<data android:host="$APP_DOMAIN_NAME" android:pathPrefix="$APP_DOMAIN_PATH" android:scheme="https"/>
<data android:scheme="http"/>
<data android:scheme="https"/>
</intent-filter>
</config-file>

Expand Down

0 comments on commit 469dcb7

Please sign in to comment.