Setup fastlane

This is great for automatically uploading (localized) screenshots
and app metadata to Google Play.
You can even upload the signed APK releases as well.

For now, this is only useful for running the screenshot Espresso tests
and grabbing the screenshots from the device.
This commit is contained in:
Torsten Grote
2018-07-25 16:29:52 -03:00
parent d0c2c03057
commit be2d695150
5 changed files with 83 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ public class DarkThemeTest extends ScreenshotTest {
.check(matches(isDisplayed()))
.perform(click());
screenshot("dark_theme_settings");
screenshot("manual_dark_theme_settings");
onView(withText(R.string.pref_theme_title))
.check(matches(isDisplayed()))
@@ -83,7 +83,7 @@ public class DarkThemeTest extends ScreenshotTest {
.check(matches(isClosed(Gravity.LEFT)))
.perform(DrawerActions.open());
screenshot("dark_theme_nav_drawer");
screenshot("manual_dark_theme_nav_drawer");
}
}