Advertisement
Guest User

Untitled

a guest
May 5th, 2018
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'com.google.gms.google-services'
  3. apply plugin: 'com.jakewharton.butterknife'
  4.  
  5. android {
  6. compileSdkVersion 27
  7. buildToolsVersion '27.0.3'
  8. flavorDimensions "default"
  9.  
  10. dataBinding {
  11. enabled = true
  12. }
  13.  
  14. defaultConfig {
  15. minSdkVersion 14
  16. targetSdkVersion 27
  17. versionCode 17
  18. versionName "4.9"
  19. }
  20.  
  21. compileOptions {
  22. sourceCompatibility JavaVersion.VERSION_1_8
  23. targetCompatibility JavaVersion.VERSION_1_8
  24. }
  25.  
  26. applicationVariants.all { variant ->
  27. variant.outputs.all { output ->
  28. outputFileName = new File(
  29. output.outputFile.parent,
  30. output.outputFile.name.replace(".apk", "-${variant.versionName}-18.apk"))
  31. }
  32. }
  33.  
  34. dexOptions {
  35. incremental true
  36. javaMaxHeapSize "1g"
  37. }
  38.  
  39. buildTypes {
  40.  
  41. release {
  42. minifyEnabled false
  43. debuggable false
  44. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  45. }
  46.  
  47. }
  48.  
  49. productFlavors {
  50. ...
  51. }
  52.  
  53. dependencies {
  54. compile fileTree(include: ['*.jar'], dir: 'libs')
  55. testCompile 'junit:junit:4.12'
  56. compile 'com.android.support:appcompat-v7:27.1.1'
  57. compile 'com.android.support:design:27.1.1'
  58. compile 'com.android.support:cardview-v7:27.1.1'
  59. compile 'com.android.support:support-v13:27.1.1'
  60. compile 'com.android.support.constraint:constraint-layout:1.1.0'
  61. compile 'com.bignerdranch.android:expandablerecyclerview:2.1.0'
  62. compile 'com.wdullaer:materialdatetimepicker:1.5.4'
  63. compile 'com.squareup.okhttp3:okhttp:3.0.1'
  64. compile 'com.j256.ormlite:ormlite-core:4.48'
  65. compile 'com.j256.ormlite:ormlite-android:4.48'
  66. compile 'com.github.rahatarmanahmed:circularprogressview:2.4.0'
  67. compile project(':app:libs:maskededittext')
  68. compile 'com.github.JakeWharton:ViewPagerIndicator:2.4.1@aar'
  69. compile 'com.yandex.android:mobmetricalib:2.40'
  70. compile 'com.google.android.gms:play-services-analytics:9.0.0'
  71. compile 'net.yslibrary.keyboardvisibilityevent:keyboardvisibilityevent:2.1.0'
  72. compile 'ru.tinkoff.decoro:decoro:1.3.1'
  73. compile 'com.github.dmytrodanylyk.shadow-layout:library:1.0.3'
  74. compile 'net.danlew:android.joda:2.9.9'
  75. compile 'org.greenrobot:eventbus:3.0.0'
  76. compile project(':gestureimageview')
  77. compile 'com.nhaarman.supertooltips:library:3.0.0'
  78. implementation 'com.jakewharton:butterknife:8.4.0'
  79. annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
  80. compile 'com.github.bumptech.glide:glide:4.6.1'
  81. annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'
  82. compile 'com.readystatesoftware.systembartint:systembartint:1.0.3'
  83. compile 'com.ms-square:expandableTextView:0.1.4'
  84. implementation 'com.veinhorn.scrollgalleryview:library:1.0.8'
  85. //compile 'cat.ereza:customactivityoncrash:2.1.0'
  86. implementation "ch.acra:acra-mail:5.1.3"
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement