Guest User

Untitled

a guest
Jan 17th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'com.google.gms.google-services'
  3.  
  4. compileSdkVersion 25
  5. buildToolsVersion '25.0.2'
  6. defaultConfig {
  7. applicationId "com.cockinos.michael.offencesearchsystemv2"
  8. minSdkVersion 23
  9. targetSdkVersion 25
  10. versionCode 6
  11. versionName '1.5'
  12. signingConfig signingConfigs.Keystore
  13.  
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21.  
  22. productFlavors {
  23. }
  24. repositories {
  25. mavenCentral()
  26. jcenter()
  27. maven {
  28. url "https://urbanairship.bintray.com/android"
  29. }
  30. }
  31.  
  32.  
  33. }
  34.  
  35. dependencies {
  36. compile fileTree(include: ['*.jar'], dir: 'libs')
  37. testCompile 'junit:junit:4.12'
  38. compile 'com.android.support:appcompat-v7:25.1.0'
  39. compile 'com.android.support:design:25.1.0'
  40. compile 'com.google.android.gms:play-services-location:10.0.1'
  41. compile 'com.google.android.gms:play-services:10.0.1'
  42. compile 'com.google.android.gms:play-services-ads:10.0.1'
  43. compile 'com.google.android.gms:play-services-identity:10.0.1'
  44. compile 'com.google.android.gms:play-services-gcm:10.0.1'
  45. compile 'com.urbanairship.android:urbanairship-sdk:7.0.3'
  46. compile 'com.android.support:cardview-v7:25.1.0'
  47. compile 'com.github.dmytrodanylyk.shadow-layout:library:1.0.1'
  48. compile 'com.facebook.android:facebook-android-sdk:[4,5)'
  49. compile 'com.android.support:multidex:1.0.1'
  50. compile 'com.google.android.gms:play-services-maps:10.0.1'
  51. }
  52.  
  53. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  54.  
  55. buildscript {
  56. repositories {
  57. jcenter()
  58. }
  59. dependencies {
  60. classpath 'com.android.tools.build:gradle:2.2.3'
  61.  
  62. // NOTE: Do not place your application dependencies here; they belong
  63. // in the individual module build.gradle files
  64. }
  65. }
  66.  
  67. allprojects {
  68. repositories {
  69. jcenter()
  70. }
  71. }
  72.  
  73. task clean(type: Delete) {
  74. delete rootProject.buildDir
  75. }
Add Comment
Please, Sign In to add comment