Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 26
  5. buildToolsVersion '26.0.2'
  6. defaultConfig {
  7. applicationId "com.jarvishub.eman"
  8. minSdkVersion 17
  9. targetSdkVersion 26
  10. versionCode 3
  11. versionName "1.0.2"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. }
  14. compileOptions {
  15. sourceCompatibility JavaVersion.VERSION_1_8
  16. targetCompatibility JavaVersion.VERSION_1_8
  17. }
  18.  
  19. buildTypes {
  20. release {
  21. minifyEnabled false
  22. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  23. }
  24. }
  25. }
  26.  
  27. dependencies {
  28.  
  29. compile fileTree(include: ['*.jar'], dir: 'libs')
  30. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  31. exclude group: 'com.android.support', module: 'support-annotations'
  32. })
  33.  
  34.  
  35. compile 'com.android.support:appcompat-v7:26.1.0'
  36. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  37. compile 'com.android.support:design:26.1.0'
  38. compile 'com.google.dagger:dagger:2.11'
  39. compile 'javax.inject:javax.inject:1'
  40. compile 'com.jakewharton:butterknife:8.8.1'
  41. compile 'com.felipecsl:gifimageview:2.1.0'
  42. compile 'org.apache.directory.studio:org.apache.commons.io:2.4'
  43. compile 'com.squareup.retrofit2:retrofit:2.3.0'
  44. compile 'com.squareup.retrofit2:converter-gson:2.3.0'
  45. compile 'pub.devrel:easypermissions:1.0.0'
  46. compile 'com.google.android.gms:play-services-maps:11.6.2'
  47. compile 'com.google.android.gms:play-services-location:11.6.2'
  48. compile 'com.google.android.gms:play-services-places:11.6.2'
  49. compile 'com.android.support:cardview-v7:26.1.0'
  50. compile 'com.android.support:support-v4:26.1.0'
  51. compile 'com.github.florent37:singledateandtimepicker:1.2.1'
  52. compile 'com.github.markushi:circlebutton:1.1'
  53.  
  54. testCompile 'junit:junit:4.12'
  55. annotationProcessor 'com.google.dagger:dagger-compiler:2.11'
  56. annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
  57. provided 'javax.annotation:jsr250-api:1.0'
  58. compile 'com.squareup.okhttp3:logging-interceptor:3.8.0'
  59. compile 'ch.acra:acra:4.8.5'
  60. compile 'org.jsoup:jsoup:1.10.1'
  61. compile 'com.github.thomper:sweet-alert-dialog:v1.4.0'
  62. compile 'com.robinhood.ticker:ticker:1.2.2'
  63. compile 'com.google.maps.android:android-maps-utils:0.5+'
  64. compile 'com.github.MdFarhanRaja:SearchableSpinner:1.7'
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement