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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25389aaab7a7c5441915cdc68556be65c59ff759
|
4
|
+
data.tar.gz: 40c4990eb78b6c1b817183617b5cdece0ebb49eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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
|