Android-Password-Store/build.gradle.kts

24 lines
703 B
Text
Raw Normal View History

2020-07-23 09:09:36 +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
*/
@file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage")
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")
id("com.github.android-password-store.binary-compatibility")
id("com.github.android-password-store.git-hooks")
id("com.github.android-password-store.spotless")
alias(libs.plugins.hilt) apply false
2020-07-23 09:09:36 +00:00
}