-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
executable file
·34 lines (31 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
buildscript {
ext {
kotlin_version = '1.5.30'
mozilla_components_version_telemetry = '57.0.9'
}
repositories {
google()
mavenCentral()
mavenLocal()
maven { url "https://maven.mozilla.org/maven2" }
maven { url "https://nightly.maven.mozilla.org/maven2" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.2'
classpath 'com.google.gms:google-services:4.4.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
}
}
allprojects {
repositories {
google()
mavenLocal()
mavenCentral()
maven { url "https://nightly.maven.mozilla.org/maven2" }
maven { url "https://maven.mozilla.org/maven2" }
maven { url "https://jitpack.io"
credentials { username "48a9b4c06b5dabbc03328ddcdbb7dfd8fab253ae" }}
maven { url 'https://jitpack.io' }
maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" }
}
}