Skip to content

Instantly share code, notes, and snippets.

@mariopce
Created December 14, 2015 15:18
Show Gist options
  • Save mariopce/f1ed7f597501823adb47 to your computer and use it in GitHub Desktop.
Save mariopce/f1ed7f597501823adb47 to your computer and use it in GitHub Desktop.
android workshop depedencies
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
//android
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
//library guava
compile 'com.google.guava:guava:19.0-rc2'
//retrofit and conveners
compile 'com.squareup.retrofit:retrofit:2.0.0-beta2'
compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2'
compile 'com.squareup.retrofit:adapter-rxjava:2.0.0-beta2'
compile 'com.squareup.okhttp:logging-interceptor:2.6.0'
compile 'com.squareup.okhttp:okhttp:2.5.0'
//Rx java
compile 'io.reactivex:rxandroid:1.0.1'
compile 'io.reactivex:rxjava:1.0.14'
compile('com.jakewharton.rxbinding:rxbinding:0.2.0')
compile('com.jakewharton.rxbinding:rxbinding-support-v4:0.2.0') {
exclude group: 'com.android.support', module: 'support-v4'
}
//butter knife
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