Skip to content

Commit

Permalink
fix: fix Secrets Gradle plugin is applied before dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
charliemangano committed Nov 9, 2024
1 parent ca57602 commit ffd91d7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@ plugins {
id("com.google.android.libraries.mapsplatform.secrets-gradle-plugin")
}

secrets {
propertiesFileName = "apikeys.properties"
defaultPropertiesFileName = "apikeys.defaults.properties"
}

android {
namespace = "com.android.periodpals"
compileSdk = 34
Expand Down Expand Up @@ -253,6 +248,11 @@ dependencies {
implementation("androidx.compose.material3:material3-window-size-class:1.3.0")
}

secrets {
propertiesFileName = "apikeys.properties"
defaultPropertiesFileName = "apikeys.defaults.properties"
}

tasks.withType<Test> {
// Configure Jacoco for each tests
configure<JacocoTaskExtension> {
Expand Down

0 comments on commit ffd91d7

Please sign in to comment.