Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.55 KB | None | 0 0
  1. Multiple dex files define Lcom / getkeepsafe / relinker / elf / Elf $ SectionHeader;
  2.  
  3. apply plugin: 'com.android.application'
  4. apply plugin: 'realm-android'
  5.  
  6. android {
  7. compileSdkVersion 26
  8. buildToolsVersion '26.0.3'
  9. defaultConfig {
  10. applicationId 'com.palopo.robotic'
  11. minSdkVersion 17
  12. targetSdkVersion 26
  13. versionCode 13
  14. versionName '1.0.3'
  15. vectorDrawables.useSupportLibrary = true
  16. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  17. multiDexEnabled true
  18. dexOptions {
  19. javaMaxHeapSize '4g'
  20. }
  21. }
  22. buildTypes {
  23. release {
  24. minifyEnabled false
  25. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  26. }
  27. }
  28. productFlavors {
  29. }
  30. }
  31.  
  32. allprojects {
  33. repositories {
  34. mavenCentral()
  35. }
  36. }
  37. /* IMPORTANT :
  38. * Be careful when update dependencies, different version library may caused error */
  39. dependencies {
  40. compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.+'
  41. }
  42. dependencies {
  43. compile fileTree(include: ['*.jar'], dir: 'libs')
  44. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  45. exclude group: 'com.android.support', module: 'support-annotations'
  46. exclude group: 'com.google.code.findbugs'
  47. })
  48. compile('com.mikepenz:fastadapter:2.0.0@aar') {
  49. transitive = true
  50. }
  51. compile 'com.afollestad.material-dialogs:core:0.9.0.0'
  52. compile 'com.mikepenz:iconics-core:2.8.1@aar'
  53. compile 'com.mikepenz:fontawesome-typeface:4.6.0.2@aar'
  54.  
  55. compile('cn.trinea.android.view.autoscrollviewpager:android-auto-scroll-view-pager:1.1.2') {
  56. exclude module: 'support-v4'
  57. }
  58. testCompile 'junit:junit:4.12'
  59. annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
  60.  
  61. compile 'com.android.support:cardview-v7:26.1.0'
  62. compile 'com.android.support:appcompat-v7:26.1.0'
  63. compile 'com.android.support:recyclerview-v7:26.1.0'
  64. compile 'com.android.support:design:26.1.0'
  65. compile 'com.android.support:support-v4:26.1.0'
  66. compile 'com.android.support:support-vector-drawable:26.1.0'
  67. compile 'com.android.support:multidex:1.0.1'
  68. compile 'com.google.guava:guava:19.0'
  69. compile 'com.dmitrymalkovich.android:material-design-dimens:1.4'
  70. compile 'com.ogaclejapan.smarttablayout:library:1.6.1@aar'
  71. compile 'com.ogaclejapan.smarttablayout:utils-v4:1.6.1@aar'
  72. compile 'com.jakewharton:butterknife:8.4.0'
  73. compile 'me.relex:circleindicator:1.2.2@aar'
  74. compile 'com.squareup.okhttp3:okhttp:3.4.1'
  75. compile 'com.squareup.retrofit2:retrofit:2.1.0'
  76. compile 'com.squareup.retrofit2:converter-gson:2.1.0'
  77. compile 'com.squareup.okhttp3:logging-interceptor:3.4.1'
  78. compile 'com.google.firebase:firebase-core:12.0.1'
  79. compile 'com.google.firebase:firebase-messaging:12.0.1'
  80. compile 'com.mobsandgeeks:android-saripaar:2.0.3'
  81. compile 'com.google.android.gms:play-services:12.0.1'
  82. compile 'org.greenrobot:eventbus:3.1.0'
  83. compile 'com.makeramen:roundedimageview:2.2.1'
  84. compile 'com.squareup.picasso:picasso:2.5.2'
  85. compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
  86. compile 'com.github.siyamed:android-shape-imageview:0.9.3'
  87. compile 'de.hdodenhof:circleimageview:2.0.0'
  88. compile 'com.github.bumptech.glide:glide:3.7.0'
  89. compile 'com.mcxiaoke.volley:library:1.0.19'
  90. compile 'com.balysv:material-ripple:1.0.2'
  91.  
  92. }
  93. dependencies {
  94. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  95. }
  96. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement