Skip to content

Commit

Permalink
Use google identity only in android source set
Browse files Browse the repository at this point in the history
  • Loading branch information
ashdavies committed Jul 14, 2024
1 parent 5badc72 commit 37648c9
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions identity-manager/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,18 @@ buildConfig {
}

kotlin {
sourceSets.commonMain.dependencies {
implementation(projects.platformSupport)
implementation(projects.sqlCommon)
sourceSets {
commonMain.dependencies {
implementation(projects.platformSupport)
implementation(projects.sqlCommon)

implementation(libs.androidx.credentials.auth)
implementation(libs.google.android.identity)
implementation(libs.kotlinx.coroutines.core)
implementation(libs.androidx.credentials.auth)
implementation(libs.kotlinx.coroutines.core)
}

androidMain.dependencies {
implementation(libs.google.android.identity)
}
}
}

Expand Down

0 comments on commit 37648c9

Please sign in to comment.