fastlane-plugin-zhuixi_build_app 0.1.6 → 0.1.7
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: e35b5a597c94cdfdb7ccf8ca3666dc93ac5cc806e601ffd95a6d000135739356
|
4
|
+
data.tar.gz: cb4f08d916fe9145ef62e50a4201f3bf3d0ca0e396411be47cf8fa71ca2edc78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5316538c8adac306b0b6073e1b1f3b2ac5d7bbdd59f1fbddfe5253ce39d369d394978e4540d104f9fe70e05fb5e5dc01034810848a318ceb7289c52cb744bea
|
7
|
+
data.tar.gz: 05c9bd2c5c6b69c240ad141e08833fa14117f0f4a6a952b24db66d86d80434aaa8d05f387cb206b03e40ce494b6357e6a0bbc08d4917488332379139ac51ab7a
|
@@ -25,6 +25,13 @@ module Fastlane
|
|
25
25
|
type: String),
|
26
26
|
]
|
27
27
|
end
|
28
|
+
def self.is_supported?(platform)
|
29
|
+
# Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
|
30
|
+
# See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
|
31
|
+
#
|
32
|
+
# [:ios, :mac, :android].include?(platform)
|
33
|
+
true
|
34
|
+
end
|
28
35
|
end
|
29
36
|
end
|
30
37
|
end
|