-
Notifications
You must be signed in to change notification settings - Fork 14
/
build.gradle
71 lines (69 loc) · 2.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
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
buildscript {
ext.kotlin_version = '1.9.20'
repositories {
google()
maven {
url 'https://maven.google.com/'
name 'Google'
}
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects{
repositories {
google()
mavenCentral()
mavenLocal()
maven { url "https://jitpack.io" }
maven { url 'https://maven.google.com' }
maven {
url 'https://maven.google.com/'
name 'Google'
}
maven {
url "https://plugins.gradle.org/m2/"
}
maven {
url = uri("https://maven.pkg.github.com/pia-foss/mobile-shared-regions")
credentials {
username = System.getenv("GITHUB_USERNAME")
password = System.getenv("GITHUB_TOKEN")
}
}
maven {
url = uri("https://maven.pkg.github.com/pia-foss/mobile-shared-account")
credentials {
username = System.getenv("GITHUB_USERNAME")
password = System.getenv("GITHUB_TOKEN")
}
}
maven {
url = uri("https://maven.pkg.github.com/pia-foss/mobile-shared-csi")
credentials {
username = System.getenv("GITHUB_USERNAME")
password = System.getenv("GITHUB_TOKEN")
}
}
maven {
url = uri("https://maven.pkg.github.com/pia-foss/mobile-shared-kpi")
credentials {
username = System.getenv("GITHUB_USERNAME")
password = System.getenv("GITHUB_TOKEN")
}
}
}
}
//only change those when updating support-library, target and compile versions.
ext {
buildToolsVersion = '34.0.0'
supportLibVersion = '27.1.1'
targetSdkVersion = 34
compileSdkVersion = 34
minSdkVersion = 21
}