buildSrc/build.gradle.kts
author Da Risk <da_risk@geekorum.com>
Fri, 08 Jul 2022 10:38:32 -0400
changeset 891 09241d3fb2da
parent 883 1cd5e63f231c
child 895 4419dced6b92
permissions -rw-r--r--
build: update to AGP 7.2.1

/*
 * Geekttrss is a RSS feed reader application on the Android Platform.
 *
 * Copyright (C) 2017-2022 by Frederic-Charles Barthelery.
 *
 * This file is part of Geekttrss.
 *
 * Geekttrss 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.
 *
 * Geekttrss 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 Geekttrss.  If not, see <http://www.gnu.org/licenses/>.
 */
plugins {
    `kotlin-dsl`
}

version = "1.0"

repositories {
    gradlePluginPortal()
    google()
}

dependencies {
    implementation("com.android.tools.build:gradle:7.2.1")
    implementation("gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.16.1")
    implementation("com.github.triplet.gradle:play-publisher:3.7.0")
    implementation("com.geekorum.gradle.avdl:flydroid:0.0.3")
    // need to be added to work with compose  https://issuetracker.google.com/issues/195342732
    implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10")

    // fix https://github.com/google/dagger/issues/3068
    implementation("com.squareup:javapoet:1.13.0")
}