summaryrefslogtreecommitdiff
path: root/Source/Android/settings.gradle.kts
blob: 1c44ac66131179810f85b3191652c19ccc8b5e54 (plain)
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
pluginManagement {
    buildscript {
        repositories {
            mavenCentral()
            maven {
                url = uri("https://storage.googleapis.com/r8-releases/raw")
            }
        }
        dependencies {
            // Temporary override for AGP-bundled R8 crash in release minification.
            // https://issuetracker.google.com/issues/495458806
            // TODO: Re-test without this override when upgrading AGP and remove if fixed upstream.
            classpath("com.android.tools:r8:9.1.34")
        }
    }

    repositories {
        gradlePluginPortal()
        google()
        mavenCentral()
    }
}

@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
    }
}

include(":app")
include(":benchmark")