fastlane-plugin-get_android_version 0.3.0 → 0.3.1

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: f00d608489383c0c3c025bdf75387af0e3ab00d7
4
- data.tar.gz: 654dd0045dcbeb7cff07b1dd4b5bd3be188a9545
3
+ metadata.gz: 25389aaab7a7c5441915cdc68556be65c59ff759
4
+ data.tar.gz: 40c4990eb78b6c1b817183617b5cdece0ebb49eb
5
5
  SHA512:
6
- metadata.gz: 46e8042cb431895afb91ea55f0194fba46c7bbd47d4154ba8ef7d3164cb9ad4335759213930852eb837c73a3edd3a6d86247d802cad59d36b117620f1a18bdf5
7
- data.tar.gz: 9c90e9877ccb90256ff2681ab850b265b07c7d60ef5a1fa695bdb2ac62f197c61aa33c2a677e807b888c9468866a70a4ad7f9457c681815f7bd4ac2d30b6e2ee
6
+ metadata.gz: d3e9c318e74de830a1fa7d4462e09666ea505c1aca918fd31b037744f2d67b0f6517592b245bb1db9ff85dead159405fc3f190757da3a1ef5eb0db5f086dbb23
7
+ data.tar.gz: c1b70002d915fd52fbea281d58bf80475fdbabafec44078786675c6c23b9d4772053f30b821d26da5bbe5f6d345c31fbb5f07debf2c169490269cbabb0c1b381
data/README.md CHANGED
@@ -12,7 +12,7 @@ fastlane add_plugin get_android_version
12
12
 
13
13
  ## About get_android_version
14
14
 
15
- Gets the android versionName and versionCode from the `AndroidManifest.xml` file located in the provided apk.
15
+ Gets the android versionName, versionCode and appName (label) from the `AndroidManifest.xml` file located in the provided apk.
16
16
 
17
17
  Usage:
18
18
 
@@ -26,6 +26,8 @@ Sets these keys
26
26
 
27
27
  `GET_ANDROID_VERSION_CODE : String` = The versionCode extracted from the apk's manifest file. Hex values are converted to int strings.
28
28
 
29
+ `GET_ANDROID_VERSION_APP_NAME : String` = The appName (label) extracted from the apk's manifest file.
30
+
29
31
  ## Example
30
32
 
31
33
  Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
@@ -53,7 +53,7 @@ module Fastlane
53
53
  end
54
54
 
55
55
  def self.description
56
- "gets the android versionName and versionCode from manifest file"
56
+ "gets the android versionName and versionCode and appName (label) from manifest file"
57
57
  end
58
58
 
59
59
  def self.authors
@@ -66,7 +66,7 @@ module Fastlane
66
66
 
67
67
  def self.details
68
68
  # Optional:
69
- "gets the android versionName and versionCode from manifest file"
69
+ "gets the android versionName and versionCode and appName (label) from manifest file"
70
70
  end
71
71
 
72
72
  def self.available_options
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module GetAndroidVersion
3
- VERSION = "0.3.0"
3
+ VERSION = "0.3.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-get_android_version
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - MaximusMcCann