Skip to content

Commit

Permalink
Add repositories to each build script
Browse files Browse the repository at this point in the history
  • Loading branch information
jayohms committed Sep 25, 2024
1 parent 7cc22c2 commit 1fa4ed9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ val developerEmail by extra("androidteam@basecamp.com")

val isSonatypeRelease by extra(project.hasProperty("sonatype"))

repositories {
google()
mavenCentral()
}

android {
namespace = "dev.hotwire.core"
compileSdk = 34
Expand Down
5 changes: 5 additions & 0 deletions navigation-fragments/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ val developerEmail by extra("androidteam@basecamp.com")

val isSonatypeRelease by extra(project.hasProperty("sonatype"))

repositories {
google()
mavenCentral()
}

android {
namespace = "dev.hotwire.navigation"
compileSdk = 34
Expand Down

0 comments on commit 1fa4ed9

Please sign in to comment.