fastlane-plugin-fivethree_ionic 0.1.6 → 0.1.7

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
  SHA1:
3
- metadata.gz: 357165b19b05fc338482d0a229f09b6701aa72bc
4
- data.tar.gz: 394e544575cebe7e7acc1e4691ecfc8bf410297a
3
+ metadata.gz: c61dffaec4876ce432134ef4208c112a376b2a49
4
+ data.tar.gz: f47a028cf51ba7d668f93c81a5c89206a813022e
5
5
  SHA512:
6
- metadata.gz: 55c1753b9674d6d2e76f3faf42ac0fb0b41f9e4de3e50b32818f30cecafc4772cd64755e5651174e0f53087600c1db506dd776063e10f4eee64eeda761ee4be1
7
- data.tar.gz: f6c02dc4d2fc770a1b084fb047a9a628de8319765db71699fc4c983908f479194f3d18af6b2bce786af1ce64d271eb40fee21f3c6db025ab594ee6b2530acbee
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
- self.run_silent(sign)
25
- self.run_silent(zipalign)
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module FivethreeIonic
3
- VERSION = "0.1.6"
3
+ VERSION = "0.1.7"
4
4
  end
5
5
  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.6
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-08-31 00:00:00.000000000 Z
11
+ date: 2018-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry