|
|
|
@ -2,7 +2,6 @@ buildscript { |
|
|
|
|
repositories { |
|
|
|
|
// don't add anything here until you read to the bottom of this bracket |
|
|
|
|
google() |
|
|
|
|
jcenter() |
|
|
|
|
mavenCentral() |
|
|
|
|
maven { url 'https://jitpack.io' } |
|
|
|
|
// WARNING WARNING WARNING |
|
|
|
@ -27,7 +26,6 @@ buildscript { |
|
|
|
|
allprojects { |
|
|
|
|
repositories { |
|
|
|
|
google() |
|
|
|
|
jcenter() |
|
|
|
|
mavenCentral() |
|
|
|
|
maven { url 'https://jitpack.io' } |
|
|
|
|
// WARNING WARNING WARNING |
|
|
|
@ -35,13 +33,13 @@ allprojects { |
|
|
|
|
// don't do that. add that repository to app/build.gradle |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
configurations.all { |
|
|
|
|
configurations.configureEach { |
|
|
|
|
resolutionStrategy { |
|
|
|
|
force 'com.google.firebase:firebase-analytics:16.5.0' |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
tasks.withType(Test) { |
|
|
|
|
tasks.withType(Test).configureEach { |
|
|
|
|
maxParallelForks = 2 |
|
|
|
|
forkEvery = 80 |
|
|
|
|
maxHeapSize = "2048m" |
|
|
|
@ -49,6 +47,10 @@ allprojects { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
task clean(type: Delete) { |
|
|
|
|
tasks.register("clean") { |
|
|
|
|
delete rootProject.buildDir |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//task clean(type: Delete) { |
|
|
|
|
// delete rootProject.buildDir |
|
|
|
|
//} |
|
|
|
|