Home:ALL Converter>use of libraries in android studio

use of libraries in android studio

Ask Time:2017-09-07T16:25:05         Author:lewis dylan Nkuranga

Json Formatter

com.google.firebase:firebase-core:11.2.2
com.google.firebase:firebase-database:11.2.2
com.google.firebase:firebase-storage:11.2.2

these libraries cannot seem to work,and i can't use providers such as google,Facebook,twitter to login in my android project. I've tried to updated the android studio and now i'm using android studio 2.3.3 and i'm using:

    app:




compileSdkVersion 26
    buildToolsVersion "26.0.1"

 minSdkVersion 16
        targetSdkVersion 26
        versionCode 1




 project:

    buildscript {
        repositories {
            jcenter()
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:2.3.3'

            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
            classpath 'com.google.gms:google-services:3.1.0'
        }
    }

    allprojects {
        repositories {
            jcenter()
        }
    }

    task clean(type: Delete) {
        delete rootProject.buildDir
    }

Author:lewis dylan Nkuranga,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/46091461/use-of-libraries-in-android-studio
yy