From 1390f10428faa16b65f09fd5168558bab8ccad25 Mon Sep 17 00:00:00 2001 From: Pascal Welsch Date: Tue, 5 Nov 2024 00:33:58 +0100 Subject: [PATCH] Add app-store-connect export method --- lib/src/apple/export_options.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/src/apple/export_options.dart b/lib/src/apple/export_options.dart index b095113..69ef95b 100644 --- a/lib/src/apple/export_options.dart +++ b/lib/src/apple/export_options.dart @@ -3,7 +3,9 @@ /// Describes how Xcode should export the archive. enum ExportMethod { adHoc('ad-hoc'), + @Deprecated('Use appStoreConnect instead') appStore('app-store'), + appStoreConnect('app-store-connect'), validation('validation'), package('package'), enterprise('enterprise'),