fastlane-plugin-fivethree_ionic 0.1.6 → 0.1.7
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: c61dffaec4876ce432134ef4208c112a376b2a49
|
|
4
|
+
data.tar.gz: f47a028cf51ba7d668f93c81a5c89206a813022e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee6aaebc8e3b5b3830cb31e10d918c3516c6d9decd9b96b2e05d608742bcea489fdea8c120919af7a742876fdf481ee44d1abcf206bac49b609019d2f606aac4
|
|
7
|
+
data.tar.gz: 89c33b884621e8a89ad4eb4ef11f850bc8865870da05762d8440f66e1e4a520d76d561221437206146d8d1aa5722512df910113b22a224cb44fed1ff2ec4f110
|
|
@@ -21,8 +21,13 @@ module Fastlane
|
|
|
21
21
|
sign = "jarsigner -tsa http://timestamp.digicert.com -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore #{keystore_path} -storepass #{keystore_storepass} -keypass #{keystore_keypass} ./platforms/android/app/build/outputs/apk/release/app-release-unsigned.apk fivethree"
|
|
22
22
|
path = "./platforms/android/app/build/outputs/apk/release/app-release-#{params[:version]}-#{params[:build_no]}.apk"
|
|
23
23
|
zipalign = "$ANDROID_SDK/build-tools/$ANDROID_BUILD_TOOL_VERSION/zipalign -v 4 \"./platforms/android/app/build/outputs/apk/release/app-release-unsigned.apk\" \"#{path}\""
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
if params[:silent]
|
|
25
|
+
self.run_silent(sign)
|
|
26
|
+
self.run_silent(zipalign)
|
|
27
|
+
else
|
|
28
|
+
sh sign
|
|
29
|
+
sh zipalign
|
|
30
|
+
end
|
|
26
31
|
|
|
27
32
|
return path
|
|
28
33
|
|
|
@@ -80,6 +85,13 @@ FastlaneCore::ConfigItem.new(key: :alias,
|
|
|
80
85
|
description: "current build number from config.xml",
|
|
81
86
|
is_string: true,
|
|
82
87
|
default_value: ''
|
|
88
|
+
),
|
|
89
|
+
FastlaneCore::ConfigItem.new(
|
|
90
|
+
key: :silent,
|
|
91
|
+
env_name: "SIGN_ANDROID_SLIENT",
|
|
92
|
+
description: "wether to sign android silently",
|
|
93
|
+
is_string: false,
|
|
94
|
+
default_value: true
|
|
83
95
|
)
|
|
84
96
|
]
|
|
85
97
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-fivethree_ionic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marc Stammerjohann
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-09-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|