fastlane-plugin-fivethree_ionic 0.1.10 → 0.2.0
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
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 6277de46ffd8b42bf647408dfe5783cc611c38a9
|
|
4
|
+
data.tar.gz: b7878a099a83b46bf7e0809d27c3c520d774e462
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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}
|
|
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 \"
|
|
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: :
|
|
70
|
+
FastlaneCore::ConfigItem.new(key: :key_alias,
|
|
71
71
|
env_name: "ANDROID_KEYSTORE_KEYSTORE_ALIAS",
|
|
72
72
|
description: "",
|
|
73
73
|
is_string: true,
|
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.
|
|
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:
|
|
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.
|
|
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
|