protoncore_android/auth/build.gradle.kts

37 lines
1.0 KiB
Plaintext
Raw Normal View History

2020-10-14 10:32:54 +00:00
/*
2021-04-30 07:38:28 +00:00
* Copyright (c) 2021 Proton Technologies AG
2020-10-14 10:32:54 +00:00
* This file is part of Proton Technologies AG and ProtonCore.
*
* ProtonCore 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.
*
* ProtonCore 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 ProtonCore. If not, see <https://www.gnu.org/licenses/>.
*/
2020-08-17 15:07:20 +00:00
import studio.forface.easygradle.dsl.*
plugins {
2020-10-15 12:25:49 +00:00
id("com.android.library")
kotlin("android")
}
libVersion = Version(1, 18, 0)
2021-04-30 07:38:28 +00:00
android()
dependencies {
2020-08-17 15:07:20 +00:00
api(
project(Module.authPresentation),
project(Module.authDomain),
project(Module.authData)
)
}