-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathbuild.gradle
More file actions
48 lines (39 loc) · 1.33 KB
/
build.gradle
File metadata and controls
48 lines (39 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// Apply some additional properties for buildscript section
try { apply from: 'buildscript.additional.gradle', to: buildscript } catch (Exception ignored) { }
ext.apacheCommonsLang3Version = "3.5"
ext.apacheCommonsCollections4Version = "4.1"
ext.apacheCommonsIOVersion = "2.5"
ext.slf4jVersion = "1.7.7"
ext.jacksonVersion = "1.9.13"
ext.junitVersion = '4.12'
ext.appCompatVersion = '1.1.0'
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
version = [name: '2.8.0', code: 22000250]
project.ext {
javaVersion = JavaVersion.VERSION_1_8
targetSdkVersion = 34
minSdkVersion = 21
}
// Apply some additional logic on demand
try { apply from: 'additional.gradle' } catch (Exception ignored) { }
allprojects {
repositories {
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}