build.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()
  5. mavenCentral()
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:8.7.1'
  9. classpath 'com.google.gms:google-services:4.3.15'
  10. // NOTE: Do not place your application dependencies here; they belong
  11. // in the individual module build.gradle files
  12. }
  13. }
  14. apply from: "variables.gradle"
  15. allprojects {
  16. repositories {
  17. google()
  18. mavenCentral()
  19. jcenter()
  20. // Add the following lines to include the Nexilis repository into your app
  21. maven {
  22. url "https://nexilis.io/artifactory/ui-uc-api-libs/"
  23. credentials {
  24. username = "***REPLACE***WITH***YOUR***MAVEN***USERNAME***"
  25. password = "***REPLACE***WITH***YOUR***MAVEN***PASSWORD***"
  26. }
  27. }
  28. // Add the following lines to include the Nexilis Security Shield repository into your app
  29. maven {
  30. url "https://nexilis.io/artifactory/ss-libs/"
  31. credentials {
  32. username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
  33. password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
  34. }
  35. }
  36. maven { url 'https://maven.google.com' }
  37. maven { url 'https://jitpack.io' }
  38. }
  39. }
  40. task clean(type: Delete) {
  41. delete rootProject.buildDir
  42. }