-
Notifications
You must be signed in to change notification settings - Fork 392
Bump all dependencies. Fix User Switcher screen. #2757
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 1 commit
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 | ||
|---|---|---|---|---|
|
|
@@ -11,22 +11,22 @@ plugins { | |||
| } | ||||
|
|
||||
| dependencies { | ||||
| val composeVersion = "1.8.2" | ||||
| val composeVersion = "1.8.2" // Update requires Kotlin 2. | ||||
| val livecycleVersion = "2.8.7" // Update requires Kotlin 2. | ||||
| val androidXActivityVersion = "1.10.1" | ||||
|
|
||||
| api(project(":libs:SalesforceAnalytics")) | ||||
| api("com.squareup.okhttp3:okhttp:4.12.0") | ||||
| api("com.google.firebase:firebase-messaging:24.1.1") | ||||
| api("androidx.core:core:1.16.0") | ||||
| api("androidx.browser:browser:1.8.0") | ||||
| api("androidx.work:work-runtime-ktx:2.10.1") | ||||
| api("com.google.firebase:firebase-messaging:25.0.0") | ||||
| api("androidx.core:core:1.17.0") | ||||
| api("androidx.browser:browser:1.9.0") | ||||
| api("androidx.work:work-runtime-ktx:2.10.3") | ||||
|
|
||||
| implementation("com.google.android.material:material:1.12.0") // remove this when all xml is gone | ||||
| implementation("com.google.android.material:material:1.13.0") // remove this when all xml is gone | ||||
| implementation("androidx.appcompat:appcompat:1.7.1") | ||||
| implementation("androidx.biometric:biometric:1.2.0-alpha05") | ||||
| implementation("androidx.lifecycle:lifecycle-extensions:2.2.0") | ||||
| implementation("androidx.core:core-ktx:1.16.0") | ||||
| implementation("androidx.core:core-ktx:1.17.0") | ||||
| implementation("androidx.activity:activity-ktx:$androidXActivityVersion") | ||||
| implementation("androidx.activity:activity-compose:$androidXActivityVersion") | ||||
| implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:$livecycleVersion") | ||||
|
|
@@ -37,7 +37,7 @@ dependencies { | |||
| implementation("androidx.window:window:1.4.0") | ||||
| implementation("androidx.window:window-core:1.4.0") | ||||
| implementation("androidx.compose.material3:material3-android:1.3.2") | ||||
| implementation(platform("androidx.compose:compose-bom:2025.06.00")) | ||||
| implementation(platform("androidx.compose:compose-bom:2025.07.00")) // Update requires Kotlin 2. | ||||
|
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.
|
||||
| implementation("androidx.compose.foundation:foundation-android:$composeVersion") | ||||
|
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.
|
||||
| implementation("androidx.compose.runtime:runtime-livedata:$composeVersion") | ||||
|
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.
|
||||
| implementation("androidx.compose.ui:ui-tooling-preview-android:$composeVersion") | ||||
|
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.
|
||||
|
|
@@ -46,18 +46,19 @@ dependencies { | |||
| debugImplementation("androidx.compose.ui:ui-tooling:$composeVersion") | ||||
|
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.
|
||||
| debugImplementation("androidx.compose.ui:ui-test-manifest:$composeVersion") | ||||
|
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.
|
||||
|
|
||||
| androidTestImplementation("androidx.test:runner:1.6.2") | ||||
| androidTestImplementation("androidx.test:rules:1.6.1") | ||||
| androidTestImplementation("androidx.test.ext:junit:1.2.1") | ||||
| androidTestImplementation("androidx.test:runner:1.7.0") | ||||
| androidTestImplementation("androidx.test:rules:1.7.0") | ||||
| androidTestImplementation("androidx.test.ext:junit:1.3.0") | ||||
| androidTestImplementation("androidx.arch.core:core-testing:2.2.0") | ||||
| androidTestImplementation("androidx.compose.ui:ui-test-junit4:$composeVersion") | ||||
|
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.
|
||||
| androidTestImplementation("io.mockk:mockk-android:1.14.0") | ||||
| androidTestImplementation("io.mockk:mockk-android:1.14.5") | ||||
| } | ||||
|
|
||||
| android { | ||||
| namespace = "com.salesforce.androidsdk" | ||||
| testNamespace = "com.salesforce.androidsdk.tests" | ||||
|
|
||||
| //noinspection GradleDependency - Will be upgraded to 36 in Mobile SDK 14.0 | ||||
| compileSdk = 35 | ||||
|
|
||||
| defaultConfig { | ||||
|
|
||||
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.