Skip to content

Commit

Permalink
Adding bridge name and version
Browse files Browse the repository at this point in the history
  • Loading branch information
Massad committed Nov 15, 2023
1 parent 7c10869 commit 569f984
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package/core/ios/Classes/TestAppio.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion package/core/ios/testappio.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 569f984

Please sign in to comment.