Method: AndroidFetcher#initialize

Defined in:
lib/AndroidFetcher.rb

#initialize(config) ⇒ AndroidFetcher

Returns a new instance of AndroidFetcher.



12
13
14
15
16
17
18
19
20
# File 'lib/AndroidFetcher.rb', line 12

def initialize(config)
    @processors = []
    @config = config
    @platform = 'Android'
    @logger = ZLogger.new(config.baseExecutePath)
    @googleAPI = GoogleAPI.new(config.keyFilePath, config.baseExecutePath, ["https://www.googleapis.com/auth/androidpublisher"])

    puts "[AndroidFetcher] Init Success."
end