Skip to content

Commit

Permalink
Merge pull request #47 from OutSystems/development
Browse files Browse the repository at this point in the history
RMET-3842 - Prepare to release version `1.1.0`
  • Loading branch information
alexgerardojacinto authored Nov 14, 2024
2 parents 11b161b + 7b44d78 commit 60ec41d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ 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.

## 1.1.0

### Android

#### Chores
- Remove unnecesary `kotlin-kapt` plugin from build.gradle file (https://outsystemsrd.atlassian.net/browse/RMET-3804).

### Features
- Handle Edge-to-Edge on all Android versions.

## 1.0.2
- Android: Fix issue where the custom tabs browser wasn't being closed when navigating back to the app
- Android: Fix race condition that caused the `BrowserFinished` event to not be fired in some instances with the system browser
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": "com.outsystems.plugins.inappbrowser",
"version": "1.0.2",
"version": "1.1.0",
"description": "InAppBrowser OutSystems Cordova Plugin",
"keywords": [
"ecosystem:cordova",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<plugin id="com.outsystems.plugins.inappbrowser" version="1.0.2" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="com.outsystems.plugins.inappbrowser" version="1.1.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>cordova-outsystems-inappbrowser</name>
<description>InAppBrowser OutSystems Cordova Plugin</description>
<author>OutSystems Inc</author>
Expand Down
4 changes: 2 additions & 2 deletions src/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,14 @@ buildscript {
}
}

apply plugin: 'kotlin-kapt'
allprojects {
repositories {
maven { url 'https://pkgs.dev.azure.com/OutSystemsRD/9e79bc5b-69b2-4476-9ca5-d67594972a52/_packaging/PublicArtifactRepository/maven/v1' }
}
}

dependencies{
implementation("com.github.outsystems:osinappbrowser-android:1.0.2@aar")
implementation("com.github.outsystems:osinappbrowser-android:1.1.0@aar")

implementation("androidx.browser:browser:1.8.0")
implementation("com.google.android.gms:play-services-auth:21.2.0")
Expand All @@ -31,6 +30,7 @@ dependencies{

// appcompact
implementation "androidx.appcompat:appcompat:1.7.0"
implementation "androidx.activity:activity-ktx:1.9.3"

// constraint layout
implementation "androidx.constraintlayout:constraintlayout:2.2.0-alpha13"
Expand Down

0 comments on commit 60ec41d

Please sign in to comment.