fastlane-plugin-cordova 0.3.4 → 0.4.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
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e6430d2cf562ad46f8fcf167748c014cd5ce125
|
|
4
|
+
data.tar.gz: 640f9c6f5d156a99e40735ade9db4d46cc5b42a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e8ed877e42be363320a7bca21dacde948725ea25b44436d1d4cc122b72181451e730da63295d9c68c366f40fb818af228181fd1eddb047c5bc376c4e678fa17
|
|
7
|
+
data.tar.gz: f38086bc78f6e798a05bc6d6d3410fe24aac244d2469d302e7b7046b996c69b04c727fe2cdfa0f6db780beb3153cb3e4a8254fe02fef16e52133d52dd66b3a83
|
data/README.md
CHANGED
|
@@ -55,7 +55,7 @@ If using **Crosswalk**, replace `supply(apk: ENV['CORDOVA_ANDROID_RELEASE_BUILD_
|
|
|
55
55
|
```
|
|
56
56
|
supply(
|
|
57
57
|
apk_paths: [
|
|
58
|
-
'platforms/android/build/outputs/apk/android-armv7-release.apk',
|
|
58
|
+
'platforms/android/build/outputs/apk/android-armv7-release.apk',
|
|
59
59
|
'platforms/android/build/outputs/apk/android-x86-release.apk'
|
|
60
60
|
],
|
|
61
61
|
)
|
|
@@ -82,6 +82,7 @@ Which will produce:
|
|
|
82
82
|
| **keystore_password** | Android Keystore password | CORDOVA_ANDROID_KEYSTORE_PASSWORD | |
|
|
83
83
|
| **key_password** | Android Key password (default is keystore password) | CORDOVA_ANDROID_KEY_PASSWORD | |
|
|
84
84
|
| **keystore_alias** | Android Keystore alias | CORDOVA_ANDROID_KEYSTORE_ALIAS | |
|
|
85
|
+
| **min_sdk_version** | Overrides the value of minSdkVersion | CORDOVA_ANDROID_MIN_SDK_VERSION | |
|
|
85
86
|
| **build_number** | Build Number for iOS and Android | CORDOVA_BUILD_NUMBER | |
|
|
86
87
|
| **browserify** | Specifies whether to browserify build or not | CORDOVA_BROWSERIFY | *false* |
|
|
87
88
|
| **cordova_prepare** | Specifies whether to run `cordova prepare` before building | CORDOVA_PREPARE | *true* |
|
|
@@ -11,7 +11,8 @@ module Fastlane
|
|
|
11
11
|
keystore_password: 'storePassword',
|
|
12
12
|
key_password: 'password',
|
|
13
13
|
keystore_alias: 'alias',
|
|
14
|
-
build_number: 'versionCode'
|
|
14
|
+
build_number: 'versionCode',
|
|
15
|
+
min_sdk_version: 'gradleArg=-PcdvMinSdkVersion'
|
|
15
16
|
}
|
|
16
17
|
|
|
17
18
|
IOS_ARGS_MAP = {
|
|
@@ -223,6 +224,13 @@ module Fastlane
|
|
|
223
224
|
description: "Specifies whether to run `cordova prepare` before building",
|
|
224
225
|
default_value: true,
|
|
225
226
|
is_string: false
|
|
227
|
+
),
|
|
228
|
+
FastlaneCore::ConfigItem.new(
|
|
229
|
+
key: :min_sdk_version,
|
|
230
|
+
env_name: "CORDOVA_ANDROID_MIN_SDK_VERSION",
|
|
231
|
+
description: "Overrides the value of minSdkVersion set in AndroidManifest.xml",
|
|
232
|
+
default_value: '',
|
|
233
|
+
is_string: false
|
|
226
234
|
)
|
|
227
235
|
]
|
|
228
236
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-cordova
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Almouro
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-11-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|