fastlane-plugin-upload_to_bugly 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6335f0c474fbf780633a83e76958a623271418e1d929fc1ef291984459744645
4
- data.tar.gz: a4055fda661df46dab7ce46e63b237c2f0dd3615f5a234270b7f8dc0b6eb631f
3
+ metadata.gz: cbdc1e93f932af97ae15590094eec6aebad4ec52ffcfe6d4bf02bda96967b645
4
+ data.tar.gz: 9a3aca2d3b7563fb6368962b23f183fe7216036e15072457af4219028c4afcd2
5
5
  SHA512:
6
- metadata.gz: 4c2aace63343afec253dc6eceb5285990ad2f66377d93b660b7f93d0ae02858e3ad8640fa7d0c9c8133b36d72040907537639e326d65ceece3302bf91dfb2bbd
7
- data.tar.gz: c03188a4d84057873091142899b272611f5434959eb6bd25b620d4d1867248d25c0d4ee0e5d88d54766fbadefc37f3d63df60ecd15c074473950502b73b00aa7
6
+ metadata.gz: 5c45dbb5235f4372d68c3168f7d44eb2373321a3069599b01b8471d66ac6af4e9abf0c5e21c233fab5de28497fd338ee57e487c63b9f88a50f87cd281e2dcf67
7
+ data.tar.gz: 4733f41625a3fbe9597ca776d67725cae69699cae04d783b3025ffcd401771a1126f5b1a22bd5e778e924485d3b820564eb3f6502108d0484451bfd0a86cb83c
data/README.md CHANGED
@@ -12,32 +12,28 @@ fastlane add_plugin upload_to_bugly
12
12
 
13
13
  ## About upload_to_bugly
14
14
 
15
- 快速上传 .dSYM 到 bugly
15
+ fastlane 插件用于快速上传iOS .dSYM 文件 到 bugly
16
16
 
17
- **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
17
+ 注意:bugly 老版本用的是 `buglySymboliOS.jar`,现在上传存在问题,因此当前用的是 `buglyqq-upload-symbol.jar`
18
18
 
19
- ## Example
20
19
 
21
- Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
20
+ ## Use
22
21
 
23
- **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
24
-
25
- ## Run tests for this plugin
26
-
27
- To run both the tests, and code style validation, run
28
-
29
- ```
30
- rake
31
- ```
32
-
33
- To automatically fix many of the styling issues, use
34
22
  ```
35
- rubocop -a
23
+ 'upload_to_bugly(
24
+ appid: "xxx",
25
+ appkey: "xxx",
26
+ bundleid: "xxx",
27
+ version: "a.b.c",
28
+ inputSymbol: "./xxx.dSYM"
29
+ )
36
30
  ```
37
31
 
38
- ## Issues and Feedback
32
+ 1、通过 bugly 官网下载 `buglyqq-upload-symbol.jar`,可直接点击[该链接下载](https://bugly.qq.com/v2/sdk?id=d796e9d7-0423-422f-9eb9-63b6e16ef4f9)
33
+ 2、下载后放在 `~/bin/` 文件夹下,文件夹不存在时手动创建
34
+ 3、该 `.jar` 工具要求对应 java 的版本为 `openjdk@8`
39
35
 
40
- For any other issues and feedback about this plugin, please submit it to this repository.
36
+ 参考:[Bugly iOS 符号表配置](https://bugly.qq.com/docs/user-guide/symbol-configuration-ios/?v=20210727214427#dsym)
41
37
 
42
38
  ## Troubleshooting
43
39
 
@@ -37,7 +37,7 @@ module Fastlane
37
37
  #####################################################
38
38
 
39
39
  def self.description
40
- "通过 buglyqq-upload-symbol.jar 来上传 dsym 到 bugly"
40
+ "通过 buglyqq-upload-symbol.jar 来上传 .dSYM 到 bugly"
41
41
  end
42
42
 
43
43
  def self.available_options
@@ -86,7 +86,7 @@ module Fastlane
86
86
  end
87
87
 
88
88
  def self.details
89
- "upload dsym to bugly with buglyqq-upload-symbol.jar,前提:在 ~/bin/ 存放 buglyqq-upload-symbol.jar 工具,下载路径参考 bugly 官网"
89
+ "upload .dSYM to bugly with buglyqq-upload-symbol.jar,具体操作查看 README.md"
90
90
  end
91
91
 
92
92
  def self.is_supported?(platform)
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module UploadToBugly
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-upload_to_bugly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - fisherman
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-04 00:00:00.000000000 Z
11
+ date: 2021-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -162,7 +162,7 @@ files:
162
162
  - lib/fastlane/plugin/upload_to_bugly/actions/upload_to_bugly_action.rb
163
163
  - lib/fastlane/plugin/upload_to_bugly/helper/upload_to_bugly_helper.rb
164
164
  - lib/fastlane/plugin/upload_to_bugly/version.rb
165
- homepage:
165
+ homepage: https://gitee.com/honeycao/fastlane-plugin-upload_to_bugly.git
166
166
  licenses:
167
167
  - MIT
168
168
  metadata: {}