fastlane-plugin-deploy_file_provider 0.3.4 → 0.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6dfd6753bc3bd35280ea834b9192d2c42b592ba0
|
|
4
|
+
data.tar.gz: 2564a212b6f1c4add8b8c912e2a3fff2cccfd562
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6aae4a1c2ad0a5879e876ba679f4238e71040a4fff8d3139834343a424fe6e46c793f15f5cc456304cc9d7e6efbc85481f432fcff6570415b0fdad1672209f21
|
|
7
|
+
data.tar.gz: af08377d56201e80674a05e077f560f402ef39d205c17dab710506aa5670faf477737ec63b4b389b444650561e8d7040746050806d70d3fc48c6dd3c3e12318f
|
|
@@ -13,7 +13,7 @@ module Fastlane
|
|
|
13
13
|
RUN_VARIANT_IOS = "ios"
|
|
14
14
|
|
|
15
15
|
ANDROID_CHANGELOG_DIR = "changelogs/"
|
|
16
|
-
ANDROID_APK_INFO_DIR = "
|
|
16
|
+
ANDROID_APK_INFO_DIR = ""
|
|
17
17
|
ANDROID_APK_INFO_FILENAME = "apkInfo.txt"
|
|
18
18
|
#ANDROID_CHANGELOG_FILENAME -> changes depending on build, fetched from api
|
|
19
19
|
|
|
@@ -156,7 +156,7 @@ module Fastlane
|
|
|
156
156
|
|
|
157
157
|
version_code_header = "Version code: "
|
|
158
158
|
android_apk_version_code = nil
|
|
159
|
-
if (file
|
|
159
|
+
if File.exists?(file)
|
|
160
160
|
File.open(file) do |f|
|
|
161
161
|
f.each_line do |line|
|
|
162
162
|
if line.include?(version_code_header)
|