build.gradle 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. apply plugin: 'com.android.application'
  2. // This does not break the build when Android Studio is missing the JRebel for Android plugin.
  3. apply plugin: 'com.zeroturnaround.jrebel.android'
  4. apply plugin: 'com.neenbedankt.android-apt'
  5. apply plugin: 'me.tatarka.retrolambda'
  6. android {
  7. compileSdkVersion 23
  8. buildToolsVersion "23.0.1"
  9. publishNonDefault true
  10. defaultConfig {
  11. applicationId "eu.kanade.mangafeed"
  12. minSdkVersion 16
  13. targetSdkVersion 23
  14. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  15. versionCode 1
  16. versionName "1.0"
  17. }
  18. compileOptions {
  19. sourceCompatibility JavaVersion.VERSION_1_8
  20. targetCompatibility JavaVersion.VERSION_1_8
  21. }
  22. buildTypes {
  23. release {
  24. minifyEnabled false
  25. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  26. }
  27. }
  28. packagingOptions {
  29. exclude 'META-INF/DEPENDENCIES'
  30. exclude 'LICENSE.txt'
  31. exclude 'META-INF/LICENSE'
  32. exclude 'META-INF/LICENSE.txt'
  33. exclude 'META-INF/NOTICE'
  34. }
  35. lintOptions {
  36. abortOnError false
  37. }
  38. }
  39. dependencies {
  40. final SUPPORT_LIBRARY_VERSION = '23.0.1'
  41. final DAGGER_VERSION = '2.0.1'
  42. final HAMCREST_VERSION = '1.3'
  43. final MOCKITO_VERSION = '1.10.19'
  44. final STORIO_VERSION = '1.4.0'
  45. final NUCLEUS_VERSION = '2.0.1'
  46. final ICEPICK_VERSION = '3.1.0'
  47. compile fileTree(dir: 'libs', include: ['*.jar'])
  48. compile "com.android.support:support-v4:$SUPPORT_LIBRARY_VERSION"
  49. compile "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION"
  50. compile "com.android.support:cardview-v7:$SUPPORT_LIBRARY_VERSION"
  51. compile "com.android.support:design:$SUPPORT_LIBRARY_VERSION"
  52. compile "com.android.support:recyclerview-v7:$SUPPORT_LIBRARY_VERSION"
  53. compile "com.android.support:support-annotations:$SUPPORT_LIBRARY_VERSION"
  54. compile 'com.squareup.okhttp:okhttp-urlconnection:2.4.0'
  55. compile 'com.squareup.okhttp:okhttp:2.4.0'
  56. compile 'com.squareup.okio:okio:1.6.0'
  57. compile 'com.google.code.gson:gson:2.4'
  58. compile 'com.jakewharton:disklrucache:2.0.2'
  59. compile 'org.jsoup:jsoup:1.8.3'
  60. compile 'io.reactivex:rxandroid:1.0.1'
  61. compile "com.pushtorefresh.storio:sqlite:$STORIO_VERSION"
  62. compile "com.pushtorefresh.storio:sqlite-annotations:$STORIO_VERSION"
  63. compile "info.android15.nucleus:nucleus:$NUCLEUS_VERSION"
  64. compile "info.android15.nucleus:nucleus-support-v4:$NUCLEUS_VERSION"
  65. compile "info.android15.nucleus:nucleus-support-v7:$NUCLEUS_VERSION"
  66. compile 'de.greenrobot:eventbus:2.4.0'
  67. compile 'com.github.bumptech.glide:glide:3.6.1'
  68. compile 'com.jakewharton:butterknife:7.0.1'
  69. compile 'com.jakewharton.timber:timber:3.1.0'
  70. compile 'uk.co.ribot:easyadapter:1.5.0@aar'
  71. compile 'ch.acra:acra:4.6.2'
  72. compile 'com.github.castorflex.verticalviewpager:library:19.0.1'
  73. compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.4.1'
  74. compile "frankiesardo:icepick:$ICEPICK_VERSION"
  75. provided "frankiesardo:icepick-processor:$ICEPICK_VERSION"
  76. compile "com.google.dagger:dagger:$DAGGER_VERSION"
  77. apt "com.google.dagger:dagger-compiler:$DAGGER_VERSION"
  78. apt "com.pushtorefresh.storio:sqlite-annotations-processor:$STORIO_VERSION"
  79. provided 'org.glassfish:javax.annotation:10.0-b28'
  80. compile('com.mikepenz:materialdrawer:4.3.0@aar') {
  81. transitive = true
  82. }
  83. testCompile 'junit:junit:4.12'
  84. testCompile "org.hamcrest:hamcrest-core:$HAMCREST_VERSION"
  85. testCompile "org.hamcrest:hamcrest-library:$HAMCREST_VERSION"
  86. testCompile "org.hamcrest:hamcrest-integration:$HAMCREST_VERSION"
  87. testCompile "org.mockito:mockito-core:$MOCKITO_VERSION"
  88. testCompile('org.robolectric:robolectric:3.0') {
  89. exclude group: 'commons-logging', module: 'commons-logging'
  90. exclude group: 'org.apache.httpcomponents', module: 'httpclient'
  91. }
  92. androidTestApt "com.google.dagger:dagger-compiler:$DAGGER_VERSION"
  93. }