mediapipe_face_detection_aar_example icon indicating copy to clipboard operation
mediapipe_face_detection_aar_example copied to clipboard

how to remove duplicated Gradle dependencies

Open brucechou1983 opened this issue 4 years ago • 1 comments

Some external dependencies of MediaPipe are defined here.

Also, they are defined here. It seems to me that the required libraries are included in the AAR.

I tried to remove the dependencies in build.gradle but it complained about missing libraries. Is there anyway to get rid of these dependencies in Gradle?

brucechou1983 avatar Aug 26 '21 10:08 brucechou1983

Try using runtimeOnly instead of implementation in build.gradle for the dependencies.

cvb941 avatar Jun 25 '22 16:06 cvb941