android - how to integrate Firebase in a delphi project? -


i want add firebase service (ie: invite) project. don't know how integrate firebase inside delphi project

in doc say

add sdk

first, add rules root-level build.gradle file, include google-services plugin:

buildscript {      // ...      dependencies {          // ...          classpath 'com.google.gms:google-services:3.0.0'      } } 

then, in module gradle file (usually app/build.gradle), add apply plugin line @ bottom of file enable gradle plugin:

apply plugin: 'com.android.application'  android {    // ... }  dependencies {    // ...    compile 'com.google.firebase:firebase-core:10.2.1'     // getting "could not find" error? make sure have    // latest google repository in android sdk manager }  // add @ bottom apply plugin: 'com.google.gms.google-services' 

any idea how delphi ?


Comments

Popular posts from this blog

inversion of control - Autofac named registration constructor injection -

verilog - Systemverilog dynamic casting issues -

ios - Change Storyboard View using Seague -