fastlane-plugin-flutter_ios_integrate 0.1.0 → 0.1.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: c508d9f964f79e479990118980b02a467f1d88c2a1080984ba8480023bab0408
|
4
|
+
data.tar.gz: ead54ce317ed0d01dd743dbf3d59f943b11e2c74a300af0d2c88cf9a4ecc5620
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87c3a3f41ec6cb922ca0348a77fffb0ee49c8ccfc2c39841d53474be8ee999e7400f53d34304353fed8aa4758731f4a9077ae9d82a2e8f0d62cf1085a0baf176
|
7
|
+
data.tar.gz: 43535334d9069a613a86fd380eefe4c68edf368c2bed0b5ef697fd75c9b1c734958248dac3874f2e126c189f8ec54dd750c3bcd6d3771210d3d921d381192441
|
@@ -12,12 +12,20 @@ module Fastlane
|
|
12
12
|
|
13
13
|
UI.message(" ===== Flutter 构建开始 ===== ")
|
14
14
|
|
15
|
-
#
|
16
|
-
|
15
|
+
# 进入 submodule 目录
|
16
|
+
Action.sh("cd " + param_flutter_path)
|
17
17
|
|
18
|
-
#
|
18
|
+
# 初始化 submodule
|
19
19
|
other_action.git_submodule_update(recursive: true, init: true)
|
20
|
-
|
20
|
+
|
21
|
+
# 清空未提交的内容
|
22
|
+
Action.sh("git reset --hard")
|
23
|
+
|
24
|
+
# 从远端更新 submodule
|
25
|
+
Action.sh("git submodule update --remote")
|
26
|
+
|
27
|
+
# Pub Get
|
28
|
+
flutter_build_result = Action.sh("flutter pub get")
|
21
29
|
UI.message "#{flutter_build_result}"
|
22
30
|
|
23
31
|
# Debug 打包时替换 Flutter build 模式命令
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-flutter_ios_integrate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Akring
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -181,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
181
181
|
- !ruby/object:Gem::Version
|
182
182
|
version: '0'
|
183
183
|
requirements: []
|
184
|
-
rubygems_version: 3.
|
184
|
+
rubygems_version: 3.4.2
|
185
185
|
signing_key:
|
186
186
|
specification_version: 4
|
187
187
|
summary: Fastlane plugin to integrate flutter to existing iOS project
|