build.gradle 886 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()
  5. jcenter()
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:4.0.2'
  9. // NOTE: Do not place your application dependencies here; they belong
  10. // in the individual module build.gradle files
  11. // Add the following line:
  12. classpath 'com.google.gms:google-services:4.3.3' // Google Services plugin
  13. }
  14. }
  15. allprojects {
  16. repositories {
  17. google()
  18. jcenter()
  19. }
  20. }
  21. ext {
  22. compileSdkVersion = 28
  23. buildToolsVersion = '28.0.3'
  24. androidXLibraryVersion = '1.0.0'
  25. PUBLISH_GROUP_ID = 'com.theartofdev.edmodo'
  26. PUBLISH_ARTIFACT_ID = 'android-image-cropper'
  27. PUBLISH_VERSION = '2.8.0'
  28. }
  29. task clean(type: Delete) {
  30. delete rootProject.buildDir
  31. }