-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (39 loc) · 982 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
32
33
34
35
36
37
38
39
40
41
42
43
44
buildscript
{
repositories
{
google()
gradlePluginPortal()
}
dependencies
{
classpath "com.android.tools.build:gradle:8.6.0"
classpath "com.github.ben-manes:gradle-versions-plugin:0.43.0"
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.24.18"
}
}
allprojects
{
repositories
{
mavenCentral()
google()
maven {
name = "RingPublishingGDPR-Android"
url = uri("https://maven.pkg.github.com/ringpublishing/RingPublishingGDPR-Android")
credentials {
username = System.getenv('GITHUB_USER') ?: ""
password = System.getenv('GITHUB_PERSONAL_ACCESS_TOKEN') ?: ""
}
}
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
project.ext {
APP_MIN_SDK_VERSION = 24
APP_COMPILE_SDK_VERSION = 35
APP_TARGET_SDK_VERSION = 35
APP_BUILD_TOOLS_VERSION = '35.0.0'
}