Skip to content

Instantly share code, notes, and snippets.

@adrianhall
Created May 17, 2018 21:47
Show Gist options
  • Save adrianhall/7ef287227d09ffe50dc95d980c36f6f3 to your computer and use it in GitHub Desktop.
Save adrianhall/7ef287227d09ffe50dc95d980c36f6f3 to your computer and use it in GitHub Desktop.
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.2.41'
ext.appsync_version = '2.6.18'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0-alpha15'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.amazonaws:aws-android-sdk-appsync-gradle-plugin:$appsync_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment