fastlane-plugin-fivethree_ionic 0.1.10 → 0.2.0

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
- SHA256:
3
- metadata.gz: df912c9a9daa710c6932ba98d6d372fdfb8979c32d96ee1770f0781143f8c814
4
- data.tar.gz: 30a9c1f8eebd4c95b4175a6cffe8dce9fe2c7c9dc42940f6e6efdbd2b66e1a36
2
+ SHA1:
3
+ metadata.gz: 6277de46ffd8b42bf647408dfe5783cc611c38a9
4
+ data.tar.gz: b7878a099a83b46bf7e0809d27c3c520d774e462
5
5
  SHA512:
6
- metadata.gz: 452a82b696f7b8766ebddda19801f546849d467bf7c216a568dc6f0dca8efb26f95a3a816b8077d0aa6cc27839d6435ba002b878ed6715432c91254a2ec851b1
7
- data.tar.gz: f90758a47b27bb8bd432527a57d4baffde216cae6ddaf9fafc69be4c978e08fe234bd42439da107baa2688ab2a8b50cbcc7d2802bfa1d19fb06ee277c44ed248
6
+ metadata.gz: 39c93d9e9fa5e3e3b93f88c6325e750d334384db68567c5390944624acd328288b92463bb91b81ab362fed435c3a30095c17df7bfb8106bd337828e0053f9b22
7
+ data.tar.gz: dbb12e9f54f07111cc7a26c6a7a3a4912c8de05d76e63d32ae7154e19e09c4fd7b8b7f03274011e7e1d82ef5f8708c23d0dad4bf2770dcd962dc217fbfc6a27d
@@ -111,8 +111,8 @@ module Fastlane
111
111
  def self.set_build_paths(is_release)
112
112
  app_name = self.get_app_name
113
113
  build_type = is_release ? 'release' : 'debug'
114
-
115
- ENV['CORDOVA_ANDROID_RELEASE_BUILD_PATH'] = "./platforms/android/build/outputs/apk/android-#{build_type}.apk"
114
+ apk_name = is_release ? 'app-release-unsigned' : 'app-debug'
115
+ ENV['CORDOVA_ANDROID_RELEASE_BUILD_PATH'] = "./platforms/android/app/build/outputs/apk/#{build_type}/#{apk_name}.apk"
116
116
  ENV['CORDOVA_IOS_RELEASE_BUILD_PATH'] = "./platforms/ios/build/device/#{app_name}.ipa"
117
117
  ENV['CORDOVA_PWA_RELEASE_BUILD_PATH'] = "./platforms/browser/www"
118
118
 
@@ -18,9 +18,9 @@ module Fastlane
18
18
  keystore_keypass = keychain_entry.password
19
19
 
20
20
  puts "Silent execution of jarsigner because we don't want to print passwords. You can delete the password if they are wrong stored in the keychain: 'fastlane fastlane-credentials remove --username android_keystore_storepass' and 'fastlane fastlane-credentials remove --username android_keystore_keypass'"
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"
21
+ sign = "jarsigner -tsa http://timestamp.digicert.com -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore #{keystore_path} -storepass #{keystore_storepass} -keypass #{keystore_keypass} #{ENV['CORDOVA_ANDROID_RELEASE_BUILD_PATH']} #{params[:key_alias]}"
22
22
  path = "./platforms/android/app/build/outputs/apk/release/app-release-#{params[:version]}-#{params[:build_no]}.apk"
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}\""
23
+ zipalign = "$ANDROID_SDK/build-tools/$ANDROID_BUILD_TOOL_VERSION/zipalign -v 4 \"#{ENV['CORDOVA_ANDROID_RELEASE_BUILD_PATH']}\" \"#{path}\""
24
24
  if params[:silent]
25
25
  self.run_silent(sign)
26
26
  self.run_silent(zipalign)
@@ -67,7 +67,7 @@ FastlaneCore::ConfigItem.new(key: :keystore_name,
67
67
  description: "",
68
68
  is_string: true,
69
69
  optional: false),
70
- FastlaneCore::ConfigItem.new(key: :alias,
70
+ FastlaneCore::ConfigItem.new(key: :key_alias,
71
71
  env_name: "ANDROID_KEYSTORE_KEYSTORE_ALIAS",
72
72
  description: "",
73
73
  is_string: true,
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module FivethreeIonic
3
- VERSION = "0.1.10"
3
+ VERSION = "0.2.0"
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.10
4
+ version: 0.2.0
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-08 00:00:00.000000000 Z
11
+ date: 2019-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -181,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
181
181
  version: '0'
182
182
  requirements: []
183
183
  rubyforge_project:
184
- rubygems_version: 2.7.7
184
+ rubygems_version: 2.5.2.3
185
185
  signing_key:
186
186
  specification_version: 4
187
187
  summary: Fastlane plugin for Ionic v4 Projects