Skip to content

Commit cf730b0

Browse files
committed
Use the 'api' dependency declarations instead of 'implementation'
1 parent 88951e7 commit cf730b0

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

mediapicker/build.gradle

+14-14
Original file line numberDiff line numberDiff line change
@@ -34,27 +34,27 @@ android {
3434
dependencies {
3535
api mediaPickerDomainDependency
3636

37-
implementation "com.google.android.material:material:$googleMaterialVersion"
37+
api "com.google.android.material:material:$googleMaterialVersion"
3838

39-
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinxCoroutinesVersion"
39+
api "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinxCoroutinesVersion"
4040

41-
implementation "androidx.navigation:navigation-fragment-ktx:$androidxNavigationVersion"
42-
implementation "androidx.core:core-ktx:$androidxCoreVersion"
43-
implementation "androidx.appcompat:appcompat:$androidxAppcompatVersion"
44-
implementation "androidx.constraintlayout:constraintlayout:$androidxConstraintlayoutVersion"
45-
implementation "androidx.swiperefreshlayout:swiperefreshlayout:$androidxSwipeToRefreshVersion"
46-
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$androidxLifecycleVersion"
47-
implementation "androidx.datastore:datastore-preferences:$androidxDatastoreVersion"
41+
api "androidx.navigation:navigation-fragment-ktx:$androidxNavigationVersion"
42+
api "androidx.core:core-ktx:$androidxCoreVersion"
43+
api "androidx.appcompat:appcompat:$androidxAppcompatVersion"
44+
api "androidx.constraintlayout:constraintlayout:$androidxConstraintlayoutVersion"
45+
api "androidx.swiperefreshlayout:swiperefreshlayout:$androidxSwipeToRefreshVersion"
46+
api "androidx.lifecycle:lifecycle-viewmodel-ktx:$androidxLifecycleVersion"
47+
api "androidx.datastore:datastore-preferences:$androidxDatastoreVersion"
4848

49-
implementation "com.github.bumptech.glide:glide:$glideVersion"
49+
api "com.github.bumptech.glide:glide:$glideVersion"
5050

51-
implementation "com.google.dagger:hilt-android:$gradle.ext.daggerVersion"
52-
implementation "com.google.dagger:hilt-android-compiler:$gradle.ext.daggerVersion"
51+
api "com.google.dagger:hilt-android:$gradle.ext.daggerVersion"
52+
api "com.google.dagger:hilt-android-compiler:$gradle.ext.daggerVersion"
5353
kapt "com.google.dagger:hilt-compiler:$gradle.ext.daggerVersion"
5454

55-
implementation "com.github.chrisbanes:PhotoView:$chrisbanesPhotoviewVersion"
55+
api "com.github.chrisbanes:PhotoView:$chrisbanesPhotoviewVersion"
5656

57-
implementation "org.wordpress:utils:$wordpressUtilsVersion"
57+
api "org.wordpress:utils:$wordpressUtilsVersion"
5858

5959
lintChecks "org.wordpress:lint:$wordpressLintVersion"
6060
}

0 commit comments

Comments
 (0)