6502Android/build.gradle

24 lines
580 B
Groovy
Raw Permalink 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()
2018-08-09 03:10:59 +00:00
google()
2017-03-08 05:30:12 +00:00
}
dependencies {
2018-08-31 20:19:50 +00:00
classpath 'com.android.tools.build:gradle:3.3.0-alpha08'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.61'
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()
2018-08-09 03:10:59 +00:00
google()
2017-03-08 05:30:12 +00:00
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
2015-06-09 17:21:49 +00:00
}