Created
May 5, 2019 15:28
-
-
Save AndrewReitz/022e191ea6f89c135038e51d774fa238 to your computer and use it in GitHub Desktop.
Example of dependencies in groovy gradle file
This file contains 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
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