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.