fastlane-plugin-alioss 0.1.3 → 0.1.4
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: 519638f4674f39271bf610d7ba4804580c098beac4cf61514b5a8b3895d9c0ef
|
4
|
+
data.tar.gz: fa8137a4f8955c8afc8b820fd4791fc16c5be9a1f31a6a9211d730ae5d887f4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce2b4d1885cf40b43a71310eed93bfec54b6ff5e3f94ccfdb9720dfe7502d3f23b0381d3ee9f772a3eb5571221a6c145bfdef1276af496a7e3dc7b002f7f583f
|
7
|
+
data.tar.gz: 7a82176eff7a8b6a5e28e3f309a3c16f8d77de0985310f333d2c99102115f76da364a68a8de68a960056db0a038a0a14b56ff4b1e00687e68d268f98929655de
|
@@ -103,9 +103,9 @@ module Fastlane
|
|
103
103
|
version_number = apk_output_json.first["apkInfo"]["versionName"]
|
104
104
|
end
|
105
105
|
# 如果output.json文件里取不到则从Actions.lane_context中取
|
106
|
-
if build_number.nil? || version_number.nil
|
106
|
+
if build_number.nil? || version_number.nil?
|
107
107
|
if Actions.lane_context[:ANDROID_VERSION_NAME].nil? || Actions.lane_context[:ANDROID_VERSION_CODE].nil?
|
108
|
-
UI.important "Actions.lane_context 不包含[ANDROID_VERSION_NAME, ANDROID_VERSION_CODE],请配置fastlane env
|
108
|
+
UI.important "Actions.lane_context 不包含[ANDROID_VERSION_NAME, ANDROID_VERSION_CODE],请配置fastlane env。"
|
109
109
|
else
|
110
110
|
build_number = Actions.lane_context[SharedValues::ANDROID_VERSION_CODE]
|
111
111
|
version_number = Actions.lane_context[SharedValues::ANDROID_VERSION_NAME]
|