Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'me.tatarka.retrolambda'
  3.  
  4. android {
  5. compileSdkVersion 24
  6. buildToolsVersion "24.0.3"
  7.  
  8. defaultConfig {
  9. applicationId "com.rostislav.dugin.reminderofwork"
  10. minSdkVersion 17
  11. targetSdkVersion 24
  12. versionCode 1
  13. versionName "1.0"
  14.  
  15. multiDexEnabled true
  16. }
  17.  
  18. compileOptions {
  19. sourceCompatibility JavaVersion.VERSION_1_8
  20. targetCompatibility JavaVersion.VERSION_1_8
  21. }
  22.  
  23. buildTypes {
  24. release {
  25. minifyEnabled false
  26. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  27. }
  28. }
  29. }
  30.  
  31. dependencies {
  32. compile fileTree(include: ['*.jar'], dir: 'libs') //Библиотеки для парсинга тут
  33. testCompile 'junit:junit:4.12'
  34. compile 'org.greenrobot:eventbus:3.0.0'
  35. compile 'com.android.support:appcompat-v7:24.2.1'
  36. compile 'com.android.support:design:24.2.1'
  37. compile 'io.reactivex:rxandroid:1.2.1'
  38. compile 'io.reactivex:rxjava:1.1.6'
  39. compile 'com.android.support:multidex:1.0.0'
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement