build.gradle 4.2 KB

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