Skip to content

Instantly share code, notes, and snippets.

@ruwanka
Last active August 27, 2017 10:38
Show Gist options
  • Save ruwanka/b8a3a034c4ca6dcb764b059d89d704c3 to your computer and use it in GitHub Desktop.
Save ruwanka/b8a3a034c4ca6dcb764b059d89d704c3 to your computer and use it in GitHub Desktop.
Realm db dependencies and stetho-realm repository
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'io.realm:realm-gradle-plugin:3.5.0'
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://github.com/uPhyca/stetho-realm/raw/master/maven-repo'
}
}
}
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