Last active
October 28, 2022 13:04
-
-
Save reberthkss/b3a93e74b809214cbc52be524c6541db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
... | |
} | |
android { | |
... | |
} | |
dependencies { | |
... | |
def camerax_version = "1.2.0-beta02" | |
def ml_kit_vision_face_detection_version = "17.1.0" | |
... | |
implementation "com.google.android.gms:play-services-mlkit-face-detection:${ml_kit_vision_face_detection_version} | |
... | |
implementation "androidx.camera:camera-core:${camerax_version}" | |
implementation "androidx.camera:camera-camera2:${camerax_version}" | |
implementation "androidx.camera:camera-lifecycle:${camerax_version}" | |
implementation "androidx.camera:camera-view:${camerax_version}" | |
implementation "androidx.camera:camera-mlkit-vision:${camerax_version}" | |
implementation "androidx.camera:camera-extensions:${camerax_version}" | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment