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: e2c2b8667479b6eb8905f7c5e572be0fd3797d34
4
- data.tar.gz: 668b51deb1fe587697d7ec5b0dff3b87289d0945
3
+ metadata.gz: 3e6430d2cf562ad46f8fcf167748c014cd5ce125
4
+ data.tar.gz: 640f9c6f5d156a99e40735ade9db4d46cc5b42a4
5
5
  SHA512:
6
- metadata.gz: 4b900cb2ee2804d54cc308dfc2c859643d1008c06178f3c13a9d5827008518b26e97292f61b476b5c062e30957ba0c52d769659d8bcfc9a126ca4feb64fae3cb
7
- data.tar.gz: dfb9e69b45576fbd4a82d08a36176d8892dd269138618576275a653b54dc75a2ab8c3437a487450e4b34156e8dca5a7697e84efe8a60956b50c0ab14db45ad3a
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Cordova
3
- VERSION = "0.3.4"
3
+ VERSION = "0.4.0"
4
4
  end
5
5
  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.3.4
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-10-06 00:00:00.000000000 Z
11
+ date: 2017-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry