-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Update espresso dependencies #7048
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
040fc6d
6177de8
d9b144d
ae0ba84
42aad27
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ android { | |
|
||
defaultConfig { | ||
minSdkVersion flutter.minSdkVersion | ||
targetSdkVersion 29 | ||
targetSdkVersion 34 | ||
versionCode flutterVersionCode.toInteger() | ||
versionName flutterVersionName | ||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||
|
@@ -62,28 +62,28 @@ dependencies { | |
implementation "androidx.multidex:multidex:2.0.1" | ||
|
||
// Core library | ||
api 'androidx.test:core:1.2.0' | ||
api 'androidx.test:core:1.6.1' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IIRC this is There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This value has not change in 5 years since the creation of this plugin. I will update this to have more obviously breaking version number once I get the tests passing. |
||
|
||
// AndroidJUnitRunner and JUnit Rules | ||
androidTestImplementation 'androidx.test:runner:1.2.0' | ||
androidTestImplementation 'androidx.test:rules:1.1.0' | ||
androidTestImplementation 'androidx.test:runner:1.6.1' | ||
androidTestImplementation 'androidx.test:rules:1.6.1' | ||
|
||
// Assertions | ||
androidTestImplementation 'androidx.test.ext:junit:1.0.0' | ||
androidTestImplementation 'androidx.test.ext:truth:1.0.0' | ||
androidTestImplementation 'androidx.test.ext:junit:1.2.1' | ||
androidTestImplementation 'androidx.test.ext:truth:1.6.0' | ||
androidTestImplementation 'com.google.truth:truth:1.1.3' | ||
|
||
// Espresso dependencies | ||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0' | ||
androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.1.0' | ||
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.1.0' | ||
androidTestImplementation 'androidx.test.espresso:espresso-accessibility:3.1.0' | ||
androidTestImplementation 'androidx.test.espresso:espresso-web:3.1.0' | ||
androidTestImplementation 'androidx.test.espresso.idling:idling-concurrent:3.1.0' | ||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1' | ||
androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.6.1' | ||
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.6.1' | ||
androidTestImplementation 'androidx.test.espresso:espresso-accessibility:3.6.1' | ||
androidTestImplementation 'androidx.test.espresso:espresso-web:3.6.1' | ||
androidTestImplementation 'androidx.test.espresso.idling:idling-concurrent:3.6.1' | ||
|
||
// The following Espresso dependency can be either "implementation" | ||
// or "androidTestImplementation", depending on whether you want the | ||
// dependency to appear on your APK's compile classpath or the test APK | ||
// classpath. | ||
androidTestImplementation 'androidx.test.espresso:espresso-idling-resource:3.1.0' | ||
androidTestImplementation 'androidx.test.espresso:espresso-idling-resource:3.6.1' | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am struggling to find the original documentation for this annotation. There is an identically named class in compose that is exposed but I think it is for compose related apis.
This annotation either is marking something experimental from us which we dont need anymore or it was required as an opt in feature and all the features have graduated.