🦋
Gunlukler
  • Gunlukler
  • 📅21 Jan
  • 📅22 Jan
  • 📅7 Feb
    • 🔗Linking App to MLKit
  • 📅20 Feb
  • 📅1 Mar
  • 📅22 Mar
  • 📅19 Apr
  • 📅20 Apr
    • 🔒BAG sunumu
  • 🌸Bahar
  • 💬NLP
    • 🙌🏻 Handling texts
  • 📚Coursera
Powered by GitBook
On this page
  • 🔥 Firebase side
  • 📱 Android app side

Was this helpful?

  1. 7 Feb

Linking App to MLKit

Previous22 JanNext20 Feb

Last updated 5 years ago

Was this helpful?

🔥 Firebase side

  1. Create new project from

  2. Click Android icon from console

  3. Enter your package name

  4. Download config file google-services.json

📱 Android app side

  1. Move google-services.jsoninto the module (app-level) directory of your app

  2. Add firebase sdk to your app gradle

    1. Project-level build.gradle (<project>/build.gradle):

      • classpath 'com.google.gms:googleservices:4.3.3'

    2. App-level build.gradle (<project>/<app-module>/build.gradle):

      • implementation 'com.google.firebase:firebase-ml-vision-face-model:19.0.0'

  3. Run your app to verify installation

  4. Configure your app to automatically download the ML model to the device after your app is installed from the Play Store. To do that add the following lines to AndroidManifest.xml under application tag (optional):

<meta-data
      android:name="com.google.firebase.ml.vision.DEPENDENCIES"
      android:value="face" />

For other firebase libraries

📅
🔗
FireBase Console
👀