forked from wiglenet/wigle-wifi-wardriving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
31 lines (30 loc) · 775 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
maven {
url 'https://maven.google.com/'
name 'Google'
}
maven {
url "https://dl.bintray.com/alt236/maven"
name "alt236 BT-LE"
}
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
classpath 'de.undercouch:gradle-download-task:3.4.3'
classpath 'org.codehaus.groovy:groovy-android-gradle-plugin:2.0.1'
}
}
allprojects {
repositories {
google()
maven {
url "https://maven.google.com/"
name 'Google'
}
jcenter()
}
}