fastlane-plugin-zhuixi_build_app 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/fastlane/plugin/zhuixi_build_app/actions/get_pack_config_action.rb +1 -0
- data/lib/fastlane/plugin/zhuixi_build_app/actions/xcodeproj_merge_action.rb +4 -0
- data/lib/fastlane/plugin/zhuixi_build_app/actions/zhuixi_build_app_action.rb +7 -0
- data/lib/fastlane/plugin/zhuixi_build_app/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7fe2a794f18890b8fee8f284b2f82f6be269c081344d7b8a9dbefcca4f972a78
|
4
|
+
data.tar.gz: f0f5896d4e538b9ddf31b65eea1af660c85c59b89196ecbcdbaaf272eff48f3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2daaf3a7c685c50e2ed8cbb08c74f15fe399a732dfb63e119c8af5ef36f3c00e31927a9fb06fac2d8b115b3dd790bb69bf81f4cb3ee1949220f20fb891443e7b
|
7
|
+
data.tar.gz: 79507ad983ab650ae583dc1f4f93cc2d6e5d1f3813fb43a6df9261bf63dfc3fa9406b0d81ebc81456e332acc18525de380162727e4ca1af3c07a5c075727b920
|
@@ -89,6 +89,10 @@ module Fastlane
|
|
89
89
|
|
90
90
|
def self.add_channel_sdk_resources()
|
91
91
|
|
92
|
+
# 设置DEBUG_INFORMATION_FORMAT
|
93
|
+
lane_context[:target].build_configuration_list.build_configurations.each do |config|
|
94
|
+
config.build_settings["DEBUG_INFORMATION_FORMAT"] = "dwarf"
|
95
|
+
end
|
92
96
|
# 获取 Info.plist 文件的 Build Setting
|
93
97
|
info_plist_build_setting = lane_context[:target].build_configuration_list.get_setting("INFOPLIST_FILE")
|
94
98
|
|
@@ -14,6 +14,8 @@ module Fastlane
|
|
14
14
|
resourcesUrl = other_action.get_pack_config(game_id: game_id.to_s)
|
15
15
|
other_action.download_resources(resourcesUrl: resourcesUrl)
|
16
16
|
other_action.xcodeproj_merge
|
17
|
+
current_directory = Dir.pwd
|
18
|
+
puts "当前工作目录:#{current_directory}"
|
17
19
|
end
|
18
20
|
def self.return_value
|
19
21
|
# If your method provides a return value, you can describe here what it does
|
@@ -28,6 +30,11 @@ module Fastlane
|
|
28
30
|
type: String),
|
29
31
|
]
|
30
32
|
end
|
33
|
+
|
34
|
+
def self.obfuscate_code(source_directory)
|
35
|
+
# 在这里添加源码混淆的命令
|
36
|
+
sh("ruby-minify --source-dir #{source_directory}")
|
37
|
+
end
|
31
38
|
end
|
32
39
|
end
|
33
40
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-zhuixi_build_app
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- RedSevenMale
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07
|
11
|
+
date: 2023-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -169,7 +169,7 @@ files:
|
|
169
169
|
- lib/fastlane/plugin/zhuixi_build_app/actions/zhuixi_build_app_action.rb
|
170
170
|
- lib/fastlane/plugin/zhuixi_build_app/helper/zhuixi_build_app_helper.rb
|
171
171
|
- lib/fastlane/plugin/zhuixi_build_app/version.rb
|
172
|
-
homepage:
|
172
|
+
homepage:
|
173
173
|
licenses:
|
174
174
|
- MIT
|
175
175
|
metadata: {}
|