2023-05-10 20:33:19 +02:00
|
|
|
/**
|
|
|
|
|
* Copyright (C) 2016-2023 by Sascha Willems - www.saschawillems.de
|
|
|
|
|
*
|
|
|
|
|
* This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/** Top-level build file where you can add configuration options common to all sub-projects/modules */
|
2018-04-29 12:28:43 +02:00
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
2023-05-28 19:18:19 +08:00
|
|
|
mavenCentral()
|
2018-04-29 12:28:43 +02:00
|
|
|
}
|
|
|
|
|
dependencies {
|
2023-05-10 20:33:19 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:7.0.0'
|
2018-04-29 12:28:43 +02:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
2019-02-04 10:55:57 -08:00
|
|
|
google()
|
2023-05-28 19:18:19 +08:00
|
|
|
mavenCentral()
|
2018-04-29 12:28:43 +02:00
|
|
|
}
|
2023-05-10 20:33:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ext {
|
2023-05-30 15:01:07 +08:00
|
|
|
abiFilters = "arm64-v8a"
|
2023-05-10 20:33:19 +02:00
|
|
|
minSdkVersion = 19
|
|
|
|
|
targetSdkVersion = 26
|
|
|
|
|
compileSdkVersion = 26
|
|
|
|
|
shaderPath = '../../../shaders/'
|
|
|
|
|
assetPath = '../../../assets/'
|
2018-04-29 12:28:43 +02:00
|
|
|
}
|