Skip to content

Commit de35ba0

Browse files
authored
Update FTL default device to pixel7 api 33 (#5289)
1 parent b76de4f commit de35ba0

File tree

5 files changed

+8
-12
lines changed

5 files changed

+8
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ https://firebase.google.com.
6565
* Import the firebase-android-sdk gradle project into Android Studio using the
6666
**Import project(Gradle, Eclipse ADT, etc.)** option.
6767
* `firebase-crashlytics-ndk` must be built with NDK 21. See
68-
[firebase-crashlytics-ndk](firebase-crashlytics-ndk/README.md) for more
68+
[firebase-crashlytics-ndk](firebase-crashlytics-ndk/README.md) for more
6969
details.
7070

7171
## Testing
@@ -143,7 +143,7 @@ Integration tests can be executed on the command line by running
143143
```
144144

145145
This will execute tests on devices that are configured per project, if nothing is configured for the
146-
project, the tests will run on `model=Pixel2,version=27,locale=en,orientation=portrait`.
146+
project, the tests will run on `model=panther,version=33,locale=en,orientation=portrait`.
147147

148148
Projects can be configured in the following way:
149149

buildSrc/src/main/java/com/google/firebase/gradle/plugins/ci/device/FirebaseTestLabExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public void timeout(String timeout) {
4949

5050
Set<String> getDevices() {
5151
if (devices.get().isEmpty()) {
52-
return Collections.singleton("model=Pixel2,version=27,locale=en,orientation=portrait");
52+
return Collections.singleton("model=panther,version=33,locale=en,orientation=portrait");
5353
}
5454
return devices.get();
5555
}

firebase-config/bandwagoner/bandwagoner.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ android {
5959
}
6060

6161
firebaseTestLab {
62-
device 'model=Pixel2,version=28,locale=en,orientation=portrait'
62+
device 'model=panther,version=33,locale=en,orientation=portrait'
6363
}
6464

6565
dependencies {

firebase-crashlytics/firebase-crashlytics.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ firebaseLibrary {
2121
libraryGroup "crashlytics"
2222
testLab {
2323
enabled = true
24-
device 'model=redfin,version=30'
24+
device 'model=panther,version=33'
2525
}
2626
}
2727

transport/transport-runtime/transport-runtime.gradle

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,9 @@ firebaseLibrary {
5454
testLab {
5555
enabled = true
5656

57-
device 'model=blueline,version=28' // Pixel3
58-
device 'model=walleye,version=27' // Pixel2
59-
device 'model=Nexus4,version=22'
60-
device 'model=Nexus7,version=21'
61-
device 'model=Nexus4,version=19'
62-
device 'model=starqlteue,version=26' // Galaxy S9
63-
device 'model=harpia,version=23' // Moto G Play
57+
device 'model=panther,version=33' // Pixel7
58+
device 'model=redfin,version=30' // Pixel5
59+
device 'model=x1q,version=29'
6460
}
6561
}
6662

0 commit comments

Comments
 (0)