6502Android/build.gradle

22 lines
545 B
Groovy
Raw Normal View History

2015-06-09 17:21:49 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2017-03-08 05:30:12 +00:00
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.0'
2015-06-09 17:21:49 +00:00
2017-03-08 05:30:12 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
2015-06-09 17:21:49 +00:00
}
allprojects {
2017-03-08 05:30:12 +00:00
repositories {
jcenter()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
2015-06-09 17:21:49 +00:00
}