From 26ea8f25669b654b86596563d8efdfe1e824a31a Mon Sep 17 00:00:00 2001 From: Christian Rogobete Date: Sat, 1 Oct 2022 15:50:36 +0200 Subject: [PATCH] update dependency packages --- CHANGELOG.md | 5 +++++ README.md | 2 +- example/android/app/build.gradle | 6 +++--- .../android/app/src/main/AndroidManifest.xml | 3 ++- example/android/build.gradle | 8 ++++---- example/android/gradle.properties | 2 +- .../gradle/wrapper/gradle-wrapper.properties | 2 +- example/ios/Flutter/AppFrameworkInfo.plist | 2 +- example/ios/Runner.xcodeproj/project.pbxproj | 10 +++++----- .../contents.xcworkspacedata | 2 +- .../xcshareddata/xcschemes/Runner.xcscheme | 2 +- example/ios/Runner/Info.plist | 2 ++ lib/src/sep/0011/txrep.dart | 19 +++++++++++------- lib/src/stellar_sdk.dart | 2 +- pubspec.yaml | 20 +++++++++---------- test/query_test.dart | 4 ++-- 16 files changed, 52 insertions(+), 39 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8128bb4..800c299 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [1.3.7] - 01.Oct.2022. +- update dependency packages to newest versions +- update sdk to work with the newest packages +- fix example app build + ## [1.3.6] - 30.Sep.2022. - update sep-005 - add support for malay language - update sep-001 - add new fields diff --git a/README.md b/README.md index 2a53b7b..bea5b54 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ The Soneso open source Stellar SDK for Flutter is build with Dart and provides A 1. Add the dependency to your pubspec.yaml file: ``` dependencies: - stellar_flutter_sdk: ^1.3.6 + stellar_flutter_sdk: ^1.3.7 ``` 2. Install it (command line or IDE): ``` diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 320be22..5c942a9 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -8,7 +8,7 @@ if (localPropertiesFile.exists()) { def flutterRoot = localProperties.getProperty('flutter.sdk') if (flutterRoot == null) { - throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") + throw new FileNotFoundException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") } def flutterVersionCode = localProperties.getProperty('flutter.versionCode') @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { - compileSdkVersion 28 + compileSdkVersion 31 sourceSets { main.java.srcDirs += 'src/main/kotlin' @@ -40,7 +40,7 @@ android { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "com.example.example" minSdkVersion 16 - targetSdkVersion 28 + targetSdkVersion 31 versionCode flutterVersionCode.toInteger() versionName flutterVersionName } diff --git a/example/android/app/src/main/AndroidManifest.xml b/example/android/app/src/main/AndroidManifest.xml index 55ca830..1e4a566 100644 --- a/example/android/app/src/main/AndroidManifest.xml +++ b/example/android/app/src/main/AndroidManifest.xml @@ -6,7 +6,7 @@ additional functionality it is fine to subclass or reimplement FlutterApplication and put your custom class here. -->