Skip to content

Commit f67d2be

Browse files
author
Lawrence Nahum
committed
use implementation rather than api for things we don't expose as part of an interface
1 parent 15f7547 commit f67d2be

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

app/build.gradle

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -104,28 +104,28 @@ afterEvaluate {
104104
}
105105

106106
configurations {
107-
api.exclude group: "org.json", module: "json"
107+
implementation.exclude group: "org.json", module: "json"
108108
}
109109

110110
dependencies {
111-
api project(':bitcoinj:core')
111+
implementation project(':bitcoinj:core')
112112

113-
api 'com.android.support:support-v4:28.0.0'
113+
implementation 'com.android.support:support-v4:28.0.0'
114114
// force material-dialogs to use latest support libs
115-
api 'com.android.support:support-v13:28.0.0'
116-
api 'com.android.support:support-annotations:28.0.0'
117-
api 'com.android.support:appcompat-v7:28.0.0'
118-
api 'com.android.support:design:28.0.0'
119-
api 'com.android.support:recyclerview-v7:28.0.0'
120-
api 'com.android.support:gridlayout-v7:28.0.0'
121-
api 'com.android.support:cardview-v7:28.0.0'
122-
api 'com.takisoft.fix:preference-v7:28.0.0.0'
123-
api 'com.android.support.constraint:constraint-layout:1.1.3'
124-
api 'com.android.support:multidex:1.0.3'
115+
implementation 'com.android.support:support-v13:28.0.0'
116+
implementation 'com.android.support:support-annotations:28.0.0'
117+
implementation 'com.android.support:appcompat-v7:28.0.0'
118+
implementation 'com.android.support:design:28.0.0'
119+
implementation 'com.android.support:recyclerview-v7:28.0.0'
120+
implementation 'com.android.support:gridlayout-v7:28.0.0'
121+
implementation 'com.android.support:cardview-v7:28.0.0'
122+
implementation 'com.takisoft.fix:preference-v7:28.0.0.0'
123+
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
124+
implementation 'com.android.support:multidex:1.0.3'
125125

126-
api 'com.google.zxing:core:3.3.2'
127-
api 'com.afollestad.material-dialogs:core:0.9.6.0'
128-
api 'com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.9.6'
126+
implementation 'com.google.zxing:core:3.3.2'
127+
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
128+
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.9.6'
129129

130130
// used to redirect bitcoinj logging to android in debug builds, enable manually
131131
// debugApi 'com.noveogroup.android:android-logger:1.3.6'

0 commit comments

Comments
 (0)