fastlane-plugin-match_keystore 0.1.1 → 0.1.2
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: 2afde25867f942e22ac1ccc83000cc4addca6eb441dd21037e46768c7bfd3ef7
|
4
|
+
data.tar.gz: 2adfd5df734d47a3eccde0b8d2e349e6d781c9bbe5ca8dd167bf4a29ba3b7299
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2bd60e61bda022e20634e28e94040f3565e91163cb6181521dae95cea4f0ef783df966b9f962c6fca35df6fa12f8de4112d161825216e3f2b58a29ee8c10627e
|
7
|
+
data.tar.gz: '023870173a08a4aaa2cc68fab720fcfe372aafae56ca7893e74237e07e6f7f8cdf6f085f92583372c7e198d2884f5c48e2a20912f356b1f8326edb7a8e24cb86'
|
@@ -94,15 +94,24 @@ module Fastlane
|
|
94
94
|
|
95
95
|
def self.resolve_apk_path(apk_path)
|
96
96
|
if !apk_path.to_s.end_with?(".apk")
|
97
|
+
|
98
|
+
if !File.directory?(apk_path)
|
99
|
+
apk_path = File.join(Dir.pwd, apk_path)
|
100
|
+
puts apk_path
|
101
|
+
end
|
102
|
+
|
97
103
|
pattern = File.join(apk_path, '*.apk')
|
98
104
|
files = Dir[pattern]
|
105
|
+
|
99
106
|
for file in files
|
100
107
|
if file.to_s.end_with?(".apk") && !file.to_s.end_with?("-signed.apk")
|
101
108
|
apk_path = file
|
102
109
|
break
|
103
110
|
end
|
104
111
|
end
|
112
|
+
|
105
113
|
end
|
114
|
+
|
106
115
|
apk_path
|
107
116
|
end
|
108
117
|
|