From 504df27822b5161f8656689fd3ec3a27434aadcd Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Tue, 6 Oct 2020 09:11:26 +0200 Subject: [PATCH] add readonly to match_me --- example/ios/fastlane/Fastfile | 6 ++++-- example/pubspec.yaml | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/example/ios/fastlane/Fastfile b/example/ios/fastlane/Fastfile index 8e0393af..8bc6fb4e 100644 --- a/example/ios/fastlane/Fastfile +++ b/example/ios/fastlane/Fastfile @@ -14,7 +14,8 @@ lane :match_me do app_identifier: [ "io.getstream.flutter", "io.getstream.flutter.Notifications" - ] + ], + readonly: true ) match( @@ -22,7 +23,8 @@ lane :match_me do app_identifier: [ "io.getstream.flutter", "io.getstream.flutter.Notifications" - ] + ], + readonly: true ) end diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 5b561f77..88635d95 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -1,7 +1,7 @@ name: example description: A new Flutter project. -version: 1.0.22+24 +version: 1.0.23+25 environment: sdk: ">=2.2.2 <3.0.0"