-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (28 loc) · 767 Bytes
/
build.gradle
File metadata and controls
32 lines (28 loc) · 767 Bytes
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
29
30
31
32
buildscript {
Properties properties = new Properties()
def propertiesFile = project.rootProject.file('local.properties')
if (propertiesFile.exists()) {
properties.load(propertiesFile.newDataInputStream())
}
ext.aosp_location = properties.getProperty('aosp.location')
}
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.4-M3'
}
group 'me.shika'
version '1.0-SNAPSHOT'
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven {
url "https://dl.bintray.com/kotlin/kotlin-eap/"
}
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.AbstractKotlinCompile) {
kotlinOptions {
freeCompilerArgs += ["-Xskip-prerelease-check"]
}
}
}