Skip to content

Instantly share code, notes, and snippets.

@AndrewReitz
Created May 5, 2019 15:28
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 AndrewReitz/022e191ea6f89c135038e51d774fa238 to your computer and use it in GitHub Desktop.
Save AndrewReitz/022e191ea6f89c135038e51d774fa238 to your computer and use it in GitHub Desktop.
Example of dependencies in groovy gradle file
dependencies {
implementation("com.jakewharton.rxbinding2:rxbinding:2.2.0")
implementation("com.jakewharton:process-phoenix:2.0.0")
implementation("com.jakewharton.timber:timber:4.7.1")
implementation("com.jakewharton.byteunits:byteunits:0.9.1")
debugImplementation("com.readystatesoftware.chuck:library:1.1.0")
releaseImplementation("com.readystatesoftware.chuck:library-no-op:1.1.0")
buildFlavorOneImplementation("com.squareup.leakcanary:leakcanary-android:1.6.3")
buildFlavorTwoImplementation("com.squareup.leakcanary:leakcanary-android-no-op:1.6.3")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment