class Fastlane::Helper::AndroidAdapter

Public Instance Methods

allowed_extensions() click to toggle source
# File lib/fastlane/plugin/simple_loco/helper/simple_loco_helper.rb, line 282
def allowed_extensions
  return ['.xml']
end
default_file_name() click to toggle source
# File lib/fastlane/plugin/simple_loco/helper/simple_loco_helper.rb, line 290
def default_file_name
  return 'strings'
end
directory(locale, is_default) click to toggle source
# File lib/fastlane/plugin/simple_loco/helper/simple_loco_helper.rb, line 286
def directory(locale, is_default)
  return is_default ? 'values' : "values-#{locale}"
end