fastlane-plugin-increment_build_number 0.0.3 → 0.0.4
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3719abdeea6052b815214eab2747d11514afbb8a8997e7278a2e37ee49b851a
|
4
|
+
data.tar.gz: d673da3171429b856b8f2964a27323876c5a96796fc279b8ec553a0ac1924ecd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba9efc8c7d6ae94f97f838e02c456cb5fd512ddc2a9915238345e4280b236e4f5b752b67f93371ac9815c5abdf2d9f2a3fd9b52caa61e21e545de0ac7b53428b
|
7
|
+
data.tar.gz: b41616e2db77ed2ad84bd3988d07554d6b5b44a7b8fef2993f4708dbb1856a818233447c838d2b717af05418bdbeff77951a8b943c934b0f115deb6c411ba72d
|
data/README.md
CHANGED
@@ -22,12 +22,12 @@ Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plu
|
|
22
22
|
|
23
23
|
[For Android]
|
24
24
|
```ruby
|
25
|
-
increment_version_code(manifest: "AndroidManifest.xml")
|
25
|
+
increment_version_code(manifest: "AndroidManifest.xml", version_name: "1.0", version_code: "1", auto_increment: true)
|
26
26
|
```
|
27
27
|
|
28
28
|
[For iOS]
|
29
29
|
```ruby
|
30
|
-
increment_bundle_version(info_plist: "Info.plist")
|
30
|
+
increment_bundle_version(info_plist: "Info.plist", version_number: "1.0", build_number: "1", auto_increment: true)
|
31
31
|
```
|
32
32
|
|
33
33
|
**Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
|
@@ -66,7 +66,7 @@ module Fastlane
|
|
66
66
|
skip_type_validation: true),
|
67
67
|
FastlaneCore::ConfigItem.new(key: :version_code,
|
68
68
|
env_name: "FL_INCREMENT_BUILD_NUMBER_VERSION_CODE",
|
69
|
-
description: "Change to a specific version code
|
69
|
+
description: "Change to a specific version code",
|
70
70
|
optional: true,
|
71
71
|
skip_type_validation: true),
|
72
72
|
FastlaneCore::ConfigItem.new(key: :auto_increment,
|