Skip to content

Commit

Permalink
More dependency management
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanegolem committed May 6, 2024
1 parent ef6a299 commit 38a1b25
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 0 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,4 @@ dependencies {
debugImplementation("androidx.compose.ui:ui-test-manifest")

implementation(project(":lycoris"))

// Material Icons
implementation("androidx.compose.material:material-icons-extended")
}
10 changes: 7 additions & 3 deletions lycoris/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ android {

dependencies {

implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.10.0")
implementation("com.google.android.material:material:1.12.0")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")

implementation(platform("androidx.compose:compose-bom:2023.10.01"))
implementation(platform("androidx.compose:compose-bom:2024.05.00"))
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-graphics")
implementation("androidx.compose.material3:material3")
Expand All @@ -67,6 +67,10 @@ dependencies {
// Retrofit 2
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.squareup.okhttp3:okhttp:4.11.0")


// Material Icons
implementation("androidx.compose.material:material-icons-extended")
}

publishing {
Expand Down

0 comments on commit 38a1b25

Please sign in to comment.