Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. implementation 'com.android.support:appcompat-v7:28.0.0'
  2.  
  3. All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 28.0.0, 26.1.0. Examples include com.android.support:animated-vector-drawable:28.0.0 and com.android.support:support-media-compat:26.1.0 less... (Ctrl+F1)
  4. Inspection info:There are some combinations of libraries, or tools and libraries, that are incompatible, or can lead to bugs. One such incompatibility is compiling with a version of the Android support libraries that is not the latest version (or in particular, a version lower than your targetSdkVersion).
  5.  
  6. apply plugin: 'com.android.application'
  7.  
  8. android {
  9. compileSdkVersion 28
  10.  
  11. defaultConfig {
  12. applicationId "com.theaskdev.sitmangalore"
  13. minSdkVersion 21
  14. targetSdkVersion 28
  15. versionCode 17
  16. multiDexEnabled true
  17. versionName "5.7"
  18. ndk.abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
  19. signingConfig signingConfigs.release
  20. }
  21. buildTypes {
  22. release {
  23. minifyEnabled false
  24. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  25. }
  26. }
  27. dexOptions {
  28. javaMaxHeapSize "4g"
  29. }
  30. productFlavors {
  31. }
  32. }
  33.  
  34. dependencies {
  35. implementation fileTree(include: ['*.jar'], dir: 'libs')
  36. implementation 'com.nineoldandroids:library:2.4.0'
  37. implementation 'com.android.volley:volley:1.1.0'
  38. implementation 'com.android.support:multidex:1.0.3'
  39. implementation 'com.android.support:appcompat-v7:28.0.0'
  40. implementation "com.android.support:support-compat:28.0.0"
  41. implementation "com.android.support:support-core-utils:28.0.0"
  42. implementation 'com.google.firebase:firebase-messaging:17.3.4'
  43. implementation 'com.google.firebase:firebase-crash:16.2.1'
  44. implementation 'com.google.firebase:firebase-core:16.0.7'
  45. }
  46.  
  47.  
  48. apply plugin: 'com.google.gms.google-services'
  49.  
  50. buildscript {
  51. repositories {
  52. jcenter()
  53. google()
  54. }
  55. dependencies {
  56. classpath 'com.android.tools.build:gradle:3.3.1'
  57. classpath 'com.google.gms:google-services:4.2.0'
  58. // NOTE: Do not place your application dependencies here; they belong
  59. // in the individual module build.gradle files
  60. }
  61. }
  62.  
  63. allprojects {
  64. repositories {
  65. jcenter()
  66. google()
  67. }
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement