forked from Saransh103/AR_Map
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
92 lines (82 loc) · 2.68 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.5.0'
repositories {
maven {
url 'https://api.mapbox.com/downloads/v2/releases/maven'
authentication {
basic(BasicAuthentication)
}
credentials {
username = 'mapbox'
password = 'sk.eyJ1Ijoic2FyYW5zaGhpcmFud2FsMSIsImEiOiJjbDE3Zm10Z3IwMndnM2xwbTN0cXh1M3J0In0.eOWMZR7kAuizuTQOoVFIKg'
}
}
// maven { url 'https://mapbox.bintray.com/mapbox' }
//maven {
//url = uri("http://oss.sonatype.org/content/repositories/snapshots")
// isAllowInsecureProtocol = true
// }
// jcenter {
// url "http://jcenter.bintray.com/"
// }
flatDir {
dirs("lib")
}
flatDir {
dirs("lib1", "lib2")
}
mavenCentral()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
def nav_version = "2.3.0-alpha01"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath 'com.android.tools.build:gradle:7.0.4'
classpath 'com.google.gms:google-services:4.3.10'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven { url 'https://mapbox.bintray.com/mapbox' }
// jcenter {
// url "http://jcenter.bintray.com/"
// }
flatDir {
dirs("lib")
}
flatDir {
dirs("lib1", "lib2")
}
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
maven {
url = uri("https://repo.spring.io/release")
}
maven {
url = uri("https://repository.jboss.org/maven2")
}
maven { url "https://maven.google.com" }
maven { url 'https://mapbox.bintray.com/mapbox' }
maven { url 'https://maven.testfairy.com' }
maven {
url 'https://api.mapbox.com/downloads/v1/releases/maven'
authentication {
basic(BasicAuthentication)
}
credentials {
username = 'mapbox'
password = 'sk.eyJ1Ijoic2FyYW5zaGhpcmFud2FsMSIsImEiOiJjbDE3Zm10Z3IwMndnM2xwbTN0cXh1M3J0In0.eOWMZR7kAuizuTQOoVFIKg'
}
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}