Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to maven version in sample app #244

Merged
merged 2 commits into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ androidxAppcompat = { module = "androidx.appcompat:appcompat", version.ref = "ap
androidxCoreKtx = { module = "androidx.core:core-ktx", version.ref = "core_ktx" }
androidxLifecycleRuntimeKtx = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "androidx_lifecycle" }

afterpay-android = "com.afterpay:afterpay-android:4.3.0"
afterpay-android = "com.afterpay:afterpay-android:4.7.0"
app-cash-paykit = "app.cash.paykit:core:2.3.0"
junit = { module = "junit:junit", version.ref = "junit" }
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ android {

dependencies {
// toggle between using Maven artifact and local module
implementation(projects.afterpay)
// implementation(libs.afterpay.android)
// implementation(projects.afterpay)
implementation(libs.afterpay.android)

implementation(libs.app.cash.paykit)

Expand Down
Loading