Skip to content

Commit 698cb7f

Browse files
committed
Fix SDK version
1 parent 4f4cedb commit 698cb7f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

fastlane/Fastfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
def update_dart(new_version)
22
path = Dir['../lib/**/qonversion_internal.dart'].first
3-
regex = /static const String _sdkVersion = ".*";/
4-
result_value = "static const String _sdkVersion = \"#{new_version}\";"
3+
regex = /static const String sdkVersion = ".*";/
4+
result_value = "static const String sdkVersion = \"#{new_version}\";"
55

66
update_file(path, regex, result_value)
77
end

lib/src/internal/qonversion_internal.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import 'package:qonversion_flutter/src/internal/utils/string.dart';
1111
import 'constants.dart';
1212

1313
class QonversionInternal implements Qonversion {
14-
static const String sdkVersion = "10.0.2";
14+
static const String sdkVersion = "11.0.0";
1515

1616
final MethodChannel _channel = MethodChannel('qonversion_plugin');
1717

0 commit comments

Comments
 (0)