Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
galaxy-iOS
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mobile-group
galaxy-iOS
Commits
07de9d22
Commit
07de9d22
authored
Jul 09, 2024
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// 上传bugly 添加build号
parent
c4d57a39
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
Fastfile
galaxy/fastlane/Fastfile
+10
-4
No files found.
galaxy/fastlane/Fastfile
View file @
07de9d22
...
@@ -4,8 +4,14 @@ platform :ios do
...
@@ -4,8 +4,14 @@ platform :ios do
desc "Description of what the lane does"
desc "Description of what the lane does"
# 打包时候用的名称 例如 fastlane app
# 打包时候用的名称 例如 fastlane app
adhoc_version = get_version_number_from_xcodeproj(scheme: "galaxyForTestArchive")
adhoc_version = get_version_number_from_xcodeproj(scheme: "galaxyForTestArchive", xcodeproj: "./galaxy.xcodeproj")
release_version = get_version_number_from_xcodeproj(scheme: "galaxy")
release_version = get_version_number_from_xcodeproj(scheme: "galaxy", xcodeproj: "./galaxy.xcodeproj")
adhoc_build_number = get_build_number_from_xcodeproj(scheme: "galaxyForTestArchive", xcodeproj: "./galaxy.xcodeproj")
release_build_number = get_build_number_from_xcodeproj(scheme: "galaxy", xcodeproj: "./galaxy.xcodeproj")
adhoc_version_key = "#{adhoc_version}.#{adhoc_build_number}"
release_version_key = "#{release_version}.#{release_build_number}"
bundle_id = "com.intelligence.galaxy"
bundle_id = "com.intelligence.galaxy"
adhoc_profile_name = "com.adhoc.profile"
adhoc_profile_name = "com.adhoc.profile"
...
@@ -96,7 +102,7 @@ platform :ios do
...
@@ -96,7 +102,7 @@ platform :ios do
appid: adhoc_bugly_app_id,
appid: adhoc_bugly_app_id,
appkey: adhoc_bugly_app_key,
appkey: adhoc_bugly_app_key,
bundleid: bundle_id,
bundleid: bundle_id,
version: adhoc_version,
version: adhoc_version
_key
,
inputSymbol: adhoc_symbol_path)
inputSymbol: adhoc_symbol_path)
# mac上的通知弹窗,通知上传符号表完毕
# mac上的通知弹窗,通知上传符号表完毕
...
@@ -163,7 +169,7 @@ platform :ios do
...
@@ -163,7 +169,7 @@ platform :ios do
appid: release_bugly_app_id,
appid: release_bugly_app_id,
appkey: release_bugly_app_key,
appkey: release_bugly_app_key,
bundleid: bundle_id,
bundleid: bundle_id,
version: release_version,
version: release_version
_key
,
inputSymbol: release_symbol_path)
inputSymbol: release_symbol_path)
# mac上的通知弹窗,通知上传符号表完毕
# mac上的通知弹窗,通知上传符号表完毕
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment