Skip to content

Commit a1e0c9a

Browse files
fix(android): remove unnecessary kotlin-kapt, fixing Capacitor builds (#40)
* fix: update build action to add Kotlin Gradle Plugin to build.gradle Context: There are plans to remove this from coming by default in the template, so the plugin should add it if it needs it. * chore(release): raise to version 2.6.8-OS24 * fix(android): remove kotlin-kapt from build.gradle * chore: update changelog entry
1 parent 1631a4f commit a1e0c9a

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
2.6.8-OS24 - 2025-09-30
5+
------------------
6+
- Fix: [android] Removes the `kotlin-kapt` plugin that was being added, fixing builds for Capacitor apps (https://outsystemsrd.atlassian.net/browse/RMET-4515)
7+
48
2.6.8-OS23 - 2025-07-08
59
------------------
610
- Fix: [android] Updates hook to avoid duplicates in `strings.xml` (https://outsystemsrd.atlassian.net/browse/RMET-4025).

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-secure-storage",
3-
"version": "2.6.8-OS23",
3+
"version": "2.6.8-OS24",
44
"description": "Secure storage plugin for iOS & Android",
55
"author": "Yiorgis Gozadinos <ggozad@crypho.com>",
66
"contributors": [

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
id="cordova-plugin-secure-storage"
5-
version="2.6.8-OS23">
5+
version="2.6.8-OS24">
66

77
<name>SecureStorage</name>
88
<author>Crypho AS</author>

src/android/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ repositories {
1717
}
1818
}
1919

20-
apply plugin: 'kotlin-kapt'
21-
2220
dependencies {
2321
implementation("com.github.outsystems:oscore-android:1.1.0@aar")
2422
implementation("com.github.outsystems:oscordova-android:1.1.0@aar")

0 commit comments

Comments
 (0)