forked from zawadz88/MaterialPopupMenu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (38 loc) · 1.03 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
buildscript {
ext {
versions = [
kotlin : "1.6.21",
ktx : [
core: "1.7.0"
],
android_annotation : "1.4.0",
android_appcompat : "1.4.2",
android_recyclerview : "1.2.1",
android_constraint_layout: '2.1.4',
material : "1.4.0"
]
environment = [
"group_id": "com.github.rooneyandshadows"
]
}
repositories {
google()
//noinspection JcenterRepositoryObsolete
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
}
}
allprojects {
repositories {
//noinspection JcenterRepositoryObsolete
jcenter()
google()
mavenLocal()
maven {
url "https://jitpack.io"
}
}
}