From e7a82b167ae299f9c05fc11cf88244d656cf6022 Mon Sep 17 00:00:00 2001 From: J-Jamet Date: Tue, 19 Apr 2022 18:18:15 +0200 Subject: [PATCH] fix Fastfile --- fastlane/Fastfile | 8 -------- fastlane/README.md | 8 -------- 2 files changed, 16 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index e202a871e..79cce6019 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -13,13 +13,6 @@ default_platform(:android) platform :android do - desc "Clean repo" - lane :clean do - gradle( - task: 'clean' - ) - end - desc "Runs all the tests" lane :tests do gradle(task: "test") @@ -57,7 +50,6 @@ platform :android do gradle( task: 'clean' ) - reset_git_repo end end diff --git a/fastlane/README.md b/fastlane/README.md index 4c10119df..fc18d75e5 100644 --- a/fastlane/README.md +++ b/fastlane/README.md @@ -15,14 +15,6 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do ## Android -### android clean - -```sh -[bundle exec] fastlane android clean -``` - -Clean repo - ### android tests ```sh