-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
40 lines (36 loc) · 1.28 KB
/
build.gradle.kts
File metadata and controls
40 lines (36 loc) · 1.28 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
/*
* Copyright (c) 2022 Proton Technologies AG
* This file is part of Proton Technologies AG and Proton Mail.
*
* Proton Mail is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Proton Mail is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Proton Mail. If not, see <https://www.gnu.org/licenses/>.
*/
plugins {
id("com.android.library")
kotlin("android")
id("app-config-plugin")
}
android {
namespace = "ch.protonmail.android.mailattachments"
compileSdk = AppConfiguration.compileSdk.get()
defaultConfig {
minSdk = AppConfiguration.minSdk.get()
lint.targetSdk = AppConfiguration.targetSdk.get()
}
}
dependencies {
api(project(":mail-attachments:dagger"))
api(project(":mail-attachments:data"))
api(project(":mail-attachments:domain"))
api(project(":mail-attachments:presentation"))
}