fastlane-plugin-flutter_build 0.1.2 → 0.1.3
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: c1f60af43a2ad61366ab258d5f7c79abe2dc85b87117ae8157b5c9520e2cb11b
|
4
|
+
data.tar.gz: b156070491ec1fb89997a1257f821a980ff2a7064f876a4f1126b3abfbc85f1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43ceba2a71cab5688a440acdb8f7c2419d37c0d6ca3690f3c490dc2b3dc10ca1ceb7b7bb8d0742bdb081dddf9ead8269cdf7bdf3c4511616886ff876e2271a77
|
7
|
+
data.tar.gz: 5c557351aba70e34eaad3288117216d9fae13fd0cdf35e174f9d9a1099c4744cc0439b85fc18f0e0b0d9aa8d7c88e62cb1d44da72350bac8ed963635c3600fe0
|
@@ -3,9 +3,10 @@ module Fastlane
|
|
3
3
|
class FlutterBuildAction < Action
|
4
4
|
def self.run(params)
|
5
5
|
root_folder = __dir__
|
6
|
-
|
6
|
+
print(root_folder)
|
7
|
+
if(root_folder.include?("ios") then
|
7
8
|
system("cd .. && flutter build ios --release --no-codesign")
|
8
|
-
elsif(root_folder
|
9
|
+
elsif(root_folder.include?("android") then
|
9
10
|
system("cd .. && flutter build apk --release")
|
10
11
|
end
|
11
12
|
end
|