|
a |
|
b/Malaria-Detection-App/build.gradle |
|
|
1 |
// Top-level build file where you can add configuration options common to all sub-projects/modules. |
|
|
2 |
|
|
|
3 |
buildscript { |
|
|
4 |
apply from: 'dependency.gradle' |
|
|
5 |
ext.kotlin_version = '1.3.61' |
|
|
6 |
repositories { |
|
|
7 |
google() |
|
|
8 |
jcenter() |
|
|
9 |
maven { url "https://jitpack.io" } //Make sure to add this in your project for uCrop |
|
|
10 |
|
|
|
11 |
} |
|
|
12 |
dependencies { |
|
|
13 |
classpath 'com.android.tools.build:gradle:3.5.3' |
|
|
14 |
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" |
|
|
15 |
// NOTE: Do not place your application dependencies here; they belong |
|
|
16 |
// in the individual module build.gradle files |
|
|
17 |
} |
|
|
18 |
} |
|
|
19 |
|
|
|
20 |
allprojects { |
|
|
21 |
repositories { |
|
|
22 |
google() |
|
|
23 |
jcenter() |
|
|
24 |
|
|
|
25 |
} |
|
|
26 |
} |
|
|
27 |
|
|
|
28 |
task clean(type: Delete) { |
|
|
29 |
delete rootProject.buildDir |
|
|
30 |
} |