Sha256: e728bf7361776270d73d5959e109caed15a1fe618a9d6eb394d6212893850acb

Contents?: true

Size: 482 Bytes

Versions: 1

Compression:

Stored size: 482 Bytes

Contents

module Lhj
  # bugly helper
  class BuglyHelper

    def self.upload_sym(app_id, app_key, bundle_id, version, input_symbol)
      command = %w[java jar buglyqq-upload-symbol.jar]
      command << "-appid #{app_id}"
      command << "-appkey #{app_key}"
      command << "-bundleid #{bundle_id}"
      command << "-version #{version}"
      command << '-platform IOS'
      command << "-inputSymbol #{input_symbol}"
      Actions.sh(command.join[' '], log: true)
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lhj-tools-0.2.8 lib/lhj/helper/bugly_helper.rb