build.gradle 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'com.neenbedankt.android-apt'
  3. android {
  4. compileSdkVersion 23
  5. buildToolsVersion "23.0.1"
  6. publishNonDefault true
  7. defaultConfig {
  8. applicationId "eu.kanade.mangafeed"
  9. minSdkVersion 16
  10. targetSdkVersion 23
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. versionCode 1
  13. versionName "1.0"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. packagingOptions {
  22. exclude 'META-INF/DEPENDENCIES'
  23. exclude 'LICENSE.txt'
  24. exclude 'META-INF/LICENSE'
  25. exclude 'META-INF/LICENSE.txt'
  26. exclude 'META-INF/NOTICE'
  27. }
  28. lintOptions {
  29. abortOnError false
  30. }
  31. }
  32. dependencies {
  33. final SUPPORT_LIBRARY_VERSION = '23.0.1'
  34. final DAGGER_VERSION = '2.0.1'
  35. final HAMCREST_VERSION = '1.3'
  36. final MOCKITO_VERSION = '1.10.19'
  37. compile fileTree(dir: 'libs', include: ['*.jar'])
  38. compile "com.android.support:support-v4:$SUPPORT_LIBRARY_VERSION"
  39. compile "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION"
  40. compile "com.android.support:cardview-v7:$SUPPORT_LIBRARY_VERSION"
  41. compile "com.android.support:design:$SUPPORT_LIBRARY_VERSION"
  42. compile "com.android.support:recyclerview-v7:$SUPPORT_LIBRARY_VERSION"
  43. compile "com.android.support:support-annotations:$SUPPORT_LIBRARY_VERSION"
  44. compile 'com.squareup.retrofit:adapter-rxjava:2.0.0-beta1'
  45. compile 'com.squareup.okhttp:okhttp-urlconnection:2.4.0'
  46. compile 'com.squareup.okhttp:okhttp:2.4.0'
  47. compile 'com.pushtorefresh.storio:sqlite:1.4.0'
  48. compile 'com.pushtorefresh.storio:sqlite-annotations:1.4.0'
  49. compile 'de.greenrobot:eventbus:2.4.0'
  50. compile 'com.github.bumptech.glide:glide:3.6.1'
  51. compile 'de.hdodenhof:circleimageview:1.3.0'
  52. compile 'io.reactivex:rxandroid:1.0.1'
  53. compile 'com.jakewharton:butterknife:7.0.1'
  54. compile 'com.jakewharton.timber:timber:3.1.0'
  55. compile 'uk.co.ribot:easyadapter:1.5.0@aar'
  56. compile "com.google.dagger:dagger:$DAGGER_VERSION"
  57. apt "com.google.dagger:dagger-compiler:$DAGGER_VERSION"
  58. provided 'org.glassfish:javax.annotation:10.0-b28'
  59. compile('com.mikepenz:materialdrawer:4.3.0@aar') {
  60. transitive = true
  61. }
  62. testCompile 'junit:junit:4.12'
  63. testCompile "org.hamcrest:hamcrest-core:$HAMCREST_VERSION"
  64. testCompile "org.hamcrest:hamcrest-library:$HAMCREST_VERSION"
  65. testCompile "org.hamcrest:hamcrest-integration:$HAMCREST_VERSION"
  66. testCompile "org.mockito:mockito-core:$MOCKITO_VERSION"
  67. testCompile('org.robolectric:robolectric:3.0') {
  68. exclude group: 'commons-logging', module: 'commons-logging'
  69. exclude group: 'org.apache.httpcomponents', module: 'httpclient'
  70. }
  71. androidTestApt "com.google.dagger:dagger-compiler:$DAGGER_VERSION"
  72. }