Guest User

Untitled

a guest
Oct 25th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 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. }
  41.  
  42. productFlavors {
  43. // Define separate dev and prod product flavors.
  44. dev {
  45. // dev utilizes minSDKVersion = 21 to allow the Android gradle plugin
  46. // to pre-dex each module and produce an APK that can be tested on
  47. // Android Lollipop without time consuming dex merging processes.
  48. minSdkVersion 21
  49. }
  50. prod {
  51. // The actual minSdkVersion for the application.
  52. minSdkVersion 14
  53. }
  54. }
Add Comment
Please, Sign In to add comment