| author | Da Risk <da_risk@geekorum.com> |
| Mon, 15 Sep 2025 14:00:07 -0400 | |
| changeset 1370 | 13e39ef920a8 |
| parent 1181 | 6a3eb3ff8888 |
| permissions | -rw-r--r-- |
| 181 | 1 |
/* |
| 0 | 2 |
* Geekttrss is a RSS feed reader application on the Android Platform. |
3 |
* |
|
| 1370 | 4 |
* Copyright (C) 2017-2025 by Frederic-Charles Barthelery. |
| 0 | 5 |
* |
6 |
* This file is part of Geekttrss. |
|
7 |
* |
|
8 |
* Geekttrss is free software: you can redistribute it and/or modify |
|
9 |
* it under the terms of the GNU General Public License as published by |
|
10 |
* the Free Software Foundation, either version 3 of the License, or |
|
11 |
* (at your option) any later version. |
|
12 |
* |
|
13 |
* Geekttrss is distributed in the hope that it will be useful, |
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
16 |
* GNU General Public License for more details. |
|
17 |
* |
|
18 |
* You should have received a copy of the GNU General Public License |
|
19 |
* along with Geekttrss. If not, see <http://www.gnu.org/licenses/>. |
|
20 |
*/ |
|
21 |
plugins {
|
|
22 |
`kotlin-dsl` |
|
23 |
} |
|
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 | 27 |
repositories {
|
28 |
gradlePluginPortal() |
|
29 |
google() |
|
30 |
} |
|
31 |
||
|
1181
6a3eb3ff8888
build: move buildSrc dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
1180
diff
changeset
|
32 |
// see https://github.com/gradle/gradle/issues/17963 |
|
6a3eb3ff8888
build: move buildSrc dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
1180
diff
changeset
|
33 |
fun Provider<PluginDependency>.gav(): String {
|
|
6a3eb3ff8888
build: move buildSrc dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
1180
diff
changeset
|
34 |
val t = get() |
|
6a3eb3ff8888
build: move buildSrc dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
1180
diff
changeset
|
35 |
val id = t.pluginId |
|
6a3eb3ff8888
build: move buildSrc dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
1180
diff
changeset
|
36 |
val version = t.version |
|
6a3eb3ff8888
build: move buildSrc dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
1180
diff
changeset
|
37 |
return "$id:$id.gradle.plugin:$version" |
|
6a3eb3ff8888
build: move buildSrc dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
1180
diff
changeset
|
38 |
} |
|
6a3eb3ff8888
build: move buildSrc dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
1180
diff
changeset
|
39 |
|
| 0 | 40 |
dependencies {
|
|
1019
57b5ce68376f
build: still use agp dependency in buildSrc
Da Risk <da_risk@geekorum.com>
parents:
1013
diff
changeset
|
41 |
// play-publisher depends on AGP original not api. So we need to include it here |
|
57b5ce68376f
build: still use agp dependency in buildSrc
Da Risk <da_risk@geekorum.com>
parents:
1013
diff
changeset
|
42 |
// in order to be in the correct classpath |
|
1181
6a3eb3ff8888
build: move buildSrc dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
1180
diff
changeset
|
43 |
implementation(libs.android.gradle.plugin) |
|
6a3eb3ff8888
build: move buildSrc dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
1180
diff
changeset
|
44 |
implementation(libs.plugins.kotlin.android.gav()) |
|
1020
35d86e87cd75
build: don't use plugin aliases in project for now
Da Risk <da_risk@geekorum.com>
parents:
1019
diff
changeset
|
45 |
|
|
1181
6a3eb3ff8888
build: move buildSrc dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
1180
diff
changeset
|
46 |
implementation(libs.android.gradle.plugin.api) |
|
6a3eb3ff8888
build: move buildSrc dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
1180
diff
changeset
|
47 |
implementation(libs.plugins.license.gradle.plugin.gav()) |
|
6a3eb3ff8888
build: move buildSrc dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
1180
diff
changeset
|
48 |
implementation(libs.plugins.gradle.play.publisher.gav()) |
|
6a3eb3ff8888
build: move buildSrc dependencies to version catalog
Da Risk <da_risk@geekorum.com>
parents:
1180
diff
changeset
|
49 |
implementation(libs.plugins.com.geekorum.avdl.flydroid.gav()) |
|
832
5ab2967b5391
build: fix compile issue with compose
Da Risk <da_risk@geekorum.com>
parents:
814
diff
changeset
|
50 |
|
| 883 | 51 |
// fix https://github.com/google/dagger/issues/3068 |
52 |
implementation("com.squareup:javapoet:1.13.0")
|
|
| 0 | 53 |
} |