CopyPastor

Detecting plagiarism made easy.

Score: 0.8629064014260198; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2022-09-22
by Mansoor Malik

Original Post

Original - Posted on 2016-10-25
by Myth



            
Present in both answers; Present only in the new answer; Present only in the old answer;

Apply this in `build.gradle(Project: your project name)` where `tools.build:gradle` is present and not in `build.gradle(Module: app)`
buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.1.2' } }
Apply this in build.gradle(Project: your project name) where tools.build:gradle is present and not in build.gradle(Module: app)
buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.1.2' classpath 'com.google.gms:google-services:3.0.0' } }

In build.gradle(Module: app) outside dependencies add this:
apply plugin: 'com.google.gms.google-services'

        
Present in both answers; Present only in the new answer; Present only in the old answer;