-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
43 lines (40 loc) · 1.49 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: 'com.github.ben-manes.versions'
buildscript {
ext.versions = [
'glide': '4.14.0',
'kotlin': '1.9.24',
'retrofit': '2.11.0',
'okhttp': '4.12.0',
'leakcanary': '2.14',
'compose': '1.6.0-alpha04',
]
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.4'
// <- buildに使うandroid用のpluginの設定
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
// <- kotlin用のpluginの設定
classpath "com.github.ben-manes:gradle-versions-plugin:0.46.0"
}
}
// 全てのsubmoduleに共通して設定したい項目を設定する
allprojects {
// dependenciesで依存解決をするrepositoryを指定する
// 大体はこの設定で解決出来る 使うlibraryが指定するRepositoryがある場合はそれも追記する(app側に書いても良い)
repositories {
google() // support library等の依存を解決するリポジトリ
mavenCentral() // 一般的なlibraryの依存を解決するリポジトリ
maven {
name 'glide-snapshot'
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}