Upgrade to Pro — share decks privately, control downloads, hide ads and more …

What's new in Cloud Firestore and MLKit

d_date
February 06, 2019

What's new in Cloud Firestore and MLKit

2019/02/06 FJUG #10

d_date

February 06, 2019
Tweet

More Decks by d_date

Other Decks in Programming

Transcript

  1. What’s new in FJUG #10 Google Developers Experts for Firebase

    Daiki Matsudate @d_date iOS Developer at FOLIO Co, Ltd.
  2. Updates • New locations • SLA • Lower pricing tier

    (coming soon: March 3, 2019) • Usage tracking by StackDriver
  3. Sevice Level Agreement: SLA • 99.999% — for multi-region (us-central,

    europe- west) • 99.99% — for regional (e.g. asia-northeast-1)
  4. On-device On-Cloud (Cloud Vision API) ྉۚ ແྉ $1.50/K (BlazeͷΈ) ςΩετೝࣝʢOCRʣ

    ̋ (LatinจࣈͷΈ) ˕ إೝࣝ ̋ - όʔίʔυεΩϟϯ ̋ - ը૾ϥϕϦϯά ̋ ˕ ϥϯυϚʔΫݕग़ ̋ ΧελϜϞσϧ ̋ -
  5. lazy var languageId = NaturalLanguage.naturalLanguage().languageIdentification() languageId.identifyLanguage(for: inputTextView.text) { (languageCode, error)

    in if let error = error { self.outputTextView.text = "Failed with error: \(error)" return } if let languageCode = languageCode { self.outputTextView.text = "Identified Language: \(languageCode)" } else { self.outputTextView.text = "No language was identified" } } }