monado/build.gradle

35 lines
776 B
Groovy
Raw Normal View History

2020-10-13 20:10:38 +00:00
// 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()
}
}