From ed7dadb56cb0e8cc2a90be1267ce13d75a77d062 Mon Sep 17 00:00:00 2001 From: Bart Selwesiuk Date: Wed, 5 Mar 2025 11:34:55 +0100 Subject: [PATCH] fix: add namespace to Android build.gradle for Kotlin 2.1.0+ compatibility --- CHANGELOG.md | 6 +++++- android/build.gradle | 1 + pubspec.yaml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39f30de..21b9341 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -96,4 +96,8 @@ is no auto migration of data. Instead we have exposed a method through WalletMan ### 0.7.2 -- Adds `refreshEndToEndEncryptionAvailability` that refreshes end-to-end encryption availability on Android. This should be used before attempting to save the wallet to cloud on Android. \ No newline at end of file +- Adds `refreshEndToEndEncryptionAvailability` that refreshes end-to-end encryption availability on Android. This should be used before attempting to save the wallet to cloud on Android. + +### 0.7.3 + +- Adds namespace to Android gradle for Kotlin 2.1.0+ compatibility. \ No newline at end of file diff --git a/android/build.gradle b/android/build.gradle index 43ec4cf..db94f61 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -30,6 +30,7 @@ apply plugin: 'kotlin-android' android { compileSdkVersion 31 + namespace 'com.rly_network.rly_network_flutter_sdk' compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 diff --git a/pubspec.yaml b/pubspec.yaml index ed21c2e..c68e7f5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: rly_network_flutter_sdk description: Rally Protocol Flutter SDK. Secure web3 key management, transaction signing, and gassless transactions. -version: 0.7.2 +version: 0.7.3 homepage: https://www.rallyprotocol.com repository: https://github.com/rally-dfs/flutter-sdk