Guest User

Untitled

a guest
Dec 13th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. jcenter()
  4. }
  5. dependencies {
  6. classpath 'com.android.tools.build:gradle:2.3.3'
  7.  
  8. // NOTE: Do not place your application dependencies here; they
  9. belong
  10. // in the individual module build.gradle files
  11. classpath 'com.google.gms:google-services:3.0.0'
  12. }
  13. }
  14.  
  15. allprojects {
  16. repositories {
  17. jcenter()
  18. }
  19. }
  20.  
  21. **А это Build.gradle модуль**
  22. apply plugin: 'com.android.application'
  23.  
  24. android {
  25. compileSdkVersion 22
  26. buildToolsVersion '25.0.0'
  27. defaultConfig {
  28. applicationId 'com.panda.shop'
  29. minSdkVersion 14
  30. targetSdkVersion 22
  31. versionCode 1
  32. versionName "1.0"
  33. }
  34. buildTypes {
  35. release {
  36. minifyEnabled false
  37. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  38. }
  39. }
  40. productFlavors {
  41. }
  42. }
  43.  
  44. dependencies {
  45. compile fileTree(include: ['*.jar'], dir: 'libs')
  46. compile files('libs/android-support-v4.jar')
  47. compile files('libs/Parse-1.3.0.jar')
  48. compile files('libs/signpost-commonshttp4-1.2.1.2.jar')
  49. compile files('libs/signpost-core-1.2.1.2.jar')
  50. compile files('libs/signpost-jetty6-1.2.1.2.jar')
  51. compile 'com.google.firebase:firebase-messaging:10.0.1'
  52.  
  53. }
  54.  
  55.  
  56. android {
  57.  
  58. lintOptions {
  59. disable "ResourceType"
  60. }
  61. }
  62. apply plugin: 'com.google.gms.google-services'
Add Comment
Please, Sign In to add comment