Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. buildscript {
  3. repositories {
  4. mavenCentral()
  5. mavenLocal()
  6. }
  7. }
  8. android {
  9. packagingOptions {
  10. exclude 'LICENSE.txt'
  11. }
  12. compileSdkVersion 21
  13. buildToolsVersion "21.1.2"
  14.  
  15. defaultConfig {
  16. applicationId "bootcamp.johnkilcoyne.intern.android.banno.com.johnkilcoynebootcamp"
  17. minSdkVersion 15
  18. targetSdkVersion 21
  19. versionCode 1
  20. versionName "1.0"
  21. testInstrumentationRunner "com.google.android.apps.common.testing.testrunner.GoogleInstrumentationTestRunner"
  22. testInstrumentationRunner "bootcamp.johnkilcoyne.intern.android.banno.com.johnkilcoynebootcamp.ApplicationTestRunner"
  23. }
  24. buildTypes {
  25. release {
  26. minifyEnabled false
  27. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  28. }
  29. }
  30. }
  31.  
  32. dependencies {
  33. compile fileTree(dir: 'libs', include: ['*.jar'])
  34. compile 'com.android.support:appcompat-v7:21.0.3'
  35. provided 'com.squareup.dagger:dagger-compiler:1.2.2'
  36. compile 'com.squareup.dagger:dagger:1.2.2'
  37. compile 'joda-time:joda-time:2.3'
  38. compile 'com.android.support:recyclerview-v7:21.0.3'
  39. androidTestCompile 'org.mockito:mockito-core:1.9.5'
  40. androidTestCompile 'com.google.dexmaker:dexmaker:1.1'
  41. androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.1'
  42. compile files('libs/Final Android Resizer.jar')
  43. compile ('bootcamp.johnkilcoyne.intern.android.banno.com.bootcamplibrary:app:1.0-SNAPSHOT') {
  44. }
  45. androidTestCompile ('com.jakewharton.espresso:espresso:1.1-r4-patched') {
  46. exclude group: 'com.squareup.dagger'
  47. }
  48. androidTestCompile ('com.jakewharton.espresso:espresso-support-v4:1.1-r4-patched') {
  49. exclude group: 'com.android.support', module: 'support-annotations'
  50. exclude group: 'com.squareup.dagger'
  51. }
  52.  
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement