Skip to content
This repository was archived by the owner on Jul 11, 2025. It is now read-only.

Commit b9cc95d

Browse files
committed
refactor(Dependency management): Remove redundant dependencies from build.gradle
- This commit refactors the build.gradle file for the ActivityEmbeddingWithPredictiveBack sample app by removing two duplicate dependencies. The redundant dependencies were causing potential conflicts and slowing down the build process. By removing these duplicates, the build process is now more efficient and the project's dependency management is improved. The scope of this change is limited to the build.gradle file, and the impact is primarily on the build process and dependency management. The commit message follows the conventional format of starting with a verb, indicating the type of change, and including a brief description of the change and its scope.
1 parent 45459b3 commit b9cc95d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

ActivityEmbeddingWithPredictiveBack/app/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,12 @@ dependencies {
7777
implementation 'androidx.compose.ui:ui-graphics'
7878
implementation 'androidx.compose.ui:ui-tooling-preview'
7979
implementation 'androidx.compose.material3:material3'
80-
implementation platform('androidx.compose:compose-bom:2022.10.00')
8180

8281
testImplementation 'junit:junit:4.13.2'
8382
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
8483
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
8584
androidTestImplementation platform('androidx.compose:compose-bom:2022.10.00')
8685
androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
87-
androidTestImplementation platform('androidx.compose:compose-bom:2022.10.00')
8886

8987
debugImplementation 'androidx.compose.ui:ui-tooling'
9088
debugImplementation 'androidx.compose.ui:ui-test-manifest'

0 commit comments

Comments
 (0)