Skip to content

Commit f7777a4

Browse files
committed
reverted sample apps to use project module dependencies
1 parent 2619d26 commit f7777a4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

cashier-sample-google-play-billing/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ android {
2020
}
2121

2222
dependencies {
23-
implementation "com.getkeepsafe.cashier:cashier:${getProperty("VERSION_NAME")}"
24-
implementation "com.getkeepsafe.cashier:cashier-google-play-billing:${getProperty("VERSION_NAME")}"
25-
implementation "com.getkeepsafe.cashier:cashier-google-play-billing-debug:${getProperty("VERSION_NAME")}"
23+
implementation project(':cashier')
24+
implementation project(':cashier-google-play-billing')
25+
implementation project(':cashier-google-play-billing-debug')
2626

2727
implementation 'androidx.recyclerview:recyclerview:1.1.0'
2828

cashier-sample-iab/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ android {
2020
}
2121

2222
dependencies {
23-
implementation "com.getkeepsafe.cashier:cashier:${getProperty("VERSION_NAME")}"
24-
implementation "com.getkeepsafe.cashier:cashier-iab:${getProperty("VERSION_NAME")}"
25-
debugImplementation "com.getkeepsafe.cashier:cashier-iab-debug:${getProperty("VERSION_NAME")}"
26-
releaseImplementation "com.getkeepsafe.cashier:cashier-iab-debug-no-op:${getProperty("VERSION_NAME")}"
23+
implementation project(':cashier')
24+
implementation project(':cashier-iab')
25+
debugImplementation project(':cashier-iab-debug')
26+
releaseImplementation project(':cashier-iab-debug-no-op')
2727

2828
implementation deps.appCompat
2929
}

0 commit comments

Comments
 (0)