Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 27
  5. buildToolsVersion '27.0.3'
  6. defaultConfig {
  7. applicationId "james.alarmio"
  8. minSdkVersion 16
  9. targetSdkVersion 27
  10. versionCode 3
  11. versionName "0.3"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. vectorDrawables.useSupportLibrary = true
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. configurations.all {
  22. resolutionStrategy {
  23. force 'com.android.support:support-v4:27.1.1'
  24. force 'com.android.support:support-v13:27.1.1'
  25. force 'com.android.support:cardview-v7:27.1.1'
  26. }
  27. }
  28. lintOptions {
  29. abortOnError false
  30. }
  31. }
  32.  
  33. dependencies {
  34. implementation fileTree(dir: 'libs', include: ['*.jar'])
  35. testImplementation 'junit:junit:4.12'
  36. implementation 'com.android.support:support-v4:27.1.1'
  37. implementation 'com.android.support:appcompat-v7:27.1.1'
  38. implementation 'com.android.support:design:27.1.1'
  39. implementation 'com.android.support:gridlayout-v7:27.1.1'
  40. implementation 'com.android.support:cardview-v7:27.1.1'
  41. implementation project(':aesthetic')
  42. implementation 'me.jahirfiquitiva:FABsMenu:1.1.4'
  43. implementation 'com.luckycatlabs:SunriseSunsetCalculator:1.2'
  44. implementation 'com.google.android.exoplayer:exoplayer-core:2.8.2'
  45. implementation 'com.google.android.exoplayer:exoplayer-hls:2.8.2'
  46. implementation 'com.github.bumptech.glide:glide:4.7.1'
  47. annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1'
  48. implementation 'me.jfenn:attribouter:0.0.7'
  49. implementation 'me.jfenn:timedatepickers:0.0.6'
  50. implementation 'me.jfenn:crasher:0.0.1'
  51.  
  52. implementation 'io.reactivex.rxjava2:rxjava:2.1.0'
  53. implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
  54. implementation 'com.f2prateek.rx.preferences2:rx-preferences:2.0.0-RC2'
  55.  
  56. implementation 'me.zhanghai.android.materialprogressbar:library:1.4.1'
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement