Skip to content

Commit b60a806

Browse files
RMET-3887 :: 1.2.0 ::merge development into main
2 parents 44b934a + 7203adf commit b60a806

7 files changed

Lines changed: 18 additions & 13 deletions

File tree

.github/workflows/github_actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: GitHub Actions
1+
name: Unit Tests
22

33
on:
44
workflow_dispatch:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 1.2.0
8+
9+
- Bump Kotlin and Gradle versions (https://outsystemsrd.atlassian.net/browse/RMET-3887)
10+
711
## 1.1.0
812

913
### Features

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ steps:
2222
organization: 'outsystemsrd'
2323
scannerMode: 'CLI'
2424
configMode: 'file'
25-
- task: Gradle@2
25+
- task: Gradle@3
2626
displayName: Build Project
2727
inputs:
2828
workingDirectory: ''

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = "1.9.21"
2+
ext.kotlin_version = "1.9.24"
33
ext.jacocoVersion = '0.8.7'
44
repositories {
55
google()
@@ -12,7 +12,7 @@ buildscript {
1212
if (System.getenv("SHOULD_PUBLISH") == "true") {
1313
classpath("io.github.gradle-nexus:publish-plugin:1.1.0")
1414
}
15-
classpath 'com.android.tools.build:gradle:8.2.2'
15+
classpath 'com.android.tools.build:gradle:8.7.3'
1616
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1717
classpath "org.jacoco:org.jacoco.core:$jacocoVersion"
1818
}
@@ -41,11 +41,11 @@ apply plugin: "jacoco"
4141

4242
android {
4343
namespace "com.outsystems.plugins.inappbrowser.osinappbrowserlib"
44-
compileSdk 34
44+
compileSdk 35
4545

4646
defaultConfig {
4747
minSdk 26
48-
targetSdk 34
48+
targetSdk 35
4949
versionCode 1
5050
versionName "1.0"
5151

@@ -82,7 +82,7 @@ android {
8282

8383
def fileFilter = ['**/BuildConfig.*', '**/Manifest*.*']
8484
def debugTree = fileTree(dir: "${buildDir}/tmp/kotlin-classes/debug", excludes: fileFilter)
85-
def mainSrc = "${project.projectDir}/src/main/kotlin"
85+
def mainSrc = "${project.projectDir}/src/main/java"
8686

8787
sourceDirectories.setFrom(files([mainSrc]))
8888
classDirectories.setFrom(files([debugTree]))
@@ -117,12 +117,12 @@ repositories {
117117
}
118118

119119
dependencies {
120-
implementation 'androidx.core:core-ktx:1.13.1'
120+
implementation 'androidx.core:core-ktx:1.15.0'
121121
implementation 'androidx.browser:browser:1.8.0'
122-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.3'
122+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.7'
123123
implementation 'androidx.appcompat:appcompat:1.7.0'
124-
implementation 'androidx.webkit:webkit:1.11.0'
125-
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
124+
implementation 'androidx.webkit:webkit:1.12.1'
125+
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'
126126
implementation 'androidx.activity:activity-ktx:1.9.3'
127127

128128
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4'

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@
1313
#Fri Apr 08 09:41:39 WEST 2022
1414
android.useAndroidX=true
1515
android.enableJetifier=true
16+
org.gradle.jvmargs=-Xmx4096m
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Wed May 29 18:08:54 CDT 2024
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-all.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>com.github.outsystems</groupId>
88
<artifactId>osinappbrowser-android</artifactId>
9-
<version>1.1.0</version>
9+
<version>1.2.0</version>
1010
</project>

0 commit comments

Comments
 (0)