mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-28 18:46:18 +00:00
35 lines
776 B
Groovy
35 lines
776 B
Groovy
|
// Copyright 2020, Collabora, Ltd.
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
|
||
|
buildscript {
|
||
|
ext.kotlin_version = '1.4.10'
|
||
|
repositories {
|
||
|
google()
|
||
|
jcenter()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath 'com.android.tools.build:gradle:4.1.0'
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||
|
}
|
||
|
}
|
||
|
plugins {
|
||
|
// Used for getting the eigen dir from local.properties
|
||
|
id 'com.github.b3er.local.properties' version '1.1'
|
||
|
}
|
||
|
|
||
|
ext {
|
||
|
ndk_version = '21.3.6528147'
|
||
|
sharedTargetSdk = 30
|
||
|
sharedMinSdk = 26
|
||
|
|
||
|
// If you get an error here, make sure you have this set in local.properties
|
||
|
eigenIncludeDir = project.property('eigenIncludeDir')
|
||
|
}
|
||
|
|
||
|
allprojects {
|
||
|
repositories {
|
||
|
google()
|
||
|
jcenter()
|
||
|
}
|
||
|
}
|