Skip to content

Commit fe2c77b

Browse files
authored
Ios Fastlane integration (#65)
1 parent c268ab7 commit fe2c77b

File tree

19 files changed

+1039
-11
lines changed

19 files changed

+1039
-11
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
*.g.dart linguist-generated=true
33
*.gr.dart linguist-generated=true
44
pubspec.lock linguist-generated=true
5+
Gemfile.lock linguist-generated=true

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ app.*.map.json
4747

4848
# Environment files
4949
*.env
50+
*.env.default
5051

5152
# Fvm
5253
.fvm/flutter_sdk
@@ -56,3 +57,4 @@ app.*.map.json
5657
**/fastlane/Preview.html
5758
**/fastlane/screenshots
5859
**/fastlane/test_output
60+

Gemfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source "https://rubygems.org"
2+
3+
gem "fastlane"
4+
5+
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
6+
eval_gemfile(plugins_path) if File.exist?(plugins_path)

Gemfile.lock

+220
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/Gemfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source "https://rubygems.org"
2+
3+
gem "fastlane"
4+
gem 'fastlane-plugin-flutter_version', '~> 1.0', '>= 1.0.1'
5+
6+
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
7+
eval_gemfile(plugins_path) if File.exist?(plugins_path)

0 commit comments

Comments
 (0)