2020-07-23 09:09:36 +00:00
|
|
|
/*
|
2021-03-09 09:15:27 +00:00
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
2020-07-23 09:09:36 +00:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
*/
|
2022-02-17 02:36:22 +00:00
|
|
|
@file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage")
|
2021-12-03 06:54:32 +00:00
|
|
|
|
2022-02-21 12:52:48 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
maven("https://storage.googleapis.com/r8-releases/raw") {
|
|
|
|
name = "R8 dev releases"
|
|
|
|
content { includeModule("com.android.tools", "r8") }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencies { classpath(libs.build.r8) }
|
|
|
|
}
|
|
|
|
|
2020-07-23 09:09:36 +00:00
|
|
|
plugins {
|
2021-11-28 20:57:21 +00:00
|
|
|
id("com.github.android-password-store.kotlin-common")
|
2021-11-15 05:48:29 +00:00
|
|
|
id("com.github.android-password-store.binary-compatibility")
|
|
|
|
id("com.github.android-password-store.git-hooks")
|
2021-11-09 16:03:59 +00:00
|
|
|
id("com.github.android-password-store.spotless")
|
2022-02-17 02:36:22 +00:00
|
|
|
alias(libs.plugins.hilt) apply false
|
2020-07-23 09:09:36 +00:00
|
|
|
}
|