fastlane/lib/fastlane/actions/frame_screenshots.rb in fastlane-2.142.0 vs fastlane/lib/fastlane/actions/frame_screenshots.rb in fastlane-2.143.0
- old
+ new
@@ -43,10 +43,11 @@
def self.example_code
[
'frame_screenshots',
'frameit # alias for "frame_screenshots"',
+ 'frame_screenshots(use_platform: "ANDROID")',
'frame_screenshots(silver: true)',
'frame_screenshots(path: "/screenshots")',
'frame_screenshots(rose_gold: true)'
]
end
@@ -54,10 +55,10 @@
def self.category
:screenshots
end
def self.is_supported?(platform)
- [:ios, :mac].include?(platform)
+ [:ios, :mac, :android].include?(platform)
end
end
end
end