Skip to content

Instantly share code, notes, and snippets.

@eneim
Created January 18, 2016 03:15
Show Gist options
  • Select an option

  • Save eneim/8269a06fd63aa9150e30 to your computer and use it in GitHub Desktop.

Select an option

Save eneim/8269a06fd63aa9150e30 to your computer and use it in GitHub Desktop.
Gradle script for good Android libraries
allprojects {
repositories {
jcenter()
maven {
url "https://s3.amazonaws.com/repo.commonsware.com"
}
maven {
url "http://amateras.sourceforge.jp/mvn"
}
mavenCentral()
}
}
buildscript {
repositories {
maven {
url "https://s3.amazonaws.com/repo.commonsware.com"
}
maven {
url "http://amateras.sourceforge.jp/mvn"
}
mavenCentral()
}
}
compile 'org.pegdown:pegdown:1.6.0'
compile 'com.commonsware.cwac:anddown:0.2.4'
compile 'io.github.gitbucket:markedj:1.0.5'
compile 'com.github.rjeschke:txtmark:0.13'
compile 'com.squareup.okio:okio:1.6.0'
compile 'us.feras.mdv:markdownview:1.1.0'
compile 'org.jsoup:jsoup:1.8.3'
compile 'com.jakewharton:butterknife:7.0.1'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment