ios version bump

This commit is contained in:
Kenton Hamaluik
2020-03-19 00:41:51 -06:00
parent 7a7c43b4a7
commit d566e8687b
4 changed files with 55 additions and 13 deletions

View File

@ -374,7 +374,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 11;
CURRENT_PROJECT_VERSION = 12;
DEVELOPMENT_TEAM = XF5UYMLH66;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
@ -509,7 +509,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 11;
CURRENT_PROJECT_VERSION = 12;
DEVELOPMENT_TEAM = XF5UYMLH66;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
@ -537,7 +537,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 11;
CURRENT_PROJECT_VERSION = 12;
DEVELOPMENT_TEAM = XF5UYMLH66;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (

View File

@ -15,7 +15,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Time Cop.app"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
@ -31,7 +31,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Time Cop.app"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
@ -54,7 +54,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Time Cop.app"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
@ -71,7 +71,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Time Cop.app"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>

42
screenshots.ios.yaml Normal file
View File

@ -0,0 +1,42 @@
# Screen capture tests
# Note: flutter driver expects a pair of files eg, main.dart and main_test.dart
tests:
- test_driver/main.dart
# Interim location of screenshots from tests before processing
staging: ./tmp/screenshots
# A list of locales supported in app
locales:
- en
- fr
- de
- es
- hi
- id
- ja
- ko
- pt
- ru
- zh-CN
- zh-TW
- ar
# A list of devices to run tests on
devices:
ios:
# iPhone Xs Max:
# orientation:
# - Portrait
# iPhone 8 Plus:
# orientation:
# - Portrait
# iPad Pro (12.9-inch) (3rd generation):
# orientation:
# - Portrait
iPad Pro (12.9-inch) (2nd generation):
orientation:
- Portrait
# Frame screenshots
frame: true

View File

@ -20,7 +20,7 @@ void main() {
SerializableFinder startTimerButton = find.byValueKey("startTimerButton");
await driver.waitFor(startTimerButton);
await screenshot(driver, config, 'dashboard');
await screenshot(driver, config, '01 dashboard');
// then the timer details page
String mockupsText = await driver.requestData("mockups");
@ -30,7 +30,7 @@ void main() {
SerializableFinder saveDetails = find.byValueKey("saveDetails");
await driver.waitFor(saveDetails);
await driver.waitUntilNoTransientCallbacks();
await screenshot(driver, config, 'editor');
await screenshot(driver, config, '02 editor');
// then the projects page
SerializableFinder closeButton = find.byType("CloseButton");
@ -45,7 +45,7 @@ void main() {
SerializableFinder addProject = find.byValueKey("addProject");
await driver.waitFor(addProject);
await driver.waitUntilNoTransientCallbacks();
await screenshot(driver, config, 'projects');
await screenshot(driver, config, '03 projects');
// then the export page
SerializableFinder backButton = find.byType("BackButton");
@ -59,7 +59,7 @@ void main() {
SerializableFinder exportFAB = find.byValueKey("exportFAB");
await driver.waitFor(exportFAB);
await driver.waitUntilNoTransientCallbacks();
await screenshot(driver, config, 'export');
await screenshot(driver, config, '04 export');
// then the about page
await driver.waitFor(backButton);
@ -72,7 +72,7 @@ void main() {
SerializableFinder aboutPage = find.byValueKey("aboutPage");
await driver.waitFor(aboutPage);
await driver.waitUntilNoTransientCallbacks();
await screenshot(driver, config, 'about');
await screenshot(driver, config, '05 about');
}, timeout: Timeout(Duration(seconds: 30)));
});
}
}