fastlane-plugin-xambuild 0.1.0 → 0.2.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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df9c6b9018f9579fd9524eacbac76c2d3a602aad873b3ecef3a1fc97cb66dc8c
|
|
4
|
+
data.tar.gz: b2df8c8e8f004bbae449d53b734f851e8fdffa0bbcb3dc80331750b452ae3f4e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bbc3a005634bab1fa6d9d7b7cdaa2717473d9d0b02d9ee3e70d61c946407fd9268bb68f8847d513fbea2b71e71d9e6e5c64ebfaff38916ac1a632ee56bc3295
|
|
7
|
+
data.tar.gz: dc44591c5de4a57c48ad028a7590d4aaaa3af3f5d046e20db063973198a0cf9a3b83877742c9cfa97063a38cca0ceb294e3f73df50af3ccd311b7a360137adf2
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Xambuild Fastlane Plugin
|
|
2
2
|
|
|
3
3
|
[](https://rubygems.org/gems/fastlane-plugin-xambuild)
|
|
4
4
|
|
|
@@ -20,7 +20,7 @@ platform :ios do
|
|
|
20
20
|
xambuild(
|
|
21
21
|
platform: "ios",
|
|
22
22
|
build_configuration: "Release",
|
|
23
|
-
plist_path: "
|
|
23
|
+
plist_path: "iOS/Info.plist"
|
|
24
24
|
)
|
|
25
25
|
end
|
|
26
26
|
end
|
|
@@ -29,9 +29,9 @@ platform :android do
|
|
|
29
29
|
xambuild(
|
|
30
30
|
platform: "android",
|
|
31
31
|
build_configuration: "Release",
|
|
32
|
-
keystore_path: "
|
|
33
|
-
keystore_alias: "
|
|
34
|
-
keystore_password: "
|
|
32
|
+
keystore_path: "my.keystore",
|
|
33
|
+
keystore_alias: "myalias",
|
|
34
|
+
keystore_password: ENV["MY_KEYSTORE_PASSWORD"]
|
|
35
35
|
)
|
|
36
36
|
end
|
|
37
37
|
end
|
|
@@ -39,7 +39,7 @@ end
|
|
|
39
39
|
|
|
40
40
|
## About xambuild
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
Fastlane plugin to make Xamarin builds easy
|
|
43
43
|
|
|
44
44
|
## Issues and Feedback
|
|
45
45
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-xambuild
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jake Barnby
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-11-
|
|
11
|
+
date: 2020-11-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane
|
|
@@ -155,5 +155,5 @@ requirements: []
|
|
|
155
155
|
rubygems_version: 3.1.4
|
|
156
156
|
signing_key:
|
|
157
157
|
specification_version: 4
|
|
158
|
-
summary:
|
|
158
|
+
summary: Fastlane plugin to make Xamarin builds easy
|
|
159
159
|
test_files: []
|