From 72f384c215a473a7292a7339f65007c48acd95d4 Mon Sep 17 00:00:00 2001 From: Mo Date: Tue, 3 Jan 2023 17:26:29 -0600 Subject: [PATCH] ci: remove mobile dev --- packages/mobile/fastlane/Appfile | 6 ------ packages/mobile/fastlane/Matchfile | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/packages/mobile/fastlane/Appfile b/packages/mobile/fastlane/Appfile index 28ba9c81a..6872fe9be 100755 --- a/packages/mobile/fastlane/Appfile +++ b/packages/mobile/fastlane/Appfile @@ -1,16 +1,10 @@ for_platform :ios do - for_lane :dev do - app_identifier "com.standardnotes.standardnotes.dev" - end for_lane :prod do app_identifier "com.standardnotes.standardnotes" end end for_platform :android do - for_lane :dev do - package_name 'com.standardnotes.dev' - end for_lane :prod do package_name 'com.standardnotes' end diff --git a/packages/mobile/fastlane/Matchfile b/packages/mobile/fastlane/Matchfile index 9e1784605..63c835fc6 100644 --- a/packages/mobile/fastlane/Matchfile +++ b/packages/mobile/fastlane/Matchfile @@ -2,7 +2,7 @@ storage_mode("git") # type("development") # The default type, can be: appstore, adhoc, enterprise or development -app_identifier(["com.standardnotes.standardnotes", "com.standardnotes.standardnotes.dev"]) +app_identifier(["com.standardnotes.standardnotes"]) # For all available options run `fastlane match --help` # Remove the # in the beginning of the line to enable the other options