fastlane-plugin-flutter_build 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f11e64abfdb29af862aef1aa3414555cbbaec6718dc261077d20d497caa47bd4
|
4
|
+
data.tar.gz: d2812c16aa0ce54f31d68565408b2fb529e2a7cc1655855241920aeb8106d6ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d52ab44d3e3c6ae7c5b28c31216a7ccb8b074a31264819671e47233b4ccf64358e519f163722bc51d4e40f141c93258fe038b431d411009781386e50a4002e35
|
7
|
+
data.tar.gz: 618e779557662fa88cb809fa3731b85fc90331c7099ef9c849c1d130ff16b834d26988e55bed5a51692821b5ea5581815db564cbb3749ac2803e88693e46d081
|
@@ -2,11 +2,10 @@ module Fastlane
|
|
2
2
|
module Actions
|
3
3
|
class FlutterBuildAction < Action
|
4
4
|
def self.run(params)
|
5
|
-
|
6
|
-
|
7
|
-
if(root_folder.include?("ios")) then
|
5
|
+
current_folder = Dir.pwd
|
6
|
+
if(current_folder.include?("ios")) then
|
8
7
|
system("cd .. && flutter build ios --release --no-codesign")
|
9
|
-
elsif(
|
8
|
+
elsif(current_folder.include?("android")) then
|
10
9
|
system("cd .. && flutter build apk --release")
|
11
10
|
end
|
12
11
|
end
|