diff --git a/Gemfile b/Gemfile index 0aead47f..c75bfcd9 100644 --- a/Gemfile +++ b/Gemfile @@ -8,5 +8,8 @@ install_if -> { RUBY_PLATFORM =~ /darwin/ } do gem 'cocoapods', '~> 1.14', '>= 1.14.3' end -plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') +plugins_path = File.join(File.dirname(__FILE__), 'ios', 'fastlane', 'Pluginfile') +eval_gemfile(plugins_path) if File.exist?(plugins_path) + +plugins_path = File.join(File.dirname(__FILE__), 'android', 'fastlane', 'Pluginfile') eval_gemfile(plugins_path) if File.exist?(plugins_path) diff --git a/Gemfile.lock b/Gemfile.lock index 7f16bf31..822a8db8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -166,6 +166,9 @@ GEM xcodeproj (>= 1.13.0, < 2.0.0) xcpretty (~> 0.3.0) xcpretty-travis-formatter (>= 0.0.3, < 2.0.0) + fastlane-plugin-sentry (1.22.1) + os (~> 1.1, >= 1.1.4) + fastlane-plugin-versioning_android (0.1.1) ffi (1.16.3) fourflusher (2.3.1) fuzzy_match (2.0.4) @@ -286,6 +289,8 @@ PLATFORMS DEPENDENCIES cocoapods (~> 1.14, >= 1.14.3) fastlane + fastlane-plugin-sentry + fastlane-plugin-versioning_android RUBY VERSION ruby 3.1.4p223 diff --git a/ios/fastlane/README.md b/ios/fastlane/README.md index f4490007..471421e5 100644 --- a/ios/fastlane/README.md +++ b/ios/fastlane/README.md @@ -1,4 +1,5 @@ -## fastlane documentation +fastlane documentation +---- # Installation @@ -20,13 +21,17 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do [bundle exec] fastlane ios release ``` + + ### ios verify ```sh [bundle exec] fastlane ios verify ``` ---- + + +---- This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.