-
Notifications
You must be signed in to change notification settings - Fork 167
Update dependencies #908
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
Update dependencies #908
Changes from all commits
7d7ea70
3d42fc9
78194c8
f522afc
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 |
|---|---|---|
|
|
@@ -35,15 +35,15 @@ logger.lifecycle("Using version ${version} for ${name}") | |
|
|
||
| android { | ||
| namespace 'com.auth0.android.auth0' | ||
| compileSdk 35 | ||
| compileSdk 36 | ||
|
|
||
| buildFeatures { | ||
| buildConfig = true | ||
| } | ||
|
|
||
| defaultConfig { | ||
| minSdkVersion 21 | ||
| targetSdk 35 | ||
| targetSdk 36 | ||
| versionCode 1 | ||
| versionName project.version | ||
|
|
||
|
|
@@ -81,34 +81,34 @@ android { | |
|
|
||
| ext { | ||
| okhttpVersion = '4.12.0' | ||
|
Contributor
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. Okhttp can also be increased to version 5
Contributor
Author
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. OkHttp 5.0.0 is now stable (released July 2025, latest 5.3.2), but it has massive breaking changes: separate JVM/Android artifacts, MockWebServer moved to mockwebserver3 package with new coordinates, RecordedRequest.path renamed to .target, .body is now ByteString, MockResponse is immutable with a Builder, requires Okio 3.x, etc. This would touch virtually every test file.
Contributor
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. Create a ticket to track this
Contributor
Author
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. SDK-7768 |
||
| coroutinesVersion = '1.7.3' | ||
| coroutinesVersion = '1.10.2' | ||
| biometricLibraryVersion = '1.1.0' | ||
|
Contributor
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. Is there a new version available for
Contributor
Author
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. Biometric version(1.1.0) latest stable release (Jan 2021) |
||
| } | ||
|
|
||
|
|
||
| dependencies { | ||
| implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" | ||
| implementation 'androidx.core:core-ktx:1.6.0' | ||
| implementation 'androidx.appcompat:appcompat:1.6.0' | ||
| implementation 'androidx.browser:browser:1.4.0' | ||
| implementation 'androidx.core:core-ktx:1.15.0' | ||
| implementation 'androidx.appcompat:appcompat:1.7.0' | ||
| implementation 'androidx.browser:browser:1.9.0' | ||
| implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion" | ||
| implementation "com.squareup.okhttp3:okhttp:$okhttpVersion" | ||
|
|
||
| implementation "com.squareup.okhttp3:logging-interceptor:$okhttpVersion" | ||
| implementation 'com.google.code.gson:gson:2.8.9' | ||
| implementation 'com.google.androidbrowserhelper:androidbrowserhelper:2.4.0' | ||
| implementation 'com.google.code.gson:gson:2.11.0' | ||
| implementation 'com.google.androidbrowserhelper:androidbrowserhelper:2.5.0' | ||
|
|
||
| implementation "androidx.biometric:biometric:$biometricLibraryVersion" | ||
|
|
||
| testImplementation 'junit:junit:4.13.2' | ||
| testImplementation 'org.hamcrest:java-hamcrest:2.0.0.0' | ||
| testImplementation 'org.mockito:mockito-core:5.7.0' | ||
| testImplementation 'org.mockito.kotlin:mockito-kotlin:5.1.0' | ||
| testImplementation 'org.mockito:mockito-core:5.14.0' | ||
| testImplementation 'org.mockito.kotlin:mockito-kotlin:5.4.0' | ||
| testImplementation "com.squareup.okhttp3:mockwebserver:$okhttpVersion" | ||
| testImplementation "com.squareup.okhttp3:okhttp-tls:$okhttpVersion" | ||
| testImplementation 'com.jayway.awaitility:awaitility:1.7.0' | ||
|
Contributor
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. Check where is this used
Contributor
Author
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. Awaitility removal ❌ Cannot remove CallbackMatcher.java |
||
| testImplementation 'org.robolectric:robolectric:4.14.1' | ||
| testImplementation 'androidx.test.espresso:espresso-intents:3.5.1' | ||
| testImplementation 'org.robolectric:robolectric:4.15.1' | ||
| testImplementation 'androidx.test.espresso:espresso-intents:3.6.1' | ||
| testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesVersion" | ||
|
|
||
| testImplementation "androidx.biometric:biometric:$biometricLibraryVersion" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists |
Uh oh!
There was an error while loading. Please reload this page.
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.
You can also add suggestion to ignore the Gson from the SDK. Add code snippet for the same
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.
done