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
0aca3048
Commit
0aca3048
authored
Jul 09, 2024
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// bugly
parent
746ed517
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
11 deletions
+10
-11
Fastfile
galaxy/fastlane/Fastfile
+10
-11
No files found.
galaxy/fastlane/Fastfile
View file @
0aca3048
...
@@ -3,15 +3,6 @@ default_platform(:ios)
...
@@ -3,15 +3,6 @@ default_platform(:ios)
platform :ios do
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", xcodeproj: "./galaxy.xcodeproj")
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"
...
@@ -29,8 +20,8 @@ platform :ios do
...
@@ -29,8 +20,8 @@ platform :ios do
release_bugly_app_key = "ce23936f-3625-4452-92d9-31551858ae02"
release_bugly_app_key = "ce23936f-3625-4452-92d9-31551858ae02"
# 上传符号表相对路径
# 上传符号表相对路径
adhoc_symbol_path = "./App/ad-hoc/galaxy.app.dSYM"
adhoc_symbol_path = "./App/ad-hoc/galaxy.app.dSYM
.zip
"
release_symbol_path = "./App/Release/galaxy.app.dSYM"
release_symbol_path = "./App/Release/galaxy.app.dSYM
.zip
"
#可以用来打包的分支
#可以用来打包的分支
develop_branch = "develop"
develop_branch = "develop"
...
@@ -98,6 +89,10 @@ platform :ios do
...
@@ -98,6 +89,10 @@ platform :ios do
#1、通过 bugly 官网下载 buglyqq-upload-symbol.jar,可直接点击该链接下载
#1、通过 bugly 官网下载 buglyqq-upload-symbol.jar,可直接点击该链接下载
#2、下载后放在 ~/bin/ 文件夹下,文件夹不存在时手动创建
#2、下载后放在 ~/bin/ 文件夹下,文件夹不存在时手动创建
adhoc_version = get_version_number_from_xcodeproj(scheme: "galaxyForTestArchive", xcodeproj: "./galaxy.xcodeproj")
adhoc_build_number = get_build_number_from_xcodeproj(scheme: "galaxyForTestArchive", xcodeproj: "./galaxy.xcodeproj")
adhoc_version_key = "#{adhoc_version}.#{adhoc_build_number}"
upload_to_bugly(
upload_to_bugly(
appid: adhoc_bugly_app_id,
appid: adhoc_bugly_app_id,
appkey: adhoc_bugly_app_key,
appkey: adhoc_bugly_app_key,
...
@@ -165,6 +160,10 @@ platform :ios do
...
@@ -165,6 +160,10 @@ platform :ios do
# mac上的通知弹窗,通知上传pgy完毕
# mac上的通知弹窗,通知上传pgy完毕
notification(app_icon: "", title: "manager", subtitle: "安装包上传到蒲公英成功", message: "准备上传符号表到bugly")
notification(app_icon: "", title: "manager", subtitle: "安装包上传到蒲公英成功", message: "准备上传符号表到bugly")
release_version = get_version_number_from_xcodeproj(scheme: "galaxy", xcodeproj: "./galaxy.xcodeproj")
release_build_number = get_build_number_from_xcodeproj(scheme: "galaxy", xcodeproj: "./galaxy.xcodeproj")
release_version_key = "#{release_version}.#{release_build_number}"
upload_to_bugly(
upload_to_bugly(
appid: release_bugly_app_id,
appid: release_bugly_app_id,
appkey: release_bugly_app_key,
appkey: release_bugly_app_key,
...
...
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