CopyPastor

Detecting plagiarism made easy.

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

Possible Plagiarism

Plagiarized on 2019-02-04
by Farid Haq

Original Post

Original - Posted on 2017-10-27
by GenericJam



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

Change dependency declaration as follows
from
compile
to
implementation

Also check in our root gradle file contains jcenter and maven repo like as follows
buildscript { repositories { maven { url 'http://artifactory.raksdtd.com/artifactory/libs-release' }
jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.0.0' } }
To synchronize all of the answers here and elsewhere:
> buildscript { > repositories { > google() > jcenter() > } > dependencies { > classpath 'com.android.tools.build:gradle:3.0.0' > > } }
Make your buildscript in build.gradle look like this. It finds all of them between google and jcenter. Only one of them will not find all of the dependencies as of this answer.

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