mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-28 02:26:16 +00:00
66 lines
2.1 KiB
Groovy
66 lines
2.1 KiB
Groovy
// Copyright 2020-2021, Collabora, Ltd.
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
|
|
buildscript {
|
|
ext {
|
|
kotlinVersion = '1.5.0'
|
|
|
|
// Skip 8.8.6 - see https://github.com/mikepenz/AboutLibraries/issues/648
|
|
latestAboutLibsRelease = '8.8.5'
|
|
|
|
androidxCoreVersion = "1.3.2"
|
|
androidxAnnotationVersion = '1.2.0'
|
|
androidxAppCompatVersion = "1.2.0"
|
|
androidxLifecycleVersion = "2.2.0"
|
|
androidxConstraintLayoutVersion = '2.0.4'
|
|
|
|
hiltVersion = '2.35.1'
|
|
|
|
materialVersion = "1.3.0"
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.2.1'
|
|
//noinspection DifferentKotlinGradleVersion
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
|
classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:${latestAboutLibsRelease}"
|
|
classpath 'com.quittle:svg-2-android-vector:0.0.5'
|
|
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
|
|
|
|
}
|
|
}
|
|
plugins {
|
|
// Used for getting the eigen dir, explicit python binary, etc. from local.properties
|
|
id 'com.github.b3er.local.properties' version '1.1'
|
|
|
|
// For getting git describe data and formatting it how Android wants.
|
|
id "com.gladed.androidgitversion" version "0.4.13"
|
|
|
|
// For downloading e.g. the CDDL (for transitive dependencies of hilt)
|
|
id "de.undercouch.download" version "4.1.1"
|
|
}
|
|
|
|
ext {
|
|
ndk_version = '21.4.7075529'
|
|
sharedTargetSdk = 30
|
|
sharedMinSdk = 26
|
|
|
|
// If you are building on Windows, you will need to explicitly set eigenIncludeDir in your
|
|
// local.properties file since the default value provided below only makes sense on *nix
|
|
eigenIncludeDir = project.findProperty('eigenIncludeDir') ?: '/usr/include/eigen3'
|
|
|
|
// If you're having trouble with a "can't find python" CMake error, you can specify the path to
|
|
// Python 3 explicitly in local.properties with a property named "pythonBinary"
|
|
pythonBinary = project.findProperty('pythonBinary')
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|