Skip to content

Instantly share code, notes, and snippets.

@codeguru42
Created June 2, 2015 12:59
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 codeguru42/50260d79ec08e436fb48 to your computer and use it in GitHub Desktop.
Save codeguru42/50260d79ec08e436fb48 to your computer and use it in GitHub Desktop.
Gradle dependencies
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.android.support:support-v4:22.2.0'
compile 'com.google.android.gms:play-services:6.1.71'
compile 'com.crashlytics.android:crashlytics:1.+'
compile 'com.jakewharton:butterknife:5.1.2'
liteCompile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile 'com.jayway.android.robotium:robotium-solo:5.2.1'
androidTestCompile ('com.squareup:fest-android:1.0.8') {
exclude group: 'com.android.support'
}
androidTestCompile 'com.android.support.test:runner:0.2'
androidTestCompile 'com.android.support.test:rules:0.2'
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment