From 569f9847c4db489dfe9af1054bb81902a1c89765 Mon Sep 17 00:00:00 2001 From: Omar Masad <3076722+Massad@users.noreply.github.com> Date: Wed, 15 Nov 2023 12:22:07 +0400 Subject: [PATCH] Adding bridge name and version --- package/core/ios/Classes/TestAppio.swift | 2 +- package/core/ios/testappio.podspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package/core/ios/Classes/TestAppio.swift b/package/core/ios/Classes/TestAppio.swift index cb6faa0..32ae7fe 100644 --- a/package/core/ios/Classes/TestAppio.swift +++ b/package/core/ios/Classes/TestAppio.swift @@ -42,7 +42,7 @@ public class TestAppioPlugin: NSObject, FlutterPlugin { let appToken = args["appToken"], let environmentString = args["environment"], let environment = TestAppio.Environmnent(rawValue: environmentString) { - TestAppio.setup(configuration: .init(appToken: appToken, environment: environment)) + TestAppio.setup(configuration: .init(appToken: appToken, environment: environment, sdk: SDK(name: "Flutter", version: "1.0.1"))) result(nil) } else { result(FlutterError(code: "InvalidArguments", message: "Invalid arguments for 'setup'", details: nil)) diff --git a/package/core/ios/testappio.podspec b/package/core/ios/testappio.podspec index 1e5220f..8ab1aad 100644 --- a/package/core/ios/testappio.podspec +++ b/package/core/ios/testappio.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'testappio' - s.version = '1.0.0' + s.version = '1.0.1' s.summary = 'TestApp.io SDK with your Flutter app' s.description = <<-DESC TestApp.io SDK for Flutter allows seamless integration of TestApp.io's comprehensive feedback and performance monitoring tools into Flutter applications. It enables the capture of insightful feedback and crucial events with minimal effort to enhance app quality and user experience.