fastlane-plugin-get_android_version 0.3.3 → 0.3.4
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: 4c1b9211edf1c5b965dad3299a261daf9727e6b6
|
|
4
|
+
data.tar.gz: b9f371fda56ffa41a9244cb3a0553e94fe53c26a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 511c97299e12cb695ebe66a7a235b055c82aaa3d1e47eb9445e49cb2359ef5f1768521bc69cb055cc4618e6a179484fb0468011bc2f6d4f939ac32e973e5fe69
|
|
7
|
+
data.tar.gz: 5486f9e6b13398a4add9837d662ab94d037e9a158c244ba1b275261628a04d637659d84c34608010d1ef359ea9f7c824a88c337ec1ca14e91933a79a0c57935e
|
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, versionCode and appName (label) from
|
|
15
|
+
Gets the android versionName, versionCode and parsed appName (label) from `AndroidManifest.xml` file in provided apk.
|
|
16
16
|
|
|
17
17
|
Usage:
|
|
18
18
|
|
|
@@ -53,7 +53,7 @@ module Fastlane
|
|
|
53
53
|
end
|
|
54
54
|
|
|
55
55
|
def self.description
|
|
56
|
-
"
|
|
56
|
+
"Gets the android versionName, versionCode and parsed appName (label) from AndroidManifest.xml file in provided apk"
|
|
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
|
-
"
|
|
69
|
+
"Gets the android versionName, versionCode and parsed appName (label) from AndroidManifest.xml file in provided apk"
|
|
70
70
|
end
|
|
71
71
|
|
|
72
72
|
def self.available_options
|
|
@@ -89,8 +89,6 @@ module Fastlane
|
|
|
89
89
|
|
|
90
90
|
def self.is_supported?(platform)
|
|
91
91
|
platform == :android
|
|
92
|
-
# Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
|
|
93
|
-
# See: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md
|
|
94
92
|
end
|
|
95
93
|
end
|
|
96
94
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- MaximusMcCann
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-11-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: apktools
|