Created
January 18, 2016 03:15
-
-
Save eneim/8269a06fd63aa9150e30 to your computer and use it in GitHub Desktop.
Gradle script for good Android libraries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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