Installing Firebase on Android Studio

4

I was watching a video about installing Firebase and it says to log in: File > Project Structure, and open this image window:

However,thenextstepistoclickCloud,butwhenIenterProjectStruture,thefollowingwindowappears,withouttheCloud:

Is there another place to setup this?

    
asked by anonymous 10.11.2016 / 00:24

2 answers

2

This video is old. In the same place where you use the libraries, paste:

    dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:24.2.1'
    compile 'com.android.support:design:24.2.1'
    compile 'com.android.support:support-v4:24.2.1'
    compile 'com.android.support:cardview-v7:24.2.1'
    compile 'com.android.support:recyclerview-v7:24.2.1'

    compile "com.google.firebase:firebase-database:9.4.0"// banco
    compile 'com.google.firebase:firebase-auth:9.4.0' // autenticador 
    compile 'com.google.firebase:firebase-storage:9.4.0' //arquivos

    testCompile 'junit:junit:4.12'

}

apply plugin: 'com.google.gms.google-services' // esse

Already another gradle, use:

    buildscript {
        repositories {
            jcenter()
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:2.2.2'
            classpath 'com.google.gms:google-services:3.0.0' // esse

        }
    }

Then just start using ...

    
10.11.2016 / 19:31
3

The Cloud tab (which contains a check box to add Firebase to a project) has been removed in Android Studio 2.2.

Android Studio 2.2 has a complete wizard to help you integrate Firebase. You can find it in Tools > Firebase.

Here is a link to help you add Firebase: QuickStart with Firebase

    
10.11.2016 / 00:34