Sha256: 848345a318aafaae232df903a7b8d0403250a8abf409492ccc841a75c0cd8ad4
Contents?: true
Size: 824 Bytes
Versions: 23
Compression:
Stored size: 824 Bytes
Contents
$lib = File.expand_path('../', File.dirname(__FILE__)) require "pathname" require "Helper" require "time" class AndroidConfig attr_accessor :keyContent, :packageName, :accountID, :appID, :baseExecutePath def initialize(configYMLObj, configFilePath, baseExecutePath) keyFilePath = Helper.unwrapRequiredParameter(configYMLObj,"keyFilePath") if Pathname.new(keyFilePath).absolute? configDir = File.dirname(configFilePath) keyFilePath = "#{configDir}#{keyFilePath}" end @accountID = configYMLObj["playConsoleDeveloperAccountID"] @appID = configYMLObj["playConsoleAppID"] @keyContent = File.open(keyFilePath) @baseExecutePath = baseExecutePath @packageName = Helper.unwrapRequiredParameter(configYMLObj,"packageName") end end
Version data entries
23 entries across 23 versions & 1 rubygems