Skip to content

Instantly share code, notes, and snippets.

@Zhuinden
Last active September 3, 2016 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Zhuinden/4419920a3df64fb8d766a11d6655e298 to your computer and use it in GitHub Desktop.
Save Zhuinden/4419920a3df64fb8d766a11d6655e298 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 {
repositories {
jcenter()
mavenCentral()
maven {url "https://clojars.org/repo/"}
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
//classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
//classpath 'me.tatarka:gradle-retrolambda:3.2.5'
classpath "io.realm:realm-gradle-plugin:1.2.0" // <-- added this line
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url "https://clojars.org/repo/" }
maven { url "https://jitpack.io" }
}
}
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