forked from Etar-Group/Etar-Calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (42 loc) · 1.36 KB
/
build.gradle
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
plugins {
id 'com.android.application' version '8.0.0' apply false
id 'com.android.library' version '8.0.0' apply false
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
id 'org.ec4j.editorconfig' version "0.0.3" apply false
id "org.jetbrains.gradle.plugin.idea-ext" version "1.1.5" apply true
}
// External project configuration start
// Configure and automatically generate AAR of the below mentioned external
// projects using a custom task in order to let Android Studio work properly.
// MUST BE RUN MANUALLY ON CLI COMPILATION
def external_projects = [
project(':external:calendar'),
project(':external:chips'),
project(':external:colorpicker'),
project(':external:timezonepicker')
]
configure(external_projects) {
apply {
from '../configuration/common.gradle'
}
}
task aarGen {
description "Generates AAR from the external projects for Etar-Calendar"
def aarTasks = [
':external:calendar:copyAAR',
':external:chips:copyAAR',
':external:colorpicker:copyAAR',
':external:timezonepicker:copyAAR'
]
dependsOn aarTasks
}
idea.project.settings {
taskTriggers {
afterSync tasks.getByName('aarGen')
}
}
// External project configuration end
task clean(type: Delete) {
delete rootProject.buildDir
delete 'app/libs'
}