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-3842 - Prepare to release version 1.1.0 #47

Merged
merged 12 commits into from
Nov 14, 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
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