Skip to content

Commit 46cc570

Browse files
fix: dart format
1 parent c7edf00 commit 46cc570

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

.circleci/config.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ commands:
6363
steps:
6464
- run:
6565
name: remove Patrol
66-
command: dart pub remove patrol
66+
command: cd example && dart pub remove patrol
6767
- run:
6868
name: Install Flutter Packages
6969
command: flutter pub get --verbose
@@ -113,7 +113,11 @@ jobs:
113113
generate_pigeons: true
114114
remove_patrol: true
115115
version: <<parameters.version>>
116-
116+
- run:
117+
name: Install lcov
118+
command: |
119+
sudo apt-get update
120+
sudo apt-get install -y lcov
117121
- run: flutter test --coverage
118122
- run:
119123
working_directory: coverage
@@ -149,7 +153,7 @@ jobs:
149153
additional-avd-args: --device 3
150154
system-image: system-images;android-33;default;x86_64
151155
post-emulator-launch-assemble-command: ''
152-
test-command: patrol test -t integration_test/ --verbose
156+
test-command: patrol test -t integration_test/
153157

154158
test_ios:
155159
macos:
@@ -189,7 +193,7 @@ jobs:
189193
name: Run E2E Tests
190194
no_output_timeout: 30m
191195
working_directory: example
192-
command: patrol test -t integration_test/ --verbose
196+
command: patrol test -t integration_test/
193197
format_flutter:
194198
executor:
195199
name: android/android-machine

example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
android {
99
namespace = "com.instabug.flutter.example"
10-
compileSdk = flutter.compileSdkVersion
10+
compileSdk = 35
1111
ndkVersion = flutter.ndkVersion
1212

1313
compileOptions {
@@ -26,7 +26,7 @@ android {
2626
defaultConfig {
2727
applicationId "com.instabug.flutter.example"
2828
minSdkVersion 21
29-
targetSdkVersion 34
29+
targetSdkVersion 35
3030
versionCode flutter.versionCode
3131
versionName flutter.versionName
3232
multiDexEnabled true

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,8 @@
335335
LastSwiftMigration = 1100;
336336
};
337337
BE0EAED82E32DC4A006C9C24 = {
338-
CreatedOnToolsVersion = 7.3.1;
338+
CreatedOnToolsVersion = 12.3;
339+
LastSwiftMigration = 1340;
339340
TestTargetID = 97C146ED1CF9000F007C117D;
340341
};
341342
C090017825D9A030006F3DAE = {
@@ -1125,7 +1126,6 @@
11251126
defaultConfigurationIsVisible = 0;
11261127
defaultConfigurationName = Release;
11271128
};
1128-
11291129
BE0EAEE42E32DC4A006C9C24 /* Build configuration list for PBXNativeTarget "RunnerUITests" */ = {
11301130
isa = XCConfigurationList;
11311131
buildConfigurations = (
@@ -1136,7 +1136,6 @@
11361136
defaultConfigurationIsVisible = 0;
11371137
defaultConfigurationName = Release;
11381138
};
1139-
11401139
C090018325D9A031006F3DAE /* Build configuration list for PBXNativeTarget "InstabugTests" */ = {
11411140
isa = XCConfigurationList;
11421141
buildConfigurations = (

0 commit comments

Comments
 (0)