buildSrc/build.gradle.kts
author Da Risk <da_risk@geekorum.com>
Fri, 10 Dec 2021 16:45:31 -0400
changeset 863 71dca4f9acac
parent 832 5ab2967b5391
child 868 730f09dc1bfc
permissions -rw-r--r--
build: remove jcenter/bintray repositories
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
181
5ba798c38149 Add Missing license headers
Da Risk <da_risk@geekorum.com>
parents: 114
diff changeset
     1
/*
0
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     2
 * Geekttrss is a RSS feed reader application on the Android Platform.
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     3
 *
611
91b8d76c03cd Update copyrights headers
Da Risk <da_risk@geekorum.com>
parents: 566
diff changeset
     4
 * Copyright (C) 2017-2020 by Frederic-Charles Barthelery.
0
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     5
 *
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     6
 * This file is part of Geekttrss.
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     7
 *
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     8
 * Geekttrss is free software: you can redistribute it and/or modify
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     9
 * it under the terms of the GNU General Public License as published by
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    10
 * the Free Software Foundation, either version 3 of the License, or
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    11
 * (at your option) any later version.
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    12
 *
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    13
 * Geekttrss is distributed in the hope that it will be useful,
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    16
 * GNU General Public License for more details.
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    17
 *
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    18
 * You should have received a copy of the GNU General Public License
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    19
 * along with Geekttrss.  If not, see <http://www.gnu.org/licenses/>.
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    20
 */
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    21
plugins {
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    22
    `kotlin-dsl`
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    23
}
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    24
42
f4d342269f9f Update genymotion gradle plugin version
Da Risk <da_risk@geekorum.com>
parents: 40
diff changeset
    25
version = "1.0"
f4d342269f9f Update genymotion gradle plugin version
Da Risk <da_risk@geekorum.com>
parents: 40
diff changeset
    26
0
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    27
repositories {
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    28
    gradlePluginPortal()
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    29
    google()
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    30
}
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    31
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    32
dependencies {
814
6eadcef1e147 app: target sdk 31
Da Risk <da_risk@geekorum.com>
parents: 812
diff changeset
    33
    implementation("com.android.tools.build:gradle:7.0.3")
790
3db0bf79efcd build: update to latest license checker plugin
Da Risk <da_risk@geekorum.com>
parents: 789
diff changeset
    34
    implementation("gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.16.1")
812
cc5a320a4208 build: update to AGP 7.0.2
Da Risk <da_risk@geekorum.com>
parents: 799
diff changeset
    35
    implementation("com.github.triplet.gradle:play-publisher:3.6.0")
832
5ab2967b5391 build: fix compile issue with compose
Da Risk <da_risk@geekorum.com>
parents: 814
diff changeset
    36
    implementation("com.geekorum.gradle.avdl:flydroid:0.0.3")
5ab2967b5391 build: fix compile issue with compose
Da Risk <da_risk@geekorum.com>
parents: 814
diff changeset
    37
    // need to be added to work with compose  https://issuetracker.google.com/issues/195342732
5ab2967b5391 build: fix compile issue with compose
Da Risk <da_risk@geekorum.com>
parents: 814
diff changeset
    38
    implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31")
5ab2967b5391 build: fix compile issue with compose
Da Risk <da_risk@geekorum.com>
parents: 814
diff changeset
    39
0
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    40
}