aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/settings.gradle
blob: 0e89ecec9a4636fc7ae669dbc65192fde9e649ee (plain) (blame)
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
pluginManagement {
    def agpVersion = "7.0.0"
    def kotlinVersion = "1.5.21"
    repositories {
        gradlePluginPortal()
        google()
        mavenCentral()
    }
    plugins {
        id("com.android.application") version "$agpVersion"
        id("com.android.library") version "$agpVersion"
        id("org.jetbrains.kotlin.android") version "$kotlinVersion"
        id("org.jetbrains.kotlin.kapt") version "$kotlinVersion"
    }
}

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
    }
}

rootProject.name = "wireguard-android"

include ':tunnel'
include ':ui'