fastlane-plugin-match_keystore 0.1.12 → 0.1.13
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: c5c402baf5a7ce59cb81cc842718697d1854539f5a9d9ea37f5005110a0b7a82
|
4
|
+
data.tar.gz: 4885c27fb682f3fb03b6e9e8c30406f1888365df72b6a9d5172b0650753f5cea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ccb884061e5c1a9151539fc4eaa4466a334e5ada0174b5fef38030bb386f82714a843e4ec0b06baea1245744c91dfffafd5aa5d808d0cdeb2c54d756743e6899
|
7
|
+
data.tar.gz: 763e7decf059eb0343e9dedf79f561b904ed24b7daa8a3be0bdbf6cc7ddbf51b86a02e991325ebe875f4fb29f7232859b78d7015f3c26c70c6149aa088d6b292
|
@@ -92,13 +92,14 @@ module Fastlane
|
|
92
92
|
def self.sign_apk(apk_path, keystore_path, key_password, alias_name, alias_password, zip_align)
|
93
93
|
|
94
94
|
build_tools_path = self.get_build_tools()
|
95
|
+
UI.message("BUild tools path: #{build_tools_path}")
|
95
96
|
|
96
97
|
# https://developer.android.com/studio/command-line/zipalign
|
97
98
|
if zip_align == true
|
98
99
|
apk_path_aligned = apk_path.gsub(".apk", "-aligned.apk")
|
99
100
|
`rm -f '#{apk_path_aligned}'`
|
100
101
|
UI.message("Aligning APK (zipalign): #{apk_path_aligned}")
|
101
|
-
`#{build_tools_path}zipalign 4 '#{apk_path}' '#{apk_path_aligned}'`
|
102
|
+
`#{build_tools_path}zipalign -f -c -v 4 '#{apk_path}' '#{apk_path_aligned}'`
|
102
103
|
else
|
103
104
|
UI.message("No zip align!")
|
104
105
|
apk_path_aligned = apk_path
|