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
| implementation 'com.google.firebase:firebase-ml-vision:18.0.1' | |
| implementation 'com.google.firebase:firebase-ml-vision-face-model:17.0.2' | |
| <meta-data | |
| android:name="com.google.firebase.ml.vision.DEPENDENCIES" | |
| android:value="face" /> | |
| // To initialise the detector |
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
| implementation 'com.google.android.gms:play-services-auth:17.0.0' | |
| implementation 'com.google.firebase:firebase-auth:19.2.0' | |
| <uses-permission android:name="android.permission.INTERNET"/> | |
| private FirebaseAuth mAuth; | |
| mAuth = FirebaseAuth.getInstance(); |
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
| implementation 'com.google.android.gms:play-services-auth:17.0.0' | |
| implementation 'com.google.firebase:firebase-auth:19.2.0' | |
| <uses-permission android:name="android.permission.INTERNET"/> | |
| // Initialize Firebase Auth | |
| FirebaseAuth mAuth; |
OlderNewer